--- branches/development/src/brains/Snapshot.cpp 2012/08/08 16:03:02 1774 +++ branches/development/src/brains/Snapshot.cpp 2013/01/22 16:20:11 1838 @@ -44,7 +44,6 @@ * @file Snapshot.cpp * @author tlin * @date 11/11/2004 - * @time 10:56am * @version 1.0 */ @@ -221,29 +220,32 @@ namespace OpenMD { if( oldOrthoRhombic != frameData.orthoRhombic){ - if( frameData.orthoRhombic ) { - sprintf( painCave.errMsg, - "OpenMD is switching from the default Non-Orthorhombic\n" - "\tto the faster Orthorhombic periodic boundary computations.\n" - "\tThis is usually a good thing, but if you want the\n" - "\tNon-Orthorhombic computations, make the orthoBoxTolerance\n" - "\tvariable ( currently set to %G ) smaller.\n", - orthoTolerance_); - painCave.severity = OPENMD_INFO; - simError(); - } - else { - sprintf( painCave.errMsg, - "OpenMD is switching from the faster Orthorhombic to the more\n" - "\tflexible Non-Orthorhombic periodic boundary computations.\n" - "\tThis is usually because the box has deformed under\n" - "\tNPTf integration. If you want to live on the edge with\n" - "\tthe Orthorhombic computations, make the orthoBoxTolerance\n" - "\tvariable ( currently set to %G ) larger.\n", - orthoTolerance_); - painCave.severity = OPENMD_WARNING; - simError(); - } + // It is finally time to suppress these warnings once and for + // all. They were annoying and not very informative. + + // if( frameData.orthoRhombic ) { + // sprintf( painCave.errMsg, + // "OpenMD is switching from the default Non-Orthorhombic\n" + // "\tto the faster Orthorhombic periodic boundary computations.\n" + // "\tThis is usually a good thing, but if you want the\n" + // "\tNon-Orthorhombic computations, make the orthoBoxTolerance\n" + // "\tvariable ( currently set to %G ) smaller.\n", + // orthoTolerance_); + // painCave.severity = OPENMD_INFO; + // simError(); + // } + // else { + // sprintf( painCave.errMsg, + // "OpenMD is switching from the faster Orthorhombic to the more\n" + // "\tflexible Non-Orthorhombic periodic boundary computations.\n" + // "\tThis is usually because the box has deformed under\n" + // "\tNPTf integration. If you want to live on the edge with\n" + // "\tthe Orthorhombic computations, make the orthoBoxTolerance\n" + // "\tvariable ( currently set to %G ) larger.\n", + // orthoTolerance_); + // painCave.severity = OPENMD_WARNING; + // simError(); + // } } }