Skip to content

Commit 7d21992

Browse files
committed
Reduce buffer size for SummaryTableOutputBranches.
1 parent 7035c70 commit 7d21992

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PhysicsTools/NanoAOD/plugins/SummaryTableOutputBranches.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ void SummaryTableOutputBranches::makeScalarBranches(const std::vector<Col> &tabc
1010
return x.name == col.name;
1111
}) == branches.end()) {
1212
T backFillValue = 0;
13-
auto *br = tree.Branch(col.name.c_str(), &backFillValue, (col.name + "/" + rootType).c_str());
13+
auto *br = tree.Branch(col.name.c_str(), &backFillValue, (col.name + "/" + rootType).c_str(), /*bufsize=*/1024);
1414
br->SetTitle(col.doc.c_str());
1515
for (unsigned long i = 0; i < m_fills; i++)
1616
br->Fill();

0 commit comments

Comments
 (0)