| 8 |
|
#include "ReadWrite.hpp" |
| 9 |
|
|
| 10 |
|
// this routine is defined in BASS_interface.cpp |
| 11 |
< |
void set_interface_stamps( MakeStamps* ms, Globals* g ); |
| 11 |
> |
extern void set_interface_stamps( MakeStamps* ms, Globals* g ); |
| 12 |
|
|
| 13 |
|
class SimSetup{ |
| 14 |
|
|
| 29 |
|
|
| 30 |
|
void makeMolecules( void ); |
| 31 |
|
|
| 32 |
– |
void makeAtoms( void ); |
| 33 |
– |
void makeBonds( void ); |
| 34 |
– |
void makeBends( void ); |
| 35 |
– |
void makeTorsions( void ); |
| 36 |
– |
|
| 32 |
|
void initFromBass( void ); |
| 33 |
|
void makeElement( double x, double y, double z ); |
| 34 |
|
|
| 55 |
|
|
| 56 |
|
Atom** the_atoms; |
| 57 |
|
SRI** the_sris; |
| 58 |
< |
int *the_excludes; |
| 58 |
> |
Exclude** the_excludes; |
| 59 |
|
Molecule* the_molecules; |
| 60 |
|
ForceFields* the_ff; |
| 61 |
|
|