Skip to content

Commit

Permalink
DebugStreamer: remove suffix from tree name
Browse files Browse the repository at this point in the history
- The suffix is just a number like "_0" - where the number corresponds
to n-th call to fill the tree
  • Loading branch information
matthias-kleiner authored and davidrohr committed Mar 10, 2024
1 parent 19dd1a4 commit ff671de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Common/Utils/src/DebugStreamer.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ void o2::utils::DebugStreamer::mergeTrees(const char* inpFile, const char* outFi
TFile fOut(outFile, "RECREATE");
for (auto& list : lists) {
auto tree = TTree::MergeTrees(&list.second, option);
fOut.WriteObject(tree, tree->GetName());
fOut.WriteObject(tree, list.first.data());
}
}

Expand Down

0 comments on commit ff671de

Please sign in to comment.