Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: EDM4HEPSchema and Newstyle FCCSchema #1245

Open
wants to merge 27 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
eeeeef5
EDM4HEPSchema and Newstyle FCCSchema
prayagyadav Jan 15, 2025
6567e16
Merge branch 'master' into edm4hep-schema
lgray Jan 15, 2025
a5ff99d
Fixed Scope Issues
prayagyadav Jan 17, 2025
e3faeec
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Jan 17, 2025
e33eb62
Merge branch 'master' into edm4hep-schema
lgray Jan 21, 2025
8dcb8c7
Merge branch 'master' into edm4hep-schema
lgray Jan 21, 2025
ef39d7e
Merge branch 'master' into edm4hep-schema
lgray Jan 22, 2025
2ce7638
Merge branch 'master' into edm4hep-schema
lgray Jan 24, 2025
f05abe9
Typenames could be added to branch forms in delayed=False mode
prayagyadav Jan 29, 2025
dccb13f
eager and delayed typenames work given a change in uproot5
prayagyadav Jan 30, 2025
67ea14c
All the schemas work with the typename change; fullsim samples are re…
prayagyadav Feb 3, 2025
a947232
Merge branch 'scikit-hep:master' into test-typenames
prayagyadav Feb 3, 2025
6ba2947
w
prayagyadav Feb 4, 2025
6873c6c
Everything works
prayagyadav Feb 4, 2025
42278c3
cleaned
prayagyadav Feb 4, 2025
5789d1f
Merge branch 'scikit-hep:master' into test-typenames
prayagyadav Feb 18, 2025
240e9d1
support for extend ak_add_doc
prayagyadav Feb 18, 2025
a3219fa
Merge branch 'scikit-hep:master' into edm4hep-schema
prayagyadav Feb 19, 2025
c940b28
bring back the uproot dependency
prayagyadav Feb 19, 2025
4084fad
Adding the prospective functionality to recognize any edm4hep style r…
prayagyadav Feb 19, 2025
e138305
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Feb 19, 2025
720e9b7
fixed spelling mistake
prayagyadav Feb 19, 2025
6817b98
Merge branch 'edm4hep-schema' of https://github.com/prayagyadav/coffe…
prayagyadav Feb 19, 2025
b26afd1
Merge branch 'master' into edm4hep-schema
lgray Feb 21, 2025
59effd7
cleaned schemas/edm4hep.py
prayagyadav Feb 25, 2025
0814516
cleaned all the other files
prayagyadav Feb 26, 2025
244bfb2
Many Tests added
prayagyadav Feb 26, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/coffea/nanoevents/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
FCC,
BaseSchema,
DelphesSchema,
EDM4HEPSchema,
FCCSchema,
FCCSchema_edm4hep1,
NanoAODSchema,
PDUNESchema,
PFNanoAODSchema,
Expand All @@ -28,4 +30,6 @@
"ScoutingNanoAODSchema",
"FCC",
"FCCSchema",
"FCCSchema_edm4hep1",
"EDM4HEPSchema",
]
9 changes: 9 additions & 0 deletions src/coffea/nanoevents/assets/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import os

import yaml

# path = os.path.abspath('src/coffea/nanoevents/assets/edm4hep.yaml')
root_dir = os.path.dirname(os.path.abspath(__file__))
path = "/".join([root_dir, "edm4hep.yaml"])
with open(path) as f:
edm4hep = yaml.safe_load(f)
877 changes: 877 additions & 0 deletions src/coffea/nanoevents/assets/edm4hep.yaml

Large diffs are not rendered by default.

Loading
Loading