--- trunk/OOPSE-1.0/libmdtools/DumpReader.cpp 2004/07/16 18:58:03 1334 +++ trunk/OOPSE-1.0/libmdtools/DumpReader.cpp 2004/07/27 16:13:29 1418 @@ -204,8 +204,8 @@ void DumpReader :: readSet( int whichFrame ){ if( nTotObjs != simnfo->getTotIntegrableObjects() ){ sprintf( painCave.errMsg, - "DumpReader error. %s n_atoms, %d, " - "does not match the BASS file's n_atoms, %d.\n", + "DumpReader error. %s nIntegrable, %d, " + "does not match the meta-data file's nIntegrable, %d.\n", inFileName.c_str(), nTotObjs, simnfo->getTotIntegrableObjects()); painCave.isFatal = 1; simError(); @@ -286,13 +286,14 @@ void DumpReader :: readSet( int whichFrame ){ nitems = atoi( read_buffer ); - // Check to see that the number of integrable objects in the intial configuration file is the - // same as declared in simBass. + // Check to see that the number of integrable objects in the + // intial configuration file is the same as derived from the + // meta-data file. if( nTotObjs != nitems){ sprintf( painCave.errMsg, - "DumpReadererror. %s n_atoms, %d, " - "does not match the BASS file's n_atoms, %d.\n", + "DumpReader Error. %s nIntegrable, %d, " + "does not match the meta-data file's nIntegrable, %d.\n", inFileName.c_str(), nTotObjs, simnfo->getTotIntegrableObjects()); haveError= 1; simError(); @@ -465,7 +466,7 @@ char* DumpReader::parseDumpLine(char* readLine, StuntD if( strcmp( foo, sd->getType() ) ){ sprintf( painCave.errMsg, "DumpReader error. Does not" - " match the BASS atom %s.\n", + " match the meta-data atom %s.\n", sd->getType() ); return strdup( painCave.errMsg ); }