You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
>>> events = uproot.dask("root://cmsdcadisk.fnal.gov//dcache/uscmsdisk/store/data/Run2023C/EGamma0/NANOAOD/PromptNanoAODv11p9_v1-v1/*/*.root:Events", open_files=False)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/srv/.env/lib/python3.10/site-packages/uproot/_dask.py", line 164, in dask
files = uproot._util.regularize_files(files, steps_allowed=True, **options)
File "/srv/.env/lib/python3.10/site-packages/uproot/_util.py", line 944, in regularize_files
raise _file_not_found(files)
FileNotFoundError: file not found
'root://cmsdcadisk.fnal.gov//dcache/uscmsdisk/store/data/Run2023C/EGamma0/NANOAOD/PromptNanoAODv11p9_v1-v1/*/*.root:Events'
Files may be specified as:
* str/bytes: relative or absolute filesystem path or URL, without any colons
other than Windows drive letter or URL schema.
Examples: "rel/file.root", "C:\abs\file.root", "http://where/what.root"
* str/bytes: same with an object-within-ROOT path, separated by a colon.
Example: "rel/file.root:tdirectory/ttree"
* pathlib.Path: always interpreted as a filesystem path or URL only (no
object-within-ROOT path), regardless of whether there are any colons.
Examples: Path("rel:/file.root"), Path("/abs/path:stuff.root")
Functions that accept many files (uproot.iterate, etc.) also allow:
* glob syntax in str/bytes and pathlib.Path.
Examples: Path("rel/*.root"), "/abs/*.root:tdirectory/ttree"
* dict: keys are filesystem paths, values are objects-within-ROOT paths.
Example: {"/data_v1/*.root": "ttree_v1", "/data_v2/*.root": "ttree_v2"}
* already-open TTree objects.
* iterables of the above.
The text was updated successfully, but these errors were encountered:
uproot version: 5.2.0rc5
dict-style file + object path globbing works fine:
however, in-string style does not:
The text was updated successfully, but these errors were encountered: