ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/mdtools/headers/ForceFields.hpp
(Generate patch)

Comparing trunk/mdtools/headers/ForceFields.hpp (file contents):
Revision 176 by mmeineke, Thu Nov 14 22:00:44 2002 UTC vs.
Revision 233 by mmeineke, Fri Jan 10 21:55:45 2003 UTC

# Line 70 | Line 70 | class ForceFields{ (protected)
70    
71    FILE *frcFile;
72    SimInfo* entry_plug;
73 +  
74 +  int lineNum;
75 +  char readLine[500];
76 +  char* eof_test;
77  
78   };
79  
# Line 110 | Line 114 | class TraPPE_ExFF : public ForceFields{ (public)
114    void initializeTorsions( torsion_set* the_torsions );
115   };
116  
117 + class LJ_FF : public ForceFields{
118 +
119 + public:
120 +  LJ_FF();
121 +  virtual ~LJ_FF();
122 +  
123 +  void initializeAtoms( void );
124 +  void initializeBonds( bond_pair* the_bonds );
125 +  void initializeBends( bend_set* the_bends );
126 +  void initializeTorsions( torsion_set* the_torsions );
127 +  void setLJfortran( void (*fortranSub)( double* positionArray,
128 +                                         double* forceArray,
129 +                                         double* potentialEnergy,
130 +                                         short int* doPotentialCalc ) ){
131 +    doLJfortran = fortranSub;
132 +  }
133 +
134 +
135 + private:
136 +
137 +  void fastForward( char* stopText, char* searchOwner );
138 +  
139 +  // set our sister fortran module's function to be our own.
140 +  void wrapMe( void );
141 +  void (*doLJfortran)( double* positionArray,
142 +                       double* forceArray,
143 +                       double* potentialEnergy,
144 +                       short int* doPotentialCalc );
145 +
146 + };
147 +
148   #endif

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines