--- trunk/OOPSE/libmdtools/StatWriter.cpp 2003/04/07 16:56:38 468 +++ trunk/OOPSE/libmdtools/StatWriter.cpp 2003/04/08 14:34:30 477 @@ -61,14 +61,13 @@ void StatWriter::writeStat( double currentTime ){ void StatWriter::writeStat( double currentTime ){ - const double p_convert = 1.63882576e8; double totE, potE, kinE, temp, press; totE = tStats->getTotalE(); potE = tStats->getPotential(); kinE = tStats->getKinetic(); temp = tStats->getTemperature(); - press = tStats->getPressure()*p_convert; + press = tStats->getPressure(); #ifdef IS_MPI if(worldRank == 0 ){