Skip to content
Snippets Groups Projects
Commit 1c2db72a authored by Tamas Gal's avatar Tamas Gal :speech_balloon:
Browse files

Propagate branch map corrections

parent b64bc8f5
No related branches found
No related tags found
1 merge request!47Resolve "uproot4 integration"
......@@ -28,6 +28,7 @@ class EventReader:
step_size=2000,
keys=None,
aliases=None,
nested_branches=None,
event_ctor=None,
):
"""EventReader base class
......@@ -65,6 +66,11 @@ class EventReader:
self._event_ctor = event_ctor
self._index_chain = [] if index_chain is None else index_chain
if aliases is not None:
self.aliases = aliases
if nested_branches is not None:
self.nested_branches = nested_branches
if self._keys is None:
self._initialise_keys()
......@@ -141,6 +147,7 @@ class EventReader:
index_chain=self._index_chain + [key],
step_size=self._step_size,
aliases=self.aliases,
nested_branches=self.nested_branches,
keys=self.keys(),
event_ctor=self._event_ctor,
)
......
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