ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE/libmdtools/SimInfo.hpp
(Generate patch)

Comparing trunk/OOPSE/libmdtools/SimInfo.hpp (file contents):
Revision 626 by mmeineke, Wed Jul 16 21:30:56 2003 UTC vs.
Revision 644 by mmeineke, Tue Jul 22 16:41:08 2003 UTC

# Line 84 | Line 84 | class SimInfo{ (public)
84    double sampleTime, statusTime; // the position and energy dump frequencies
85    double target_temp;            // the target temperature of the system
86    double thermalTime;            // the temp kick interval
87 +  double currentTime;            // Used primarily for correlation Functions
88  
89    int n_mol;           // n_molecules;
90    Molecule* molecules; // the array of molecules
# Line 136 | Line 137 | class SimInfo{ (public)
137    double getEcr( void )   { return ecr; }
138    double getEst( void )   { return est; }
139  
140 +  void setTime( double theTime ) { currentTime = theTime; }
141 +  void incrTime( double dt ) { currentTime += dt; }
142 +  void decrTime( double dt ) { currentTime -= dt; }
143 +  double getTime( void ) { return currentTime; }
144  
145    void wrapVector( double thePos[3] );
146  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines