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: update vertex edm to 4d quantities #61

Merged
merged 9 commits into from
Feb 2, 2024
Merged
Changes from 1 commit
Commits
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
6 changes: 3 additions & 3 deletions edm4eic.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -435,12 +435,12 @@ datatypes:
Description: "EIC vertex"
Author: "J. Osborn"
Members:
- int32_t type // Type flag, to identify what type of vertex it is (e.g. primary, secondary, generated, etc.)
- int32_t type // Type flag, to identify what type of vertex it is (e.g. primary, secondary, generated, etc.)
- float chi2 // Chi-squared of the vertex fit
- int ndf // NDF of the vertex fit
- edm4hep::Vector4f position // [mm] position + time t0 of the vertex.
- edm4hep::Vector4f position // [mm] position + time t0 of the vertex. Time is 4th component in vector
wdconinc marked this conversation as resolved.
Show resolved Hide resolved
## this is named "covMatrix" in EDM4hep, renamed for consistency with the rest of edm4eic
- edm4eic::Cov4f positionError // Covariance matrix of the position+time
- edm4eic::Cov4f positionError // Covariance matrix of the position+time. Time is 4th component, similarly to 4vector
OneToManyRelations:
- edm4eic::ReconstructedParticle associatedParticles // particles associated to this vertex.

Expand Down
Loading