| 16 |
|
int nOriented; // .. . . . .. . oriented atoms . . . |
| 17 |
|
int nExcludes; // . . .. . . . .exclude pairs.. . . . |
| 18 |
|
|
| 19 |
– |
double* COM; // the location of the center of mass of the molecule |
| 20 |
– |
|
| 19 |
|
Atom** myAtoms; // the array of atoms |
| 20 |
|
Exclude** myExcludes;// the array of Excluded pairs |
| 21 |
|
Bond** myBonds; // arrays of all the short range interactions |
| 58 |
|
|
| 59 |
|
void printMe( void ); |
| 60 |
|
|
| 61 |
< |
double* getCOM(); |
| 62 |
< |
void moveCOM(double* delta); |
| 61 |
> |
void getCOM( double COM[3] ); |
| 62 |
> |
void moveCOM( double delta[3] ); |
| 63 |
> |
double getCOMvel( double COMvel[3] ); |
| 64 |
|
|
| 65 |
+ |
void atomicRollCall(int* molMembership); |
| 66 |
+ |
|
| 67 |
|
private: |
| 68 |
|
|
| 69 |
|
int stampID; // the ID in the BASS component stamp array |
| 75 |
|
int nMembers; // .. . . . . . .atoms (legacy code) . . . |
| 76 |
|
int nExcludes; // . . . . .. .. excludes .. . . |
| 77 |
|
|
| 78 |
< |
int myIndex; // mostly just for debug |
| 78 |
> |
int myIndex; // mostly just for debug (and for making pressure calcs work) |
| 79 |
|
|
| 80 |
|
Atom** myAtoms; // the array of atoms |
| 81 |
|
Bond** myBonds; // arrays of all the short range interactions |
| 83 |
|
Torsion** myTorsions; |
| 84 |
|
Exclude** myExcludes; // array of the excluded pairs of long range forces |
| 85 |
|
|
| 85 |
– |
double* COM; |
| 86 |
|
}; |
| 87 |
|
|
| 88 |
|
#endif |