--- trunk/src/integrators/NVE.cpp 2005/04/15 22:04:00 507 +++ trunk/src/integrators/NVE.cpp 2008/10/16 18:25:36 1306 @@ -68,7 +68,7 @@ namespace oopse { Vector3d frc; Vector3d Tb; Vector3d ji; - double mass; + RealType mass; for (mol = info_->beginMolecule(i); mol != NULL; mol = info_->nextMolecule(i)) { for (integrableObject = mol->beginIntegrableObject(j); integrableObject != NULL; @@ -122,7 +122,7 @@ namespace oopse { Vector3d frc; Vector3d Tb; Vector3d ji; - double mass; + RealType mass; for (mol = info_->beginMolecule(i); mol != NULL; mol = info_->nextMolecule(i)) { for (integrableObject = mol->beginIntegrableObject(j); integrableObject != NULL; @@ -162,8 +162,8 @@ namespace oopse { } - double NVE::calcConservedQuantity() { - return thermo.getTotalE(); + RealType NVE::calcConservedQuantity() { + return thermo.getTotalE() ; } } //end namespace oopse