fixed unsigned int problem

This commit is contained in:
nemu
2009-04-08 14:06:15 +00:00
parent a6efc88bf1
commit 8a5501ed71
3 changed files with 11 additions and 6 deletions

View File

@ -811,10 +811,12 @@ bool PRunDataHandler::ReadPsiBinFile()
if (!success)
return success;
/*
cout << endl << "> " << psiBin.get_numberHisto_int() << ": ";
for (int i=0; i<psiBin.get_numberHisto_int(); i++)
cout << endl << "> " << psiBin.get_nameHisto(i);
cout << endl;
*/
// fill necessary header informations
PIntVector ivec;
@ -867,6 +869,8 @@ cout << endl;
runData.fDataBin[i].clear();
runData.fDataBin.clear();
// cout << endl << "end of ReadPsiBinFile() ..." << endl;
return success;
}