File indexing completed on 2025-12-19 09:49:12
0001
0002
0003 #ifndef EDM4EIC_RingImageDATA_H
0004 #define EDM4EIC_RingImageDATA_H
0005
0006 #include "edm4hep/Vector3f.h"
0007
0008 namespace edm4eic {
0009
0010
0011
0012
0013
0014
0015 class RingImageData {
0016 public:
0017 float npe{};
0018 ::edm4hep::Vector3f position{};
0019 ::edm4hep::Vector3f positionError{};
0020 float theta{};
0021 float thetaError{};
0022 float radius{};
0023 float radiusError{};
0024
0025 };
0026
0027
0028 namespace v850 {
0029 using RingImageData = edm4eic::RingImageData;
0030 }
0031
0032
0033 }
0034
0035
0036 #endif