--- trunk/src/lattice/Lattice.hpp 2005/04/12 22:10:07 486 +++ trunk/src/lattice/Lattice.hpp 2006/05/17 21:51:42 963 @@ -1,4 +1,4 @@ - /* +/* * Copyright (c) 2005 The University of Notre Dame. All Rights Reserved. * * The University of Notre Dame grants you ("Licensee") a @@ -47,7 +47,7 @@ namespace oopse { namespace oopse { -class Lattice{ + class Lattice{ protected: Lattice(){ @@ -63,13 +63,13 @@ class Lattice{ void getLatticePointsPos(std::vector& latticePos, int nx, int ny, int nz); - std::vector getLatticePointsOrt() {return cellSitesOrt;} + std::vector getLatticePointsOrt() {return cellSitesOrt;} //get lattice constant of unit cell - virtual std::vector getLatticeConstant() =0; + virtual std::vector getLatticeConstant() =0; //set lattice constant of unit cell - virtual void setLatticeConstant(const std::vector& lc)=0; + virtual void setLatticeConstant(const std::vector& lc)=0; //get origin of unit cell Vector3d getOrigin( ) {return origin;} @@ -84,10 +84,10 @@ class Lattice{ int nCellSites; Vector3d origin; - std::vector cellSitesPos; - std::vector cellSitesOrt; + std::vector cellSitesPos; + std::vector cellSitesOrt; Vector3d cellLen; -}; + }; }