--- trunk/OOPSE/libmdtools/Integrator.cpp 2003/06/19 19:21:23 558 +++ trunk/OOPSE/libmdtools/Integrator.cpp 2003/06/19 22:02:44 559 @@ -49,7 +49,6 @@ k delete[] moving; delete[] moved; delete[] prePos; -k } } @@ -215,6 +214,15 @@ void Integrator::integrate( void ){ currStatus = statusTime; currTime = 0.0;; + + readyCheck(); + +#ifdef IS_MPI + strcpy( checkPointMsg, + "The integrator is ready to go." ); + MPIcheckPoint(); +#endif // is_mpi + while( currTime < runTime ){ if( (currTime+dt) >= currStatus ){ @@ -244,6 +252,13 @@ void Integrator::integrate( void ){ calcStress = 0; currStatus += statusTime; } + +#ifdef IS_MPI + strcpy( checkPointMsg, + "successfully took a time step." ); + MPIcheckPoint(); +#endif // is_mpi + } dump_out->writeFinal();