ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/OpenMD/trunk/src/parallel/ForceDecomposition.hpp
(Generate patch)

Comparing trunk/src/parallel/ForceDecomposition.hpp (file contents):
Revision 1895 by gezelter, Mon Jul 1 21:09:37 2013 UTC vs.
Revision 1896 by gezelter, Tue Jul 2 20:02:31 2013 UTC

# Line 120 | Line 120 | namespace OpenMD {
120      void setUserCutoff(RealType rcut) {userCutoff_ = rcut; userChoseCutoff_ = true; }
121  
122      // group bookkeeping
123 <    virtual groupCutoffs getGroupCutoffs(int cg1, int cg2) = 0;
123 >    virtual void getGroupCutoffs(int &cg1, int &cg2, RealType &rcut, RealType &rcutsq, RealType &rlistsq) = 0;
124      virtual Vector3d& getGroupVelocityColumn(int atom2) = 0;
125  
126      // Group->atom bookkeeping
# Line 198 | Line 198 | namespace OpenMD {
198      RealType userCutoff_;
199      CutoffPolicy cutoffPolicy_;
200  
201 <    map<pair<int, int>, tuple3<RealType, RealType, RealType> > gTypeCutoffMap;
201 >    //map<pair<int, int>, tuple3<RealType, RealType, RealType> > gTypeCutoffMap;
202 >    vector<vector<RealType> > GrCut;
203 >    vector<vector<RealType> > GrCutSq;
204 >    vector<vector<RealType> > GrlistSq;
205  
206    };    
207   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines