40 |
|
int getIdent( void ) { return ident; } |
41 |
|
void setIdent( int info ) { ident = info; } |
42 |
|
|
43 |
+ |
void getRc(double theRc[3]); |
44 |
+ |
void setRc(double theRc[3]); |
45 |
+ |
|
46 |
+ |
double getMassRatio() { return *massRatio;} |
47 |
+ |
void setMassRatio(double theMassRatio) { *massRatio = theMassRatio;} |
48 |
+ |
|
49 |
|
#ifdef IS_MPI |
50 |
|
int getGlobalIndex( void ) { return myGlobalIndex; } |
51 |
|
void setGlobalIndex( int info ) { myGlobalIndex = info; } |
71 |
|
double* Amat; // the rotation matrix |
72 |
|
double* mu; // the array of dipole moments |
73 |
|
double* ul; // the lab frame unit directional vector |
74 |
+ |
double* rc; //the center of mass of the molecule |
75 |
+ |
double* massRatio; //the ratio of this atom to the total mass of the molecule |
76 |
|
|
77 |
|
double c_mass; /* the mass of the atom in amu */ |
78 |
|
|