Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:55:32

0001 // AUTOMATICALLY GENERATED FILE - DO NOT EDIT
0002 
0003 #ifndef EDM4EIC_TrackDATA_H
0004 #define EDM4EIC_TrackDATA_H
0005 
0006 #include "edm4eic/Cov6f.h"
0007 #include "edm4hep/Vector3f.h"
0008 #include <cstdint>
0009 
0010 namespace edm4eic {
0011 
0012 
0013 /** @class TrackData
0014  *  Track information at the vertex
0015  *  @author: S. Joosten, J. Osborn
0016  */
0017 class TrackData {
0018 public:
0019   std::int32_t type{}; ///< Flag that defines the type of track
0020   ::edm4hep::Vector3f position{}; ///< Track 3-position at the vertex
0021   ::edm4hep::Vector3f momentum{}; ///< Track 3-momentum at the vertex [GeV]
0022   ::edm4eic::Cov6f positionMomentumCovariance{}; ///< Covariance matrix in basis [x,y,z,px,py,pz]
0023   float time{}; ///< Track time at the vertex [ns]
0024   float timeError{}; ///< Error on the track vertex time
0025   float charge{}; ///< Particle charge
0026   float chi2{}; ///< Total chi2
0027   std::uint32_t ndf{}; ///< Number of degrees of freedom
0028   std::int32_t pdg{}; ///< PDG particle ID hypothesis
0029 
0030   unsigned int measurements_begin{};
0031   unsigned int measurements_end{};
0032   unsigned int tracks_begin{};
0033   unsigned int tracks_end{};
0034 };
0035 
0036 } // namespace edm4eic
0037 
0038 
0039 #endif