| 46 |
|
Integrator::Integrator(SimInfo* info) |
| 47 |
|
: info_(info), forceMan_(NULL) , needPotential(false), needStress(false), |
| 48 |
|
needReset(false), velocitizer_(NULL), needVelocityScaling(false), |
| 49 |
+ |
rnemd_(NULL), useRNEMD(false), |
| 50 |
|
dumpWriter(NULL), statWriter(NULL), thermo(info), |
| 51 |
|
currentSnapshot_(info->getSnapshotManager()->getCurrentSnapshot()) { |
| 52 |
|
|
| 120 |
|
// Create a default a velocitizer: If the subclass wants to use |
| 121 |
|
// a different velocitizer, use setVelocitizer |
| 122 |
|
velocitizer_ = new Velocitizer(info); |
| 123 |
+ |
// Create a default a velocitizer: If the subclass wants to use |
| 124 |
+ |
// a different velocitizer, use setVelocitizer |
| 125 |
+ |
velocitizer_ = new Velocitizer(info); |
| 126 |
|
|
| 127 |
|
} |
| 128 |
|
|