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

Comparing trunk/OOPSE-3.0/src/brains/ForceFields.cpp (file contents):
Revision 1490 by gezelter, Fri Sep 24 04:16:43 2004 UTC vs.
Revision 1708 by gezelter, Thu Nov 4 16:20:55 2004 UTC

# Line 11 | Line 11 | using namespace std;
11  
12  
13   #ifdef PROFILE
14 < #include "mdProfile.hpp"
14 > #include "profiling/mdProfile.hpp"
15   #endif
16  
17 < #include "simError.h"
18 < #include "ForceFields.hpp"
19 < #include "Atom.hpp"
20 < #include "fortranWrappers.hpp"
17 > #include "utils/simError.h"
18 > #include "UseTheForce/ForceFields.hpp"
19 > #include "primitives/Atom.hpp"
20 > #include "UseTheForce/doForces_interface.h"
21  
22
22   void ForceFields::calcRcut( void ){
23  
24   #ifdef IS_MPI
# Line 153 | Line 152 | void ForceFields::doForces( int calcPot, int calcStres
152      // center of mass of the group is the same as position of the atom  if cutoff group does not exist
153      rc = pos;
154    }
156  
155  
158
156    isError = 0;
157    entry_plug->lrPot = 0.0;
158  
# Line 168 | Line 165 | void ForceFields::doForces( int calcPot, int calcStres
165    startProfile(pro8);
166   #endif
167  
168 <  fortranForceLoop( pos,
169 <                    rc,
170 <                    A,
171 <                    u_l,
172 <                    frc,
173 <                    trq,
174 <                    entry_plug->tau,
175 <                    &(entry_plug->lrPot),
176 <                    &passedCalcPot,
177 <                    &passedCalcStress,
178 <                    &isError );
168 >  doForceLoop( pos,
169 >               rc,
170 >               A,
171 >               u_l,
172 >               frc,
173 >               trq,
174 >               entry_plug->tau,
175 >               &(entry_plug->lrPot),
176 >               &passedCalcPot,
177 >               &passedCalcStress,
178 >               &isError );
179  
183
180   #ifdef PROFILE
181    endProfile(pro8);
182   #endif
# Line 230 | Line 226 | void ForceFields::initFortran(int ljMixPolicy, int use
226   }
227  
228  
229 < void ForceFields::initFortran(int ljMixPolicy, int useReactionField ){
229 > void ForceFields::initFortran(int useReactionField ){
230    
231    int isError;
232    
233    isError = 0;
234 <  initFortranFF( &ljMixPolicy, &useReactionField, &isError );
234 >  initFortranFF(&useReactionField, &isError );
235    
236    if(isError){
237      sprintf( painCave.errMsg,

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines