| # | Line 77 | Line 77 | class Integrator : public BaseIntegrator { (protected) | |
|---|---|---|
| 77 | ||
| 78 | }; | |
| 79 | ||
| 80 | + | class NVE : public Integrator{ |
| 81 | ||
| 82 | + | NVE ( void ): |
| 83 | + | Integrator( theInfo, the_ff ){} |
| 84 | + | virtual ~NVE(){} |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | }; |
| 89 | + | |
| 90 | class NVT : public Integrator{ | |
| 91 | ||
| 92 | < | NVT ( void ); |
| 92 | > | NVT ( SimInfo &theInfo, ForceFields* the_ff ) : |
| 93 | > | Integrator( theInfo, the_ff ); |
| 94 | virtual ~NVT(); | |
| 95 | ||
| 96 | protected: | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines |
| > | Changed lines |