-
Notifications
You must be signed in to change notification settings - Fork 13
Open
Description
In
the following patch for people without access should have worked for @nsmith-'s example
prefix = 'https://xrootd-local.unl.edu:1094//store/user/AGC/samplegame/'
samples = [
NanoEventsFactory.from_root(f"sample{i}.root").events()
for i in range(6)
]but is broken at the moment. The following hack around worked,
import os
_url = "https://xrootd-local.unl.edu:1094//store/user/AGC/samplegame"
[os.system(f"curl -sLO {_url}/sample{file_idx}.root") for file_idx in range(6)]
samples = [
NanoEventsFactory.from_root(f"sample{i}.root").events()
for i in range(6)
]but this is not what should be done generally.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels