| 10 |
|
#include "BondStamp.hpp" |
| 11 |
|
#include "BendStamp.hpp" |
| 12 |
|
#include "TorsionStamp.hpp" |
| 13 |
+ |
#include "RigidBodyStamp.hpp" |
| 14 |
|
|
| 15 |
|
class LinkedMolStamp{ |
| 16 |
|
|
| 49 |
|
int atomAssign( event* the_event ); |
| 50 |
|
int atomEnd( event* the_event ); |
| 51 |
|
|
| 52 |
+ |
int newRigidBody( event* the_event ); |
| 53 |
+ |
int rigidBodyPosition( event* the_event ); |
| 54 |
+ |
int rigidBodyOrientation( event* the_event ); |
| 55 |
+ |
int rigidBodyAssign( event* the_event ); |
| 56 |
+ |
int rigidBodyEnd( event* the_event ); |
| 57 |
+ |
|
| 58 |
|
int newBond( event* the_event ); |
| 59 |
|
int bondAssign( event* the_event ); |
| 60 |
|
int bondMember( event* the_event ); |
| 88 |
|
BondStamp* current_bond; |
| 89 |
|
BendStamp* current_bend; |
| 90 |
|
TorsionStamp* current_torsion; |
| 91 |
+ |
RigidBodyStamp* current_rigidbody; |
| 92 |
|
|
| 85 |
– |
|
| 86 |
– |
|
| 87 |
– |
|
| 88 |
– |
|
| 93 |
|
}; |
| 94 |
|
|
| 95 |
|
|