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

Adding dNdX to edm4hep::Track #137

Merged
merged 24 commits into from
May 26, 2022
Merged
Changes from 16 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
2d70253
add EDM4Hep2LCIO_example
clementhelsens Oct 2, 2020
78348d8
fix typo
clementhelsens Oct 2, 2020
75649bc
remove printouts
clementhelsens Oct 2, 2020
c22ee05
bug fix in covariance matrix and remove printout
clementhelsens Oct 5, 2020
4917da8
Merge branch 'master' of https://github.com/key4hep/EDM4hep
clementhelsens Oct 14, 2020
b39eebd
Merge remote-tracking branch 'origin/master'
clementhelsens Oct 23, 2020
21d34d3
Merge remote-tracking branch 'upstream/master'
clementhelsens Nov 8, 2020
3eb56c8
Merge remote-tracking branch 'upstream/master'
clementhelsens Feb 22, 2022
3dcd77b
add dNdX to edm4hep:track
clementhelsens Feb 22, 2022
039b6eb
Merge branch 'master' into dndx
clementhelsens Mar 7, 2022
93b914c
new implementation of quantity for dQ/dX
clementhelsens Mar 14, 2022
df3ff96
Merge remote-tracking branch 'upstream/master' into dndx
clementhelsens Mar 14, 2022
962e0f1
Merge remote-tracking branch 'upstream/master'
clementhelsens Mar 14, 2022
5804a2c
Merge branch 'master' into dndx
clementhelsens Mar 14, 2022
e1a44d4
Merge branch 'dndx' of github.com:clementhelsens/EDM4hep into dndx
clementhelsens Mar 14, 2022
c5605cd
Add members
clementhelsens Mar 14, 2022
8d116a5
Merge branch 'master' into dndx
clementhelsens Mar 29, 2022
1a31eed
add dedx back
clementhelsens Apr 13, 2022
8258dd4
Merge branch 'dndx' of github.com:clementhelsens/EDM4hep into dndx
clementhelsens Apr 13, 2022
bb4a825
Merge branch 'master' into dndx
vvolkl May 24, 2022
e498603
Merge branch 'master' into dndx
tmadlener May 24, 2022
9a1a504
test: set ROOT_INCLUDE_PATH, add regex fail to catch missing dict hea…
vvolkl May 26, 2022
e4ccc92
link test_rdf to podioRootIO
vvolkl May 26, 2022
4f85c04
remove debug env setting
vvolkl May 26, 2022
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
9 changes: 7 additions & 2 deletions edm4hep.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,12 @@ components:
ObjectID(const podio::ObjectID& id ): index(id.index), collectionID(id.collectionID) {}\n
"

# quantity with an identifier, a value and an error
edm4hep::Quantity:
Members:
- int16_t type // flag identifying how to interpret the quantity
- float value // value of the quantity
- float error // error on the value of the quantity

datatypes :

Expand Down Expand Up @@ -355,12 +361,11 @@ datatypes :
- int32_t type //flagword that defines the type of track.Bits 16-31 are used internally
- float chi2 //Chi^2 of the track fit
- int32_t ndf //number of degrees of freedom of the track fit
- float dEdx //dEdx of the track.
- float dEdxError //error of dEdx.
- float radiusOfInnermostHit //radius of the innermost hit that has been used in the track fit
VectorMembers:
- int32_t subDetectorHitNumbers //number of hits in particular subdetectors.Check/set collection variable TrackSubdetectorNames for decoding the indices
- edm4hep::TrackState trackStates //track states
- edm4hep::Quantity dxQuantities // different measurements of dx quantities
OneToManyRelations:
- edm4hep::TrackerHit trackerHits //hits that have been used to create this track
- edm4hep::Track tracks //tracks (segments) that have been combined to create this track
Expand Down