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

Comparing trunk/OOPSE/libmdtools/Integrator.cpp (file contents):
Revision 601 by gezelter, Mon Jul 14 23:06:09 2003 UTC vs.
Revision 614 by mmeineke, Tue Jul 15 17:57:04 2003 UTC

# Line 73 | Line 73 | void Integrator::checkConstraints( void ){
73        
74        constrained = theArray[j]->is_constrained();
75  
76      std::cerr << "Is the folowing bond constrained \n";
77      theArray[j]->printMe();
78      
76        if(constrained){
80        
81        std::cerr << "Yes\n";
77  
78          dummy_plug = theArray[j]->get_constraint();
79          temp_con[nConstrained].set_a( dummy_plug->get_a() );
# Line 88 | Line 83 | void Integrator::checkConstraints( void ){
83          nConstrained++;
84          constrained = 0;
85        }
91      else std::cerr << "No.\n";
86      }
87  
88      theArray = (SRI**) molecules[i].getMyBends();
# Line 270 | Line 264 | void Integrator::integrateStep( int calcPot, int calcS
264    moveA();
265    if( nConstrained ) constrainA();
266  
267 +  
268 + #ifdef IS_MPI
269 +  strcpy( checkPointMsg, "Succesful moveA\n" );
270 +  MPIcheckPoint();
271 + #endif // is_mpi
272 +  
273 +
274    // calc forces
275  
276    myFF->doForces(calcPot,calcStress);
277  
278 + #ifdef IS_MPI
279 +  strcpy( checkPointMsg, "Succesful doForces\n" );
280 +  MPIcheckPoint();
281 + #endif // is_mpi
282 +  
283 +
284    // finish the velocity  half step
285    
286    moveB();
287    if( nConstrained ) constrainB();
288 <  
288 >  
289 > #ifdef IS_MPI
290 >  strcpy( checkPointMsg, "Succesful moveB\n" );
291 >  MPIcheckPoint();
292 > #endif // is_mpi
293 >  
294 >
295   }
296  
297  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines