6 |
|
#include "SRI.hpp" |
7 |
|
#include "AbstractClasses.hpp" |
8 |
|
#include "SimInfo.hpp" |
9 |
< |
#include "ForceField.hpp" |
9 |
> |
#include "ForceFields.hpp" |
10 |
|
|
11 |
|
class Verlet : public Integrator { |
12 |
|
|
13 |
|
public: |
14 |
< |
Verlet( SimInfo &info, ForceField* the_ff ); |
14 |
> |
Verlet( SimInfo &info, ForceFields* the_ff ); |
15 |
|
~Verlet(); |
16 |
|
void integrate( void ); |
17 |
|
|
20 |
|
void move_a( double dt ); |
21 |
|
void move_b( double dt ); |
22 |
|
|
23 |
< |
ForceField* myFF; |
23 |
> |
ForceFields* myFF; |
24 |
|
|
25 |
|
SimInfo *entry_plug; // all the info we'll ever need |
26 |
|
int c_natoms; /* the number of atoms */ |