removed obsolate clean up.

This commit is contained in:
suter_a 2023-10-17 16:42:27 +02:00
parent f9d0d7f18f
commit 18f077c6e7

View File

@ -1543,13 +1543,5 @@ Int_t main(Int_t argc, Char_t *argv[])
app.Run(true); // true needed that Run will return after quit so that cleanup works
}
// cleanup
if (histo.size() > 0) {
for (UInt_t i=0; i<histo.size(); i++)
delete histo[i];
histo.clear();
}
return PMUSR_SUCCESS;
}