Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-09-18 09:10:55

0001 // AUTOMATICALLY GENERATED FILE - DO NOT EDIT
0002 
0003 #ifndef EDM4HEP_ParticleIDDATA_H
0004 #define EDM4HEP_ParticleIDDATA_H
0005 
0006 #include <cstdint>
0007 
0008 namespace edm4hep {
0009 
0010 
0011 /** @class ParticleIDData
0012  *  ParticleID
0013  *  @author: EDM4hep authors
0014  */
0015 class ParticleIDData {
0016 public:
0017   std::int32_t type{}; ///< userdefined type
0018   std::int32_t PDG{}; ///< PDG code of this id - ( 999999 ) if unknown
0019   std::int32_t algorithmType{}; ///< type of the algorithm/module that created this hypothesis
0020   float likelihood{}; ///< likelihood of this hypothesis - in a user defined normalization
0021 
0022   unsigned int parameters_begin{};
0023   unsigned int parameters_end{};
0024 };
0025 
0026 } // namespace edm4hep
0027 
0028 
0029 #endif