Skip to content
Snippets Groups Projects
Commit b7a4c0fc authored by Whitney Armstrong's avatar Whitney Armstrong
Browse files

modified: eic_data.yaml

parent ffe286a4
No related branches found
No related tags found
1 merge request!50Traj and tracks
Pipeline #18828 passed
...@@ -35,6 +35,7 @@ components: ...@@ -35,6 +35,7 @@ components:
ExtraCode: ExtraCode:
declaration: " declaration: "
Index() : source{0}, value{-1} {}\n Index() : source{0}, value{-1} {}\n
Index(int32_t id) : value{id}, source{0} {}\n
Index(int32_t id, int32_t src) : value{id}, source{src} {}\n Index(int32_t id, int32_t src) : value{id}, source{src} {}\n
Index(Index rhs, int32_t new_src) : Index(rhs.value, new_src) {} \n Index(Index rhs, int32_t new_src) : Index(rhs.value, new_src) {} \n
bool empty() const {return value < 0;}\n bool empty() const {return value < 0;}\n
...@@ -465,11 +466,13 @@ datatypes: ...@@ -465,11 +466,13 @@ datatypes:
## members we'll need to communicate ## members we'll need to communicate
## eic::ProtoTrack: ## eic::ProtoTrack:
## Description: "Proto track info" ## Description: "Proto track info"
## Author: "S. Joosten" ## Author: "W. Armstrong, S. Joosten"
## Members: ## Members:
## eic::Index hitID // Unique hit identifier ## eic::Index ID // Unique identifier
## eic::Index trackID // link to the associated track ## eic::Index seedID // Index of corresponding initial track parameters
## eic::Weight weight // prototrack weight, in case we share pixels [0-1] ## eic::Weight weight // prototrack weight, in case we share pixels [0-1]
## VectorMembers:
## int32_t hits // tracker hit indicies
eic::TrackParameters: eic::TrackParameters:
Description: "ACTS Bound Track parameters" Description: "ACTS Bound Track parameters"
...@@ -484,6 +487,7 @@ datatypes: ...@@ -484,6 +487,7 @@ datatypes:
- float qOverPError // error on qOverP - float qOverPError // error on qOverP
- float time // track time [ns] - float time // track time [ns]
- float timeError // error on the time - float timeError // error on the time
- float charge // assumed track charge, units of [e]
eic::Trajectory: eic::Trajectory:
Description: "Trajectory" Description: "Trajectory"
...@@ -493,8 +497,9 @@ datatypes: ...@@ -493,8 +497,9 @@ datatypes:
- eic::Index protoTrackID // proto track index - eic::Index protoTrackID // proto track index
- eic::Index parameters // index for track parameters - eic::Index parameters // index for track parameters
- eic::VectorXYZT momentum // postion of vertex [mm] - eic::VectorXYZT momentum // postion of vertex [mm]
- double length // track length from first to last hit[mm] - float length // track length from first to last hit[mm]
- double TOF // time of flight from first to last hit [ns] - float charge // charge of particle trajectory
- float TOF // time of flight from first to last hit [ns]
eic::Track: eic::Track:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment