| 6 |
|
#include "Atom.hpp" |
| 7 |
|
#include "Molecule.hpp" |
| 8 |
|
#include "AbstractClasses.hpp" |
| 9 |
+ |
#include "MakeStamps.hpp" |
| 10 |
|
#ifdef IS_MPI |
| 11 |
|
#include "mpiSimulation.hpp" |
| 12 |
|
|
| 59 |
|
|
| 60 |
|
int n_mol; // n_molecules; |
| 61 |
|
Molecule* molecules; // the array of molecules |
| 62 |
+ |
|
| 63 |
+ |
int nComponents; // the number of componentsin the system |
| 64 |
+ |
int* componentsNmol; // the number of molecules of each component |
| 65 |
+ |
MoleculeStamp** compStamps;// the stamps matching the components |
| 66 |
+ |
LinkedMolStamp* headStamp; // list of stamps used in the simulation |
| 67 |
+ |
|
| 68 |
|
|
| 69 |
+ |
|
| 70 |
|
Integrator *the_integrator; // the integrator of the simulation |
| 71 |
|
|
| 72 |
|
char finalName[300]; // the name of the eor file to be written |