Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2024-11-15 09:02:04

0001 // AUTOMATICALLY GENERATED FILE - DO NOT EDIT
0002 
0003 #ifndef ACTSPODIOEDM_TrackInfo_H
0004 #define ACTSPODIOEDM_TrackInfo_H
0005 
0006 #include <array>
0007 #include <cstdint>
0008 #include <ostream>
0009 
0010 #if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
0011 #include "nlohmann/json_fwd.hpp"
0012 #endif
0013 
0014 namespace ActsPodioEdm {
0015 
0016 /** @class TrackInfo
0017  *
0018  *  @author:
0019  */
0020 class TrackInfo {
0021  public:
0022   std::array<double, 6> parameters{};
0023   std::array<double, 36> covariance{};  ///< local covariance
0024   std::uint32_t tipIndex{};             ///< index of the outermost track state
0025   std::uint32_t stemIndex{};            ///< index of the innermost track state
0026   unsigned int nMeasurements{};         ///< number of measurements
0027   unsigned int nHoles{};                ///< number of holes
0028   float chi2{};                         ///< chi squared of the track
0029   unsigned int ndf{};                   ///< number of degrees of freedom
0030   unsigned int nOutliers{};             ///< number of outliers
0031   unsigned int nSharedHits{};           ///< number of shared hits
0032 };
0033 
0034 std::ostream& operator<<(std::ostream& o, const ActsPodioEdm::TrackInfo& value);
0035 
0036 #if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
0037 void to_json(nlohmann::json& j, const TrackInfo& value);
0038 #endif
0039 
0040 }  // namespace ActsPodioEdm
0041 
0042 #endif