--- trunk/mdtools/headers/Integrator.hpp 2003/01/27 19:28:21 248 +++ trunk/mdtools/headers/Integrator.hpp 2003/01/27 21:28:19 249 @@ -6,12 +6,12 @@ #include "SRI.hpp" #include "AbstractClasses.hpp" #include "SimInfo.hpp" -#include "ForceField.hpp" +#include "ForceFields.hpp" class Verlet : public Integrator { public: - Verlet( SimInfo &info, ForceField* the_ff ); + Verlet( SimInfo &info, ForceFields* the_ff ); ~Verlet(); void integrate( void ); @@ -20,7 +20,7 @@ class Verlet : public Integrator { (private) void move_a( double dt ); void move_b( double dt ); - ForceField* myFF; + ForceFields* myFF; SimInfo *entry_plug; // all the info we'll ever need int c_natoms; /* the number of atoms */