File indexing completed on 2026-09-19 09:18:27
0001
0002
0003 #ifndef EDM4HEP_MutableParticleID_H
0004 #define EDM4HEP_MutableParticleID_H
0005
0006 #include "edm4hep/ParticleIDObj.h"
0007
0008 #include "edm4hep/ParticleID.h"
0009
0010 #include "podio/RelationRange.h"
0011 #include <cstdint>
0012 #include <vector>
0013
0014 #include "podio/utilities/MaybeSharedPtr.h"
0015
0016 #include <cstdint>
0017
0018 #if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
0019 #include "nlohmann/json_fwd.hpp"
0020 #endif
0021
0022
0023 namespace edm4hep {
0024 class ParticleIDCollection;
0025 class ReconstructedParticle;
0026 class MutableReconstructedParticle;
0027 }
0028
0029 namespace edm4hep {
0030
0031
0032
0033
0034
0035 class MutableParticleID {
0036
0037 friend class ParticleIDCollection;
0038 friend class ParticleIDMutableCollectionIterator;
0039 friend class ParticleID;
0040
0041 public:
0042 using object_type = ParticleID;
0043 using collection_type = ParticleIDCollection;
0044
0045
0046 MutableParticleID() = default;
0047
0048
0049 MutableParticleID(const std::int32_t type, const std::int32_t PDG, const std::int32_t algorithmType,
0050 const float likelihood);
0051
0052
0053 MutableParticleID(const MutableParticleID& other) = default;
0054
0055
0056 MutableParticleID& operator=(MutableParticleID other) &;
0057 MutableParticleID&
0058 operator=(MutableParticleID other) && = delete;
0059
0060
0061
0062 MutableParticleID clone(bool cloneRelations = true) const;
0063
0064
0065 ~MutableParticleID() = default;
0066
0067 public:
0068
0069 std::int32_t getType() const;
0070
0071
0072 std::int32_t getPDG() const;
0073
0074
0075 std::int32_t getAlgorithmType() const;
0076
0077
0078 float getLikelihood() const;
0079
0080
0081 const edm4hep::ReconstructedParticle getParticle() const;
0082
0083
0084 void setType(const std::int32_t type);
0085
0086 std::int32_t& getType();
0087
0088
0089 void setPDG(const std::int32_t PDG);
0090
0091 std::int32_t& getPDG();
0092
0093
0094 void setAlgorithmType(const std::int32_t algorithmType);
0095
0096 std::int32_t& getAlgorithmType();
0097
0098
0099 void setLikelihood(const float likelihood);
0100
0101 float& getLikelihood();
0102
0103
0104 void setParticle(const edm4hep::ReconstructedParticle& value);
0105
0106 void addToParameters(const float&);
0107 std::size_t parameters_size() const;
0108 float getParameters(std::size_t) const;
0109 std::vector<float>::const_iterator parameters_begin() const;
0110 std::vector<float>::const_iterator parameters_end() const;
0111 podio::RelationRange<float> getParameters() const;
0112
0113
0114 bool isAvailable() const;
0115
0116 void unlink() { m_obj = podio::utils::MaybeSharedPtr<ParticleIDObj>{nullptr}; }
0117
0118 constexpr bool operator==(const MutableParticleID& other) const { return m_obj == other.m_obj; }
0119 bool operator==(const ParticleID& other) const;
0120
0121 constexpr bool operator!=(const MutableParticleID& other) const { return !(*this == other); }
0122 bool operator!=(const ParticleID& other) const { return !(*this == other); }
0123
0124
0125 bool operator<(const MutableParticleID& other) const {
0126 return podio::detail::getOrderKey(*this) < podio::detail::getOrderKey(other);
0127 }
0128
0129 podio::ObjectID id() const { return getObjectID(); }
0130
0131 const podio::ObjectID getObjectID() const;
0132
0133 friend std::hash<MutableParticleID>;
0134
0135 friend void swap(MutableParticleID& a, MutableParticleID& b) {
0136 using std::swap;
0137 swap(a.m_obj, b.m_obj);
0138 }
0139
0140 private:
0141
0142 explicit MutableParticleID(podio::utils::MaybeSharedPtr<ParticleIDObj> obj);
0143
0144 podio::utils::MaybeSharedPtr<ParticleIDObj> m_obj{new ParticleIDObj{}, podio::utils::MarkOwned};
0145 };
0146
0147 #if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
0148 void to_json(nlohmann::json& j, const MutableParticleID& value);
0149 #endif
0150
0151 }
0152
0153 template <>
0154 struct std::hash<edm4hep::MutableParticleID> {
0155 std::size_t operator()(const edm4hep::MutableParticleID& obj) const {
0156 return std::hash<edm4hep::ParticleIDObj*>{}(obj.m_obj.get());
0157 }
0158 };
0159
0160 #endif