Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-19 09:49:07

0001 // AUTOMATICALLY GENERATED FILE - DO NOT EDIT
0002 
0003 #ifndef EDM4EIC_MCRecoParticleAssociationDATA_H
0004 #define EDM4EIC_MCRecoParticleAssociationDATA_H
0005 
0006 #include <cstdint>
0007 
0008 namespace edm4eic {
0009 
0010 
0011 /** @class MCRecoParticleAssociationData
0012  *  Used to keep track of the correspondence between MC and reconstructed particles
0013  *  @author: S. Joosten
0014  */
0015 class MCRecoParticleAssociationData {
0016 public:
0017   std::uint32_t simID{}; ///< Index of corresponding MCParticle (position in MCParticles array)
0018   std::uint32_t recID{}; ///< Index of corresponding ReconstructedParticle (position in ReconstructedParticles array)
0019   float weight{}; ///< weight of this association
0020 
0021 };
0022 
0023 
0024 namespace v850 {
0025 using MCRecoParticleAssociationData = edm4eic::MCRecoParticleAssociationData;
0026 } // namespace v850
0027 
0028 
0029 } // namespace edm4eic
0030 
0031 
0032 #endif