--- trunk/OOPSE/libmdtools/NPTi.cpp 2003/07/15 17:10:50 611 +++ trunk/OOPSE/libmdtools/NPTi.cpp 2003/07/15 17:57:04 614 @@ -132,7 +132,7 @@ void NPTi::moveA() { scaleFactor = exp(dt*eta); - if (scaleFactor > 1.1 || scaleFactor < 0.9) { + if ((scaleFactor > 1.1) || (scaleFactor < 0.9)) { sprintf( painCave.errMsg, "NPTi error: Attempting a Box scaling of more than 10 percent" " check your tauBarostat, as it is probably too small!\n" @@ -143,6 +143,7 @@ void NPTi::moveA() { } else { info->scaleBox(exp(dt*eta)); } + } void NPTi::moveB( void ){