Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-03-30 07:57:06

0001 // AUTOMATICALLY GENERATED FILE - DO NOT EDIT
0002 
0003 #ifndef ACTSPODIOEDM_MeasurementDATA_H
0004 #define ACTSPODIOEDM_MeasurementDATA_H
0005 
0006 #include <cstdint>
0007 
0008 namespace ActsPodioEdm {
0009 
0010 /** @class MeasurementData
0011  *  Local representation of a measurement
0012  *  @author: Paul Gessinger, CERN
0013  */
0014 class MeasurementData {
0015  public:
0016   std::uint64_t geometryId{};  ///< the associated surface identifier
0017 
0018   unsigned int indices_begin{};
0019   unsigned int indices_end{};
0020   unsigned int parameterValues_begin{};
0021   unsigned int parameterValues_end{};
0022   unsigned int covarianceValues_begin{};
0023   unsigned int covarianceValues_end{};
0024 };
0025 
0026 namespace v1 {
0027 using MeasurementData = ActsPodioEdm::MeasurementData;
0028 }  // namespace v1
0029 
0030 }  // namespace ActsPodioEdm
0031 
0032 #endif