ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-1.0/utils/sysbuilder/Lattice.hpp
(Generate patch)

Comparing trunk/OOPSE-1.0/utils/sysbuilder/Lattice.hpp (file contents):
Revision 1423 by tim, Wed Jul 28 04:58:20 2004 UTC vs.
Revision 1427 by tim, Wed Jul 28 18:42:59 2004 UTC

# Line 12 | Line 12 | class CubicLattice : public BaseLattice{
12    protected:
13      CubicLattice();
14    public:
15 +    //get lattice constant of unit cell
16 +    vector<double> getLatticeConstant();
17  
18 +    //set lattice constant of unit cell
19 +    void setLatticeConstant(const vector<double>& lc);
20 +  protected:
21 +    double latticeParam;
22   };
23  
24  
25   class FCCLattice : public CubicLattice{
26    public:
27      FCCLattice();
28 <    virtual const string getLatticeType() {return FCCLatticeType;}
29 <
28 >    virtual const string getLatticeType() {return FCCLatticeType;}    
29 >    virtual void update();
30 >    
31   };
32  
33 <
33 > /*
34   class BCCLattice : public CubicLattice{
35    public:
36      BCCLattice();
# Line 42 | Line 49 | class OrthorhombicLattice : public BaseLattice{
49      OrthorhombicLattice();
50      virtual const string getLatticeType() {return OrthorhombicLatticeType;}
51   };
52 + */
53  
54  
47
55   #endif

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines