removed obsolate clean up.

This commit is contained in:
suter_a 2023-10-17 16:42:27 +02:00
parent 88b3ab8a01
commit 69305f8b1d

View File

@ -1506,16 +1506,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 (fourierCanvas)
delete fourierCanvas;
if (histo.size() > 0) {
for (UInt_t i=0; i<histo.size(); i++)
delete histo[i];
histo.clear();
}
return PMUSR_SUCCESS;
}