| 34 |
|
void initialize( molInit &theInit ); |
| 35 |
|
|
| 36 |
|
void setMyIndex( int theIndex ){ myIndex = theIndex;} |
| 37 |
– |
void setGlobalIndex( int theIndex ) { globalIndex = theIndex; } |
| 38 |
– |
|
| 37 |
|
int getMyIndex( void ) { return myIndex; } |
| 38 |
+ |
|
| 39 |
|
int getGlobalIndex( void ) { return globalIndex; } |
| 40 |
< |
|
| 40 |
> |
void setGlobalIndex( int theIndex ) { globalIndex = theIndex; } |
| 41 |
> |
|
| 42 |
|
int getNAtoms ( void ) {return nAtoms;} |
| 43 |
|
int getNBonds ( void ) {return nBonds;} |
| 44 |
|
int getNBends ( void ) {return nBends;} |
| 53 |
|
Bend** getMyBends ( void ) {return myBends;} |
| 54 |
|
Torsion** getMyTorsions( void ) {return myTorsions;} |
| 55 |
|
vector<RigidBody*> getMyRigidBodies( void ) {return myRigidBodies;} |
| 56 |
+ |
vector<StuntDouble*>& getIntegrableObjects(void) {return myIntegrableObjects;} |
| 57 |
|
|
| 58 |
|
void setStampID( int info ) {stampID = info;} |
| 59 |
|
|