Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-01-07 10:03:00

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 /** @class ParticleIDData
0011  *  ParticleID
0012  *  @author: EDM4hep authors
0013  */
0014 class ParticleIDData {
0015 public:
0016   std::int32_t type{};          ///< userdefined type
0017   std::int32_t PDG{};           ///< PDG code of this id - ( 999999 ) if unknown
0018   std::int32_t algorithmType{}; ///< type of the algorithm/module that created this hypothesis
0019   float likelihood{};           ///< likelihood of this hypothesis - in a user defined normalization
0020 
0021   unsigned int parameters_begin{};
0022   unsigned int parameters_end{};
0023 };
0024 
0025 namespace v5 {
0026   using ParticleIDData = edm4hep::ParticleIDData;
0027 } // namespace v5
0028 
0029 } // namespace edm4hep
0030 
0031 #endif