Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-21 09:49:29

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 /** @class TrackData
0011  *  Reconstructed track
0012  *  @author: EDM4hep authors
0013  */
0014 class TrackData {
0015 public:
0016   std::int32_t type{};   ///< flagword that defines the type of track
0017   float chi2{};          ///< chi-squared of the track fit
0018   std::int32_t ndf{};    ///< number of degrees of freedom of the track fit
0019   std::int32_t Nholes{}; ///< number of holes on track
0020 
0021   unsigned int subdetectorHitNumbers_begin{};
0022   unsigned int subdetectorHitNumbers_end{};
0023   unsigned int subdetectorHoleNumbers_begin{};
0024   unsigned int subdetectorHoleNumbers_end{};
0025   unsigned int trackStates_begin{};
0026   unsigned int trackStates_end{};
0027   unsigned int trackerHits_begin{};
0028   unsigned int trackerHits_end{};
0029   unsigned int tracks_begin{};
0030   unsigned int tracks_end{};
0031 };
0032 
0033 namespace v5 {
0034   using TrackData = edm4hep::TrackData;
0035 } // namespace v5
0036 
0037 } // namespace edm4hep
0038 
0039 #endif