ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-4/src/io/DumpReader.cpp
(Generate patch)

Comparing trunk/OOPSE-4/src/io/DumpReader.cpp (file contents):
Revision 3102 by gezelter, Fri Dec 29 21:43:18 2006 UTC vs.
Revision 3110 by chuckv, Wed Jan 3 20:47:00 2007 UTC

# Line 246 | Line 246 | namespace oopse {
246        Vector3d com;
247        Vector3d comvel;
248        Vector3d comw;
249 <      info_->getComAll(com, comvel);
250 <      comw = info_->getAngularMomentum();
249 >      if (needPos_ && needVel_){
250 >        info_->getComAll(com, comvel);
251 >        comw = info_->getAngularMomentum();
252 >      }else{
253 >        com = info_->getCom();
254 >        comvel = 0.0;
255 >        comw   = 0.0;
256 >      }
257        s->setCOMprops(com, comvel, comw);      
258      }
259  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines