--- trunk/OOPSE/libmdtools/SimInfo.hpp 2003/07/16 21:30:56 626 +++ trunk/OOPSE/libmdtools/SimInfo.hpp 2003/07/17 21:50:01 637 @@ -84,6 +84,7 @@ class SimInfo{ (public) double sampleTime, statusTime; // the position and energy dump frequencies double target_temp; // the target temperature of the system double thermalTime; // the temp kick interval + double currentTime; // Used primarily for correlation Functions int n_mol; // n_molecules; Molecule* molecules; // the array of molecules @@ -136,6 +137,8 @@ class SimInfo{ (public) double getEcr( void ) { return ecr; } double getEst( void ) { return est; } + void setTime( double theTime ) { currentTime = theTime }; + double getTime( void ) { return currentTime }; void wrapVector( double thePos[3] );