Back to home page

EIC code displayed by LXR

 
 

    


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

0001 // AUTOMATICALLY GENERATED FILE - DO NOT EDIT
0002 
0003 #ifndef EDM4EIC_Measurement2DDATA_H
0004 #define EDM4EIC_Measurement2DDATA_H
0005 
0006 #include "edm4eic/Cov3f.h"
0007 #include "edm4hep/Vector2f.h"
0008 #include <cstdint>
0009 
0010 namespace edm4eic {
0011 
0012 
0013 /** @class Measurement2DData
0014  *  2D measurement (on an arbitrary surface)
0015  *  @author: W. Deconinck
0016  */
0017 class Measurement2DData {
0018 public:
0019   std::uint64_t surface{}; ///< Surface for bound coordinates (geometryID)
0020   ::edm4hep::Vector2f loc{}; ///< 2D location on surface
0021   float time{}; ///< Measurement time
0022   ::edm4eic::Cov3f covariance{}; ///< Covariance on location and time
0023 
0024   unsigned int weights_begin{};
0025   unsigned int weights_end{};
0026   unsigned int hits_begin{};
0027   unsigned int hits_end{};
0028 };
0029 
0030 } // namespace edm4eic
0031 
0032 
0033 #endif