EDM4eic
EIC data model
Loading...
Searching...
No Matches
MutableReconstructedParticle.h
Go to the documentation of this file.
1// AUTOMATICALLY GENERATED FILE - DO NOT EDIT
2
3#ifndef EDM4EIC_MutableReconstructedParticle_H
4#define EDM4EIC_MutableReconstructedParticle_H
5
7// Make the immutable class available from its mutable version but not vice versa
9
10#include "edm4eic/Cluster.h"
11#include "edm4eic/Cov4f.h"
12#include "edm4eic/Track.h"
13#include "edm4hep/ParticleID.h"
14#include "edm4hep/Vector3f.h"
15#include "podio/RelationRange.h"
16#include <cstdint>
17#include <vector>
18
19#include "podio/utilities/MaybeSharedPtr.h"
20
21#include <cstdint>
22
23#if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
24#include "nlohmann/json_fwd.hpp"
25#endif
26
27// forward declarations
28namespace edm4eic {
30class Vertex;
31class MutableVertex;
32}
33namespace edm4hep {
34class ParticleID;
35class MutableParticleID;
36}
37
38
39namespace edm4eic {
40
41
42/** @class MutableReconstructedParticle
43 * EIC Reconstructed Particle
44 * @author: W. Armstrong, S. Joosten, F. Gaede
45 */
47
51
52public:
55
56 /// default constructor
58
59 /// Constructor initializing all members
60 MutableReconstructedParticle(const std::int32_t type, const float energy, const edm4hep::Vector3f& momentum, const edm4hep::Vector3f& referencePoint, const float charge, const float mass, const float goodnessOfPID, const edm4eic::Cov4f& covMatrix, const std::int32_t PDG);
61
62 /// copy constructor
64
65 /// copy-assignment operator
66 MutableReconstructedParticle& operator=(MutableReconstructedParticle other) &; // Rebind this to other's internal object
67 MutableReconstructedParticle& operator=(MutableReconstructedParticle other) && = delete; // Prevent rebinding temporary as the changes wouldn't persist
68
69 /// create a mutable deep-copy of the object with identical relations
70 /// if cloneRelations=false, the relations are not cloned and will be empty
71 MutableReconstructedParticle clone(bool cloneRelations=true) const;
72
73 /// destructor
75
76
77public:
78
79 /// Access the type of reconstructed particle. Check/set collection parameters ReconstructedParticleTypeNames and ReconstructedParticleTypeValues.
80 std::int32_t getType() const;
81
82 /// Access the [GeV] energy of the reconstructed particle. Four momentum state is not kept consistent internally.
83 float getEnergy() const;
84
85 /// Access the [GeV] particle momentum. Four momentum state is not kept consistent internally.
86 const edm4hep::Vector3f& getMomentum() const;
87
88 /// Access the [mm] reference, i.e. where the particle has been measured
89 const edm4hep::Vector3f& getReferencePoint() const;
90
91 /// Access the charge of the reconstructed particle.
92 float getCharge() const;
93
94 /// Access the [GeV] mass of the reconstructed particle, set independently from four vector. Four momentum state is not kept consistent internally.
95 float getMass() const;
96
97 /// Access the overall goodness of the PID on a scale of [0;1]
98 float getGoodnessOfPID() const;
99
100 /// Access the covariance matrix of the reconstructed particle 4vector (10 parameters).
101 const edm4eic::Cov4f& getCovMatrix() const;
102
103 /// Access the PDG code for this particle
104 std::int32_t getPDG() const;
105
106
107 /// Access the Start vertex associated to this particle
108 const edm4eic::Vertex getStartVertex() const;
109 /// Access the particle ID used for the kinematics of this particle
110 const edm4hep::ParticleID getParticleIDUsed() const;
111
112 /// Set the type of reconstructed particle. Check/set collection parameters ReconstructedParticleTypeNames and ReconstructedParticleTypeValues.
113 void setType(const std::int32_t type);
114 /// Get mutable reference to type of reconstructed particle. Check/set collection parameters ReconstructedParticleTypeNames and ReconstructedParticleTypeValues.
115 std::int32_t& getType();
116
117 /// Set the [GeV] energy of the reconstructed particle. Four momentum state is not kept consistent internally.
118 void setEnergy(const float energy);
119 /// Get mutable reference to [GeV] energy of the reconstructed particle. Four momentum state is not kept consistent internally.
120 float& getEnergy();
121
122 /// Set the [GeV] particle momentum. Four momentum state is not kept consistent internally.
123 void setMomentum(const edm4hep::Vector3f& momentum);
124 /// Get mutable reference to [GeV] particle momentum. Four momentum state is not kept consistent internally.
125 edm4hep::Vector3f& getMomentum();
126
127 /// Set the [mm] reference, i.e. where the particle has been measured
128 void setReferencePoint(const edm4hep::Vector3f& referencePoint);
129 /// Get mutable reference to [mm] reference, i.e. where the particle has been measured
130 edm4hep::Vector3f& getReferencePoint();
131
132 /// Set the charge of the reconstructed particle.
133 void setCharge(const float charge);
134 /// Get mutable reference to charge of the reconstructed particle.
135 float& getCharge();
136
137 /// Set the [GeV] mass of the reconstructed particle, set independently from four vector. Four momentum state is not kept consistent internally.
138 void setMass(const float mass);
139 /// Get mutable reference to [GeV] mass of the reconstructed particle, set independently from four vector. Four momentum state is not kept consistent internally.
140 float& getMass();
141
142 /// Set the overall goodness of the PID on a scale of [0;1]
143 void setGoodnessOfPID(const float goodnessOfPID);
144 /// Get mutable reference to overall goodness of the PID on a scale of [0;1]
145 float& getGoodnessOfPID();
146
147 /// Set the covariance matrix of the reconstructed particle 4vector (10 parameters).
148 void setCovMatrix(const edm4eic::Cov4f& covMatrix);
149 /// Get mutable reference to covariance matrix of the reconstructed particle 4vector (10 parameters).
151
152 /// Set the PDG code for this particle
153 void setPDG(const std::int32_t PDG);
154 /// Get mutable reference to PDG code for this particle
155 std::int32_t& getPDG();
156
157
158 /// Set the Start vertex associated to this particle
159 void setStartVertex(const edm4eic::Vertex& value);
160 /// Set the particle ID used for the kinematics of this particle
161 void setParticleIDUsed(const edm4hep::ParticleID& value);
162
163 void addToClusters(const edm4eic::Cluster&);
164 std::size_t clusters_size() const;
165 edm4eic::Cluster getClusters(std::size_t) const;
166 std::vector<edm4eic::Cluster>::const_iterator clusters_begin() const;
167 std::vector<edm4eic::Cluster>::const_iterator clusters_end() const;
168 podio::RelationRange<edm4eic::Cluster> getClusters() const;
169 void addToTracks(const edm4eic::Track&);
170 std::size_t tracks_size() const;
171 edm4eic::Track getTracks(std::size_t) const;
172 std::vector<edm4eic::Track>::const_iterator tracks_begin() const;
173 std::vector<edm4eic::Track>::const_iterator tracks_end() const;
174 podio::RelationRange<edm4eic::Track> getTracks() const;
176 std::size_t particles_size() const;
178 std::vector<edm4eic::ReconstructedParticle>::const_iterator particles_begin() const;
179 std::vector<edm4eic::ReconstructedParticle>::const_iterator particles_end() const;
180 podio::RelationRange<edm4eic::ReconstructedParticle> getParticles() const;
181 void addToParticleIDs(const edm4hep::ParticleID&);
182 std::size_t particleIDs_size() const;
183 edm4hep::ParticleID getParticleIDs(std::size_t) const;
184 std::vector<edm4hep::ParticleID>::const_iterator particleIDs_begin() const;
185 std::vector<edm4hep::ParticleID>::const_iterator particleIDs_end() const;
186 podio::RelationRange<edm4hep::ParticleID> getParticleIDs() const;
187
188 bool isCompound() const {return particles_size() > 0;}
189
190
191
192 /// check whether the object is actually available
193 bool isAvailable() const;
194 /// disconnect from ReconstructedParticleObj instance
195 void unlink() { m_obj = podio::utils::MaybeSharedPtr<ReconstructedParticleObj>{nullptr}; }
196
197 constexpr bool operator==(const MutableReconstructedParticle& other) const { return m_obj == other.m_obj; }
198 bool operator==(const ReconstructedParticle& other) const;
199
200 constexpr bool operator!=(const MutableReconstructedParticle& other) const { return !(*this == other); }
201 bool operator!=(const ReconstructedParticle& other) const { return !(*this == other); }
202
203 // less comparison operator, so that objects can be e.g. stored in sets.
205
206 podio::ObjectID id() const { return getObjectID(); }
207
208 const podio::ObjectID getObjectID() const;
209
210 friend std::hash<MutableReconstructedParticle>;
211
213 using std::swap;
214 swap(a.m_obj, b.m_obj); // swap out the internal pointers
215 }
216
217private:
218 /// constructor from existing ReconstructedParticleObj
219 explicit MutableReconstructedParticle(podio::utils::MaybeSharedPtr<ReconstructedParticleObj> obj);
220
221 podio::utils::MaybeSharedPtr<ReconstructedParticleObj> m_obj{new ReconstructedParticleObj{}, podio::utils::MarkOwned};
222};
223
224#if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
225void to_json(nlohmann::json& j, const MutableReconstructedParticle& value);
226#endif
227
228
229} // namespace edm4eic
230
231
232
233template<>
234struct std::hash<edm4eic::MutableReconstructedParticle> {
235 std::size_t operator()(const edm4eic::MutableReconstructedParticle& obj) const {
236 return std::hash<edm4eic::ReconstructedParticleObj*>{}(obj.m_obj.get());
237 }
238};
239
240
241#endif
Definition Cluster.h:49
Definition Cov4f.h:19
Definition MutableReconstructedParticle.h:46
ReconstructedParticle object_type
Definition MutableReconstructedParticle.h:53
void setReferencePoint(const edm4hep::Vector3f &referencePoint)
Set the [mm] reference, i.e. where the particle has been measured.
Definition MutableReconstructedParticle.cc:90
std::size_t clusters_size() const
Definition MutableReconstructedParticle.cc:129
const edm4eic::Vertex getStartVertex() const
Access the Start vertex associated to this particle.
Definition MutableReconstructedParticle.cc:69
void addToParticleIDs(const edm4hep::ParticleID &)
Definition MutableReconstructedParticle.cc:220
void unlink()
disconnect from ReconstructedParticleObj instance
Definition MutableReconstructedParticle.h:195
bool isCompound() const
Definition MutableReconstructedParticle.h:188
std::vector< edm4eic::Track >::const_iterator tracks_begin() const
Definition MutableReconstructedParticle.cc:153
void addToTracks(const edm4eic::Track &)
Definition MutableReconstructedParticle.cc:148
MutableReconstructedParticle clone(bool cloneRelations=true) const
Definition MutableReconstructedParticle.cc:37
void setGoodnessOfPID(const float goodnessOfPID)
Set the overall goodness of the PID on a scale of [0;1].
Definition MutableReconstructedParticle.cc:96
podio::ObjectID id() const
Definition MutableReconstructedParticle.h:206
friend class ReconstructedParticleCollection
Definition MutableReconstructedParticle.h:48
MutableReconstructedParticle & operator=(MutableReconstructedParticle other) &&=delete
std::size_t particleIDs_size() const
Definition MutableReconstructedParticle.cc:237
MutableReconstructedParticle & operator=(MutableReconstructedParticle other) &
copy-assignment operator
Definition MutableReconstructedParticle.cc:32
std::vector< edm4eic::Cluster >::const_iterator clusters_begin() const
Definition MutableReconstructedParticle.cc:117
const edm4hep::Vector3f & getMomentum() const
Access the [GeV] particle momentum. Four momentum state is not kept consistent internally.
Definition MutableReconstructedParticle.cc:61
void setCharge(const float charge)
Set the charge of the reconstructed particle.
Definition MutableReconstructedParticle.cc:92
float getEnergy() const
Access the [GeV] energy of the reconstructed particle. Four momentum state is not kept consistent int...
Definition MutableReconstructedParticle.cc:60
std::vector< edm4eic::ReconstructedParticle >::const_iterator particles_begin() const
Definition MutableReconstructedParticle.cc:189
void setMomentum(const edm4hep::Vector3f &momentum)
Set the [GeV] particle momentum. Four momentum state is not kept consistent internally.
Definition MutableReconstructedParticle.cc:88
bool operator<(const MutableReconstructedParticle &other) const
Definition MutableReconstructedParticle.h:204
std::vector< edm4hep::ParticleID >::const_iterator particleIDs_end() const
Definition MutableReconstructedParticle.cc:231
std::int32_t getPDG() const
Access the PDG code for this particle.
Definition MutableReconstructedParticle.cc:67
const edm4hep::Vector3f & getReferencePoint() const
Access the [mm] reference, i.e. where the particle has been measured.
Definition MutableReconstructedParticle.cc:62
std::vector< edm4eic::Track >::const_iterator tracks_end() const
Definition MutableReconstructedParticle.cc:159
const podio::ObjectID getObjectID() const
Definition MutableReconstructedParticle.cc:265
float getGoodnessOfPID() const
Access the overall goodness of the PID on a scale of [0;1].
Definition MutableReconstructedParticle.cc:65
constexpr bool operator==(const MutableReconstructedParticle &other) const
Definition MutableReconstructedParticle.h:197
std::vector< edm4eic::Cluster >::const_iterator clusters_end() const
Definition MutableReconstructedParticle.cc:123
MutableReconstructedParticle()=default
default constructor
void setCovMatrix(const edm4eic::Cov4f &covMatrix)
Set the covariance matrix of the reconstructed particle 4vector (10 parameters).
Definition MutableReconstructedParticle.cc:98
const edm4eic::Cov4f & getCovMatrix() const
Access the covariance matrix of the reconstructed particle 4vector (10 parameters).
Definition MutableReconstructedParticle.cc:66
podio::RelationRange< edm4eic::Cluster > getClusters() const
Definition MutableReconstructedParticle.cc:140
void setParticleIDUsed(const edm4hep::ParticleID &value)
Set the particle ID used for the kinematics of this particle.
Definition MutableReconstructedParticle.cc:107
~MutableReconstructedParticle()=default
destructor
bool isAvailable() const
check whether the object is actually available
Definition MutableReconstructedParticle.cc:261
std::size_t tracks_size() const
Definition MutableReconstructedParticle.cc:165
podio::RelationRange< edm4eic::ReconstructedParticle > getParticles() const
Definition MutableReconstructedParticle.cc:212
friend class ReconstructedParticleMutableCollectionIterator
Definition MutableReconstructedParticle.h:49
std::int32_t getType() const
Access the type of reconstructed particle. Check/set collection parameters ReconstructedParticleTypeN...
Definition MutableReconstructedParticle.cc:59
void setEnergy(const float energy)
Set the [GeV] energy of the reconstructed particle. Four momentum state is not kept consistent intern...
Definition MutableReconstructedParticle.cc:86
float getMass() const
Access the [GeV] mass of the reconstructed particle, set independently from four vector....
Definition MutableReconstructedParticle.cc:64
std::vector< edm4hep::ParticleID >::const_iterator particleIDs_begin() const
Definition MutableReconstructedParticle.cc:225
const edm4hep::ParticleID getParticleIDUsed() const
Access the particle ID used for the kinematics of this particle.
Definition MutableReconstructedParticle.cc:76
MutableReconstructedParticle(const MutableReconstructedParticle &other)=default
copy constructor
ReconstructedParticleCollection collection_type
Definition MutableReconstructedParticle.h:54
std::size_t particles_size() const
Definition MutableReconstructedParticle.cc:201
friend class ReconstructedParticle
Definition MutableReconstructedParticle.h:50
void setPDG(const std::int32_t PDG)
Set the PDG code for this particle.
Definition MutableReconstructedParticle.cc:100
std::vector< edm4eic::ReconstructedParticle >::const_iterator particles_end() const
Definition MutableReconstructedParticle.cc:195
friend void swap(MutableReconstructedParticle &a, MutableReconstructedParticle &b)
Definition MutableReconstructedParticle.h:212
float getCharge() const
Access the charge of the reconstructed particle.
Definition MutableReconstructedParticle.cc:63
void setType(const std::int32_t type)
Set the type of reconstructed particle. Check/set collection parameters ReconstructedParticleTypeName...
Definition MutableReconstructedParticle.cc:84
bool operator!=(const ReconstructedParticle &other) const
Definition MutableReconstructedParticle.h:201
void addToParticles(const edm4eic::ReconstructedParticle &)
Definition MutableReconstructedParticle.cc:184
constexpr bool operator!=(const MutableReconstructedParticle &other) const
Definition MutableReconstructedParticle.h:200
podio::RelationRange< edm4eic::Track > getTracks() const
Definition MutableReconstructedParticle.cc:176
void setStartVertex(const edm4eic::Vertex &value)
Set the Start vertex associated to this particle.
Definition MutableReconstructedParticle.cc:103
podio::RelationRange< edm4hep::ParticleID > getParticleIDs() const
Definition MutableReconstructedParticle.cc:248
void addToClusters(const edm4eic::Cluster &)
Definition MutableReconstructedParticle.cc:112
void setMass(const float mass)
Set the [GeV] mass of the reconstructed particle, set independently from four vector....
Definition MutableReconstructedParticle.cc:94
Definition MutableVertex.h:38
Definition ReconstructedParticleCollection.h:139
Definition ReconstructedParticle.h:54
Definition ReconstructedParticleObj.h:29
Definition Track.h:48
Definition Vertex.h:46
Definition ArrowMapper.cc:61
Definition CalorimeterHit.h:25
OrderKey getOrderKey(const edm4eic::CalorimeterHit &obj)
Definition CalorimeterHit.cc:146
std::size_t operator()(const edm4eic::MutableReconstructedParticle &obj) const
Definition MutableReconstructedParticle.h:235