3#ifndef EDM4EIC_MutableReconstructedParticle_H
4#define EDM4EIC_MutableReconstructedParticle_H
13#include "edm4hep/ParticleID.h"
14#include "edm4hep/Vector3f.h"
15#include "podio/RelationRange.h"
19#include "podio/utilities/MaybeSharedPtr.h"
23#if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
24#include "nlohmann/json_fwd.hpp"
35class MutableParticleID;
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);
104 std::int32_t
getPDG()
const;
113 void setType(
const std::int32_t type);
123 void setMomentum(
const edm4hep::Vector3f& momentum);
138 void setMass(
const float mass);
153 void setPDG(
const std::int32_t PDG);
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;
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;
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;
185 std::vector<edm4hep::ParticleID>::const_iterator
particleIDs_end()
const;
195 void unlink() { m_obj = podio::utils::MaybeSharedPtr<ReconstructedParticleObj>{
nullptr}; }
210 friend std::hash<MutableReconstructedParticle>;
214 swap(a.m_obj, b.m_obj);
221 podio::utils::MaybeSharedPtr<ReconstructedParticleObj> m_obj{
new ReconstructedParticleObj{}, podio::utils::MarkOwned};
224#if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
234struct std::hash<
edm4eic::MutableReconstructedParticle> {
236 return std::hash<edm4eic::ReconstructedParticleObj*>{}(obj.m_obj.get());
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 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