| 11 |
|
#include "BendStamp.hpp" |
| 12 |
|
#include "TorsionStamp.hpp" |
| 13 |
|
#include "RigidBodyStamp.hpp" |
| 14 |
+ |
#include "CutoffGroupStamp.hpp" |
| 15 |
|
|
| 16 |
|
class LinkedMolStamp{ |
| 17 |
|
|
| 55 |
|
int rigidBodyMembers( event* the_event ); |
| 56 |
|
int rigidBodyEnd( event* the_event ); |
| 57 |
|
|
| 58 |
+ |
int newCutoffGroup( event* the_event ); |
| 59 |
+ |
int cutoffGroupAssign( event* the_event ); |
| 60 |
+ |
int cutoffGroupMembers( event* the_event ); |
| 61 |
+ |
int cutoffGroupEnd( event* the_event ); |
| 62 |
+ |
|
| 63 |
|
int newBond( event* the_event ); |
| 64 |
|
int bondAssign( event* the_event ); |
| 65 |
|
int bondMembers( event* the_event ); |
| 94 |
|
BendStamp* current_bend; |
| 95 |
|
TorsionStamp* current_torsion; |
| 96 |
|
RigidBodyStamp* current_rigidbody; |
| 97 |
+ |
CutoffGroupStamp* current_cutoffgroup; |
| 98 |
|
|
| 99 |
|
}; |
| 100 |
|
|
| 94 |
– |
|
| 95 |
– |
|
| 96 |
– |
|
| 101 |
|
#endif |