Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:55:38

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: F.Gaede, DESY
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 edm4hep
0026 
0027 #endif