Skip to content
Draft
Changes from all commits
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
17 changes: 17 additions & 0 deletions edm4hep.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -475,6 +475,22 @@ datatypes:
/// Set the position covariance matrix value for the two passed dimensions
void setCovMatrix(float value, edm4hep::Cartesian dimI, edm4hep::Cartesian dimJ) { getCovMatrix().setValue(value, dimI, dimJ); }

edm4hep::TrackerHitLocal:
Description: "Sensor-local tracker hit"
Author: "EDM4hep authors"
Members:
- uint64_t cellID // ID of the sensor that created this hit
- int32_t type // type of raw data hit, use depends on writer
- int32_t quality // quality bit flag of the hit
- float time [ns] // time of the hit (depends on measurement type)
- float eDep [GeV] // energy deposited on the hit (optional)
- float eDepError [GeV] // error measured on EDep (optional)
- edm4hep::Vector3d position [mm] // global hit position (depends on measurement type)

VectorMembers:
- float measurement // Entries in the measurement value vector
- float covariance // Entries in the measurement covariance vector. Order is column major

edm4hep::RawTimeSeries:
Description: "Raw data of a detector readout"
Author: "EDM4hep authors"
Expand Down Expand Up @@ -655,6 +671,7 @@ interfaces:
Types:
- edm4hep::TrackerHit3D
- edm4hep::TrackerHitPlane
- edm4hep::TrackerHitLocal

links:
edm4hep::RecoMCParticleLink:
Expand Down
Loading