File indexing completed on 2025-12-17 10:08:13
0001
0002
0003 #ifndef EDM4EIC_MCRecoClusterParticleAssociationDATA_H
0004 #define EDM4EIC_MCRecoClusterParticleAssociationDATA_H
0005
0006 #include <cstdint>
0007
0008 namespace edm4eic {
0009
0010
0011
0012
0013
0014
0015 class MCRecoClusterParticleAssociationData {
0016 public:
0017 std::uint32_t simID{};
0018 std::uint32_t recID{};
0019 float weight{};
0020
0021 };
0022
0023
0024 namespace v850 {
0025 using MCRecoClusterParticleAssociationData = edm4eic::MCRecoClusterParticleAssociationData;
0026 }
0027
0028
0029 }
0030
0031
0032 #endif