File indexing completed on 2026-01-07 10:03:00
0001
0002
0003 #ifndef EDM4HEP_ParticleIDDATA_H
0004 #define EDM4HEP_ParticleIDDATA_H
0005
0006 #include <cstdint>
0007
0008 namespace edm4hep {
0009
0010
0011
0012
0013
0014 class ParticleIDData {
0015 public:
0016 std::int32_t type{};
0017 std::int32_t PDG{};
0018 std::int32_t algorithmType{};
0019 float likelihood{};
0020
0021 unsigned int parameters_begin{};
0022 unsigned int parameters_end{};
0023 };
0024
0025 namespace v5 {
0026 using ParticleIDData = edm4hep::ParticleIDData;
0027 }
0028
0029 }
0030
0031 #endif