| # | Line 6 | Line 6 | |
|---|---|---|
| 6 | #include "LRI.hpp" | |
| 7 | #include "Integrator.hpp" | |
| 8 | #include "SimInfo.hpp" | |
| 9 | + | #include "randomSPRNG.hpp" |
| 10 | ||
| 11 | class Thermo{ | |
| 12 | ||
| 13 | public: | |
| 14 | ||
| 15 | < | Thermo( SimInfo* the_entry_plug ) { entry_plug = the_entry_plug; } |
| 16 | < | ~Thermo() {} |
| 15 | > | Thermo( SimInfo* the_entry_plug ); |
| 16 | > | ~Thermo(); |
| 17 | ||
| 18 | // note: all the following energies are in kcal/mol | |
| 19 | ||
| # | Line 27 | Line 28 | class Thermo{ (private) | |
| 28 | // NOTE: srand48 should be seeded before calling. | |
| 29 | private: | |
| 30 | SimInfo* entry_plug; | |
| 31 | + | gaussianSPRNG *gaussStream; |
| 32 | ||
| 33 | }; | |
| 34 | #endif | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines |
| > | Changed lines |