--- trunk/mdtools/interface_implementation/bassDiag.cpp 2002/10/09 22:29:25 130 +++ trunk/mdtools/interface_implementation/bassDiag.cpp 2002/10/09 22:29:40 131 @@ -2,6 +2,7 @@ #include #include #include + #include "bassDiag.hpp" void bassDiag::dumpStamps(void){ @@ -108,7 +109,7 @@ void bassDiag::dumpStamps(void){ } if (globals->haveTempSet()){ - sprintf(msg,"TempSet = %lf\n",globals->getTempSet()); + sprintf(msg,"TempSet = %d\n",globals->getTempSet()); dumpFormater(msg); } @@ -116,7 +117,7 @@ void bassDiag::dumpStamps(void){ n_components = globals->getNComponents(); sprintf(msg,"\nWriting out %d components\n",n_components); dumpFormater(msg); - components = globals-getComponents(); + components = globals->getComponents(); for(int i=0; i < n_components ; i++){ @@ -126,7 +127,7 @@ void bassDiag::dumpStamps(void){ sprintf(msg," Type = %s\n",components[i]->getType()); dumpFormater(msg); - if (components[i]->haveNmol){ + if (components[i]->haveNMol()){ sprintf(msg," Nmol = %d\n",components[i]->getNMol()); dumpFormater(msg); @@ -161,7 +162,7 @@ void bassDiag::dumpStamps(void){ sprintf(msg," Atom[%d]{\n",i); dumpFormater(msg); - sprintf(msg," type = %s\n",aStamp->getType); + sprintf(msg," type = %s\n",aStamp->getType()); dumpFormater(msg); if(aStamp->havePosition()){ @@ -255,7 +256,7 @@ void bassDiag::dumpStamps(void){ } else{ sprintf(msg, "\n**************** Tester.mdl not included *************\n"); - dumpFormatter( msg ); + dumpFormater( msg ); } }