Skip to content
Snippets Groups Projects
Commit 4fb1b723 authored by adrien-matta's avatar adrien-matta
Browse files

* Fixing minor bug

 - The header of the tree was written multiple time in certain case
 - The tree was appering twice, even everything was perfectly
   functionnal
parent f984f720
No related branches found
No related tags found
No related merge requests found
......@@ -134,7 +134,7 @@ RootOutput::~RootOutput()
cout << endl;
cout << "Got histograms and Tree !" << endl;
cout << " - Number of entries in the Tree: " << pRootTree->GetEntries() << endl;
cout << " - Number of bites written to file: " << pRootTree->Write() << endl;
cout << " - Number of bites written to file: " << pRootTree->Write("", TObject::kOverwrite) << endl;
// write TAsciiFile if used
// EventGenerator
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment