Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/edm4hep/TrackData.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

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: F.Gaede, DESY
0013  */
0014 class TrackData {
0015 public:
0016   std::int32_t type{};          ///< flagword that defines the type of track.Bits 16-31 are used internally
0017   float chi2{};                 ///< Chi^2 of the track fit
0018   std::int32_t ndf{};           ///< number of degrees of freedom of the track fit
0019   float dEdx{};                 ///< dEdx of the track.
0020   float dEdxError{};            ///< error of dEdx.
0021   float radiusOfInnermostHit{}; ///< radius of the innermost hit that has been used in the track fit
0022 
0023   unsigned int subdetectorHitNumbers_begin{};
0024   unsigned int subdetectorHitNumbers_end{};
0025   unsigned int trackStates_begin{};
0026   unsigned int trackStates_end{};
0027   unsigned int dxQuantities_begin{};
0028   unsigned int dxQuantities_end{};
0029   unsigned int trackerHits_begin{};
0030   unsigned int trackerHits_end{};
0031   unsigned int tracks_begin{};
0032   unsigned int tracks_end{};
0033 };
0034 
0035 } // namespace edm4hep
0036 
0037 #endif