--- branches/new_design/OOPSE-2.0/src/applications/simpleBuilder/BaseLattice.cpp 2004/12/15 21:07:48 1890 +++ branches/new_design/OOPSE-2.0/src/applications/simpleBuilder/BaseLattice.cpp 2004/12/15 22:34:41 1891 @@ -1,6 +1,8 @@ #include "applications/simpleBuilder/BaseLattice.hpp" -void BaseLattice::getLatticePointsPos(vector& latticePos, int nx, int ny, int nz){ +namespace oopse{ +void BaseLattice::getLatticePointsPos(std::vector& latticePos, int nx, int ny, int nz){ + latticePos.resize(nCellSites); for( int i=0;i < nCellSites;i++){ @@ -12,3 +14,4 @@ void BaseLattice::getLatticePointsPos(vector } +}