| 9 |
|
#include "Molecule.hpp" |
| 10 |
|
#include "AbstractClasses.hpp" |
| 11 |
|
#include "MakeStamps.hpp" |
| 12 |
+ |
#include "SimState.hpp" |
| 13 |
|
|
| 14 |
|
#define __C |
| 15 |
|
#include "fSimulation.h" |
| 23 |
|
public: |
| 24 |
|
|
| 25 |
|
SimInfo(); |
| 26 |
< |
~SimInfo(){} |
| 26 |
> |
~SimInfo(); |
| 27 |
|
|
| 28 |
|
int n_atoms; // the number of atoms |
| 29 |
|
Atom **atoms; // the array of atom objects |
| 36 |
|
unsigned int n_oriented; // number of of atoms with orientation |
| 37 |
|
unsigned int ndf; // number of actual degrees of freedom |
| 38 |
|
unsigned int ndfRaw; // number of settable degrees of freedom |
| 39 |
+ |
unsigned int nZconstraints; // the number of zConstraints |
| 40 |
|
|
| 41 |
|
unsigned int setTemp; // boolean to set the temperature at each sampleTime |
| 42 |
|
|
| 156 |
|
void printMat3(double A[3][3]); |
| 157 |
|
void printMat9(double A[9]); |
| 158 |
|
double matDet3(double m[3][3]); |
| 159 |
+ |
|
| 160 |
+ |
SimState* getConfiguration( void ) { return myConfiguration; } |
| 161 |
|
|
| 158 |
– |
|
| 162 |
|
void addProperty(GenericData* prop); |
| 163 |
|
GenericData* getProperty(const string& propName); |
| 164 |
|
vector<GenericData*> getProperties(); |
| 165 |
< |
|
| 165 |
> |
|
| 166 |
|
private: |
| 167 |
|
|
| 168 |
+ |
SimState* myConfiguration; |
| 169 |
+ |
|
| 170 |
|
double origRcut, origEcr; |
| 171 |
|
int boxIsInit, haveOrigRcut, haveOrigEcr; |
| 172 |
|
|