ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/branches/new_design/OOPSE-3.0/src/applications/simpleBuilder/BaseLattice.hpp
(Generate patch)

Comparing branches/new_design/OOPSE-3.0/src/applications/simpleBuilder/BaseLattice.hpp (file contents):
Revision 1825 by tim, Thu Dec 2 04:55:10 2004 UTC vs.
Revision 1826 by tim, Thu Dec 2 05:04:20 2004 UTC

# Line 26 | Line 26 | class BaseLattice{
26  
27      void getLatticePointsPos(vector<Vector3d>& latticePos, int nx, int ny, int nz);
28  
29 <    vector<Vector3d> getLatticePointsOrt() {return cellSitesOrt;}
29 >     std::vector<Vector3d> getLatticePointsOrt() {return cellSitesOrt;}
30      
31      //get lattice constant of unit cell
32 <    virtual vector<double> getLatticeConstant() =0;
32 >    virtual  std::vector<double> getLatticeConstant() =0;
33  
34      //set lattice constant of unit cell
35 <    virtual void setLatticeConstant(const vector<double>& lc)=0;
35 >    virtual void setLatticeConstant(const  std::vector<double>& lc)=0;
36  
37      //get origin of unit cell
38      Vector3d getOrigin( ) {return origin;}
# Line 47 | Line 47 | class BaseLattice{
47      
48      int nCellSites;
49      Vector3d origin;    
50 <    vector<Vector3d> cellSitesPos;
51 <    vector<Vector3d> cellSitesOrt;
50 >     std::vector<Vector3d> cellSitesPos;
51 >     std::vector<Vector3d> cellSitesOrt;
52      Vector3d cellLen;
53   };
54  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines