Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-09-17 08:55:15

0001 // AUTOMATICALLY GENERATED FILE - DO NOT EDIT
0002 
0003 #ifndef EDM4HEP_TrackDATA_H
0004 #define EDM4HEP_TrackDATA_H
0005 
0006 #include <cstdint>
0007 
0008 namespace edm4hep {
0009 
0010 
0011 /** @class TrackData
0012  *  Reconstructed track
0013  *  @author: EDM4hep authors
0014  */
0015 class TrackData {
0016 public:
0017   std::int32_t type{}; ///< flagword that defines the type of track
0018   float chi2{}; ///< Chi^2 of the track fit
0019   std::int32_t ndf{}; ///< number of degrees of freedom of the track fit
0020   std::int32_t Nholes{}; ///< number of holes on track
0021 
0022   unsigned int subdetectorHitNumbers_begin{};
0023   unsigned int subdetectorHitNumbers_end{};
0024   unsigned int subdetectorHoleNumbers_begin{};
0025   unsigned int subdetectorHoleNumbers_end{};
0026   unsigned int trackStates_begin{};
0027   unsigned int trackStates_end{};
0028   unsigned int trackerHits_begin{};
0029   unsigned int trackerHits_end{};
0030   unsigned int tracks_begin{};
0031   unsigned int tracks_end{};
0032 };
0033 
0034 } // namespace edm4hep
0035 
0036 
0037 #endif