--- trunk/OOPSE/libmdtools/SimInfo.cpp 2004/01/13 23:01:43 941 +++ trunk/OOPSE/libmdtools/SimInfo.cpp 2004/01/19 21:17:39 965 @@ -180,15 +180,17 @@ void SimInfo::calcHmatInv( void ) { if( orthoRhombic ){ sprintf( painCave.errMsg, - "Hmat is switching from Non-Orthorhombic to OrthoRhombic\n" - " If this is a bad thing, change the orthoBoxTolerance( currently %G ).\n", + "Hmat is switching from Non-Orthorhombic to Orthorhombic Box.\n" + "\tIf this is a bad thing, change the orthoBoxTolerance\n" + "\tvariable ( currently set to %G ).\n", orthoTolerance); simError(); } else { sprintf( painCave.errMsg, - "Hmat is switching from Orthorhombic to Non-OrthoRhombic\n" - " If this is a bad thing, change the orthoBoxTolerance( currently %G ).\n", + "Hmat is switching from Orthorhombic to Non-Orthorhombic Box.\n" + "\tIf this is a bad thing, change the orthoBoxTolerance\n" + "\tvariable ( currently set to %G ).\n", orthoTolerance); simError(); } @@ -568,9 +570,9 @@ void SimInfo::checkCutOffs( void ){ sprintf( painCave.errMsg, "Box size is too small for the long range cutoff radius, " "%G, at time %G\n" - " [ %G %G %G ]\n" - " [ %G %G %G ]\n" - " [ %G %G %G ]\n", + "\t[ %G %G %G ]\n" + "\t[ %G %G %G ]\n" + "\t[ %G %G %G ]\n", rCut, currentTime, Hmat[0][0], Hmat[0][1], Hmat[0][2], Hmat[1][0], Hmat[1][1], Hmat[1][2], @@ -584,9 +586,9 @@ void SimInfo::checkCutOffs( void ){ sprintf( painCave.errMsg, "Box size is too small for the electrostatic cutoff radius, " "%G, at time %G\n" - " [ %G %G %G ]\n" - " [ %G %G %G ]\n" - " [ %G %G %G ]\n", + "\t[ %G %G %G ]\n" + "\t[ %G %G %G ]\n" + "\t[ %G %G %G ]\n", ecr, currentTime, Hmat[0][0], Hmat[0][1], Hmat[0][2], Hmat[1][0], Hmat[1][1], Hmat[1][2], @@ -598,7 +600,8 @@ void SimInfo::checkCutOffs( void ){ } else { // initialize this stuff before using it, OK? sprintf( painCave.errMsg, - "Trying to check cutoffs without a box. Be smarter.\n" ); + "Trying to check cutoffs without a box.\n" + "\tOOPSE should have better programmers than that.\n" ); painCave.isFatal = 1; simError(); }