Skip to content

Commit

Permalink
Merge pull request #273 from IzaakWN/TauPOG
Browse files Browse the repository at this point in the history
Fix firstEntry bug
  • Loading branch information
gouskos authored Mar 16, 2021
2 parents f00eb4e + 1a82e90 commit 4396652
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/postprocessing/framework/output.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def write(self):
if self.outputbranchSelection:
self.outputbranchSelection.selectBranches(self._tree)
self._tree = self.tree().CopyTree('1', "",
self.maxEntries if self.maxEntries else ROOT.TVirtualTreePlayer.kMaxEntries, self.firstEntry)
self.maxEntries if self.maxEntries else ROOT.TVirtualTreePlayer.kMaxEntries, 0)

OutputTree.write(self)
for t in self._otherTrees.values():
Expand Down

0 comments on commit 4396652

Please sign in to comment.