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 841 by mmeineke, Wed Oct 29 17:55:28 2003 UTC vs.
Revision 892 by chuckv, Mon Dec 22 21:27:04 2003 UTC

# Line 7 | Line 7
7   #include <unistd.h>
8   #endif //is_mpi
9  
10 + #ifdef PROFILE
11 + #include "mdProfile.hpp"
12 + #endif // profile
13 +
14   #include "Integrator.hpp"
15   #include "simError.h"
16  
# Line 174 | Line 178 | template<typename T> void Integrator<T>::integrate(voi
178  
179    // initialize the forces before the first step
180  
177  std::cerr << "Before initial Force calc\n";
178
181    calcForce(1, 1);
182  
183    if (nConstrained){
# Line 183 | Line 185 | template<typename T> void Integrator<T>::integrate(voi
185      constrainA();
186      calcForce(1, 1);
187      constrainB();
186    std::cerr << "premove done\n";
188    }
189 <
189 <
190 <
189 >  
190    if (info->setTemp){
191      thermalize();
192    }
# Line 203 | Line 202 | template<typename T> void Integrator<T>::integrate(voi
202    statOut->writeStat(info->getTime());
203  
204  
206
205   #ifdef IS_MPI
206    strcpy(checkPointMsg, "The integrator is ready to go.");
207    MPIcheckPoint();
# Line 215 | Line 213 | template<typename T> void Integrator<T>::integrate(voi
213        calcStress = 1;
214      }
215  
216 + #ifdef PROFILE
217 +    startProfile( pro1 );
218 + #endif
219 +    
220      integrateStep(calcPot, calcStress);
221  
222 + #ifdef PROFILE
223 +    endProfile( pro1 );
224 +
225 +    startProfile( pro2 );
226 + #endif // profile
227 +
228      info->incrTime(dt);
229  
230      if (info->setTemp){
# Line 244 | Line 252 | template<typename T> void Integrator<T>::integrate(voi
252          currReset += resetTime;
253        }
254      }
255 <
256 <    std::cerr << "done with time = " << info->getTime() << "\n";
255 >    
256 > #ifdef PROFILE
257 >    endProfile( pro2 );
258 > #endif //profile
259  
260   #ifdef IS_MPI
261      strcpy(checkPointMsg, "successfully took a time step.");
# Line 264 | Line 274 | template<typename T> void Integrator<T>::integrateStep
274   template<typename T> void Integrator<T>::integrateStep(int calcPot,
275                                                         int calcStress){
276    // Position full step, and velocity half step
277 +
278 + #ifdef PROFILE
279 +  startProfile(pro3);
280 + #endif //profile
281 +
282    preMove();
283  
284 <  moveA();
284 > #ifdef PROFILE
285 >  endProfile(pro3);
286  
287 +  startProfile(pro4);
288 + #endif // profile
289  
290 +  moveA();
291 +
292 + #ifdef PROFILE
293 +  endProfile(pro4);
294 +  
295 +  startProfile(pro5);
296 + #endif//profile
297  
298  
299   #ifdef IS_MPI
# Line 285 | Line 310 | template<typename T> void Integrator<T>::integrateStep
310    strcpy(checkPointMsg, "Succesful doForces\n");
311    MPIcheckPoint();
312   #endif // is_mpi
313 +
314 + #ifdef PROFILE
315 +  endProfile( pro5 );
316  
317 +  startProfile( pro6 );
318 + #endif //profile
319  
320    // finish the velocity  half step
321  
322    moveB();
293
323  
324 + #ifdef PROFILE
325 +  endProfile(pro6);
326 + #endif // profile
327  
328   #ifdef IS_MPI
329    strcpy(checkPointMsg, "Succesful moveB\n");

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines