ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/OpenMD/trunk/src/brains/ForceManager.cpp
(Generate patch)

Comparing trunk/src/brains/ForceManager.cpp (file contents):
Revision 1880 by gezelter, Mon Jun 17 18:28:30 2013 UTC vs.
Revision 1895 by gezelter, Mon Jul 1 21:09:37 2013 UTC

# Line 713 | Line 713 | namespace OpenMD {
713      vector<int>::iterator ia, jb;
714  
715      int loopStart, loopEnd;
716 <
716 >    
717      idat.vdwMult = &vdwMult;
718      idat.electroMult = &electroMult;
719      idat.pot = &workPot;
# Line 746 | Line 746 | namespace OpenMD {
746          if (update_nlist) {
747            if (!usePeriodicBoundaryConditions_)
748              Mat3x3d bbox = thermo->getBoundingBox();
749 <          neighborList = fDecomp_->buildNeighborList();
749 >          fDecomp_->buildNeighborList(neighborList_);
750          }
751        }
752  
753 <      for (vector<pair<int, int> >::iterator it = neighborList.begin();
754 <             it != neighborList.end(); ++it) {
753 >      for (vector<pair<int, int> >::iterator it = neighborList_.begin();
754 >             it != neighborList_.end(); ++it) {
755                  
756          cg1 = (*it).first;
757          cg2 = (*it).second;
# Line 760 | Line 760 | namespace OpenMD {
760  
761          d_grp  = fDecomp_->getIntergroupVector(cg1, cg2);
762  
763 <        curSnapshot->wrapVector(d_grp);        
763 >        // already wrapped in the getIntergroupVector call:
764 >        // curSnapshot->wrapVector(d_grp);        
765          rgrpsq = d_grp.lengthSquare();
766          rCutSq = cuts.second;
767  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines