File indexing completed on 2026-03-30 07:57:06
0001
0002
0003 #ifndef ACTSPODIOEDM_MeasurementDATA_H
0004 #define ACTSPODIOEDM_MeasurementDATA_H
0005
0006 #include <cstdint>
0007
0008 namespace ActsPodioEdm {
0009
0010
0011
0012
0013
0014 class MeasurementData {
0015 public:
0016 std::uint64_t geometryId{};
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 }
0029
0030 }
0031
0032 #endif