| 3 |
|
|
| 4 |
|
#include "Atom.hpp" |
| 5 |
|
#include "SRI.hpp" |
| 6 |
+ |
#include "MoleculeStamp.hpp" |
| 7 |
+ |
#include "Exclude.hpp" |
| 8 |
|
|
| 9 |
+ |
typedef struct{ |
| 10 |
+ |
|
| 11 |
+ |
int stampID; // the ID in the BASS component stamp array |
| 12 |
+ |
int nAtoms; // the number of atoms in the molecule |
| 13 |
+ |
int nBonds; // ... .. .. . .bonds .. .. . . . . |
| 14 |
+ |
int nBends; // . . . . .. . .bends . . . . .. . |
| 15 |
+ |
int nTorsions; // .. . . .. . . torsions . . .. . . |
| 16 |
+ |
int nOriented; // .. . . . .. . oriented atoms . . . |
| 17 |
+ |
|
| 18 |
+ |
Atom** myAtoms; // the array of atoms |
| 19 |
+ |
Exclude** myExcludes;// the array of Excluded pairs |
| 20 |
+ |
Bond** myBonds; // arrays of all the short range interactions |
| 21 |
+ |
Bend** myBends; |
| 22 |
+ |
Torsion** myTorsions; |
| 23 |
+ |
|
| 24 |
+ |
|
| 25 |
+ |
} molInit; |
| 26 |
+ |
|
| 27 |
|
class Molecule{ |
| 28 |
|
|
| 29 |
|
public: |
| 30 |
|
|
| 31 |
< |
Molecule() {} |
| 32 |
< |
~Molecule() {} |
| 31 |
> |
Molecule( void ); |
| 32 |
> |
~Molecule( void ); |
| 33 |
|
|
| 34 |
< |
int getNMembers( void ) { return nMembers; } |
| 35 |
< |
int getStartAtom( void ) { return startAtom; } |
| 36 |
< |
int getEndAtom( void ) { return endAtom; } |
| 37 |
< |
int getStampID( void ) { return stampID; } |
| 34 |
> |
void initialize( molInit &theInit ); |
| 35 |
> |
|
| 36 |
> |
int getNAtoms ( void ) {return nAtoms;} |
| 37 |
> |
int getNBonds ( void ) {return nBonds;} |
| 38 |
> |
int getNBends ( void ) {return nBends;} |
| 39 |
> |
int getNTorsions( void ) {return nTorsions;} |
| 40 |
> |
int getNOriented( void ) {return nOriented;} |
| 41 |
> |
int getNExcludes( void ) {return nExcludes;} |
| 42 |
> |
int getNMembers ( void ) {return nMembers;} |
| 43 |
> |
int getStampID ( void ) {return stampID;} |
| 44 |
> |
|
| 45 |
> |
Atom** getMyAtoms ( void ) {return myAtoms;} |
| 46 |
> |
Bond** getMyBonds ( void ) {return myBonds;} |
| 47 |
> |
Bend** getMyBends ( void ) {return myBends;} |
| 48 |
> |
Torsion** getMyTorsions( void ) {return myTorsions;} |
| 49 |
> |
Exclude** getMyExcludes( void ) {return myExcludes;} |
| 50 |
|
|
| 51 |
< |
void setNMembers( int info ) { nMembers = info; } |
| 52 |
< |
void setStartAtom( int info ) { startAtom = info; } |
| 53 |
< |
void setEndAtom( int info ) { endAtom = info; } |
| 54 |
< |
void setStampID( int info ) { stampID = info; } |
| 51 |
> |
void setStampID( int info ) {stampID = info;} |
| 52 |
> |
|
| 53 |
> |
void calcForces( void ); |
| 54 |
> |
double getPotential( void ); |
| 55 |
|
|
| 56 |
|
|
| 57 |
|
private: |
| 58 |
|
|
| 59 |
< |
int nMembers; |
| 60 |
< |
int startAtom; |
| 61 |
< |
int endAtom; |
| 59 |
> |
int stampID; // the ID in the BASS component stamp array |
| 60 |
> |
int nAtoms; // the number of atoms in the molecule |
| 61 |
> |
int nBonds; // ... .. .. . .bonds .. .. . . . . |
| 62 |
> |
int nBends; // . . . . .. . .bends . . . . .. . |
| 63 |
> |
int nTorsions; // .. . . .. . . torsions . . .. . . |
| 64 |
> |
int nOriented; // .. . . . .. . oriented atoms . . . |
| 65 |
> |
int nMembers; // .. . . . . . .atoms (legacy code) . . . |
| 66 |
> |
int nExcludes; // . . . . .. .. excludes .. . . |
| 67 |
|
|
| 68 |
< |
int stampID; |
| 68 |
> |
Atom** myAtoms; // the array of atoms |
| 69 |
> |
Bond** myBonds; // arrays of all the short range interactions |
| 70 |
> |
Bend** myBends; |
| 71 |
> |
Torsion** myTorsions; |
| 72 |
> |
Exclude** myExcludes; // array of the excluded pairs of long range forces |
| 73 |
> |
|
| 74 |
|
}; |
| 75 |
|
|
| 76 |
|
#endif |