File indexing completed on 2026-04-05 07:56:46
0001
0002
0003 #ifndef ACTSPODIOEDM_ParticleHypothesis_H
0004 #define ACTSPODIOEDM_ParticleHypothesis_H
0005
0006 #include <cstdint>
0007 #include <ostream>
0008
0009 #if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
0010 #include "nlohmann/json_fwd.hpp"
0011 #endif
0012
0013 namespace ActsPodioEdm {
0014
0015
0016
0017
0018
0019 class ParticleHypothesis {
0020 public:
0021 std::uint32_t absPdg{};
0022 float mass{};
0023 float absQ{};
0024 };
0025
0026 std::ostream& operator<<(std::ostream& o, const ParticleHypothesis& value);
0027
0028 #if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
0029 void to_json(nlohmann::json& j, const ParticleHypothesis& value);
0030 #endif
0031
0032 namespace v1 {
0033 using ParticleHypothesis = ActsPodioEdm::ParticleHypothesis;
0034 }
0035
0036 }
0037
0038 #endif