--- trunk/OOPSE/libmdtools/SimInfo.hpp 2003/08/07 21:47:18 670 +++ trunk/OOPSE/libmdtools/SimInfo.hpp 2003/08/20 22:23:34 708 @@ -36,6 +36,7 @@ class SimInfo{ (public) unsigned int n_oriented; // number of of atoms with orientation unsigned int ndf; // number of actual degrees of freedom unsigned int ndfRaw; // number of settable degrees of freedom + unsigned int nZconstraints; // the number of zConstraints unsigned int setTemp; // boolean to set the temperature at each sampleTime @@ -107,7 +108,7 @@ class SimInfo{ (public) char sampleName[300]; // the name of the dump file to be written char statusName[300]; // the name of the stat file to be written - + int seed; //seed for random number generator // refreshes the sim if things get changed (load balanceing, volume // adjustment, etc.) @@ -162,6 +163,9 @@ class SimInfo{ (public) GenericData* getProperty(const string& propName); vector getProperties(); + int getSeed(void) { return seed; } + void setSeed(int theSeed) { seed = theSeed;} + private: SimState* myConfiguration;