3#ifndef EDM4EIC_MutableVertex_H
4#define EDM4EIC_MutableVertex_H
12#include "edm4hep/Vector4f.h"
13#include "podio/RelationRange.h"
17#include "podio/utilities/MaybeSharedPtr.h"
21#if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
22#include "nlohmann/json_fwd.hpp"
93 [[deprecated(
"use getType instead")]]
101 [[deprecated(
"use getChi2 instead")]]
109 [[deprecated(
"use getNdf instead")]]
117 [[deprecated(
"use getPosition instead")]]
125 [[deprecated(
"use getPositionError instead")]]
142 void unlink() { m_obj = podio::utils::MaybeSharedPtr<VertexObj>{
nullptr}; }
157 friend std::hash<MutableVertex>;
161 swap(a.m_obj, b.m_obj);
166 explicit MutableVertex(podio::utils::MaybeSharedPtr<VertexObj> obj);
168 podio::utils::MaybeSharedPtr<VertexObj> m_obj{
nullptr};
171#if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
183 return std::hash<edm4eic::VertexObj*>{}(obj.m_obj.get());
Definition MutableVertex.h:38
void setType(const std::int32_t type)
Set the Type flag, to identify what type of vertex it is (e.g. primary, secondary,...
Definition MutableVertex.cc:55
friend class Vertex
Definition MutableVertex.h:42
int & ndf()
Get reference to NDF of the vertex fit.
Definition MutableVertex.cc:63
void unlink()
disconnect from VertexObj instance
Definition MutableVertex.h:142
float & chi2()
Get reference to Chi-squared of the vertex fit.
Definition MutableVertex.cc:60
void addToAssociatedParticles(const edm4eic::ReconstructedParticle &)
Definition MutableVertex.cc:72
bool operator!=(const MutableVertex &other) const
Definition MutableVertex.h:147
const podio::ObjectID getObjectID() const
Definition MutableVertex.cc:117
friend class VertexMutableCollectionIterator
Definition MutableVertex.h:41
void setPositionError(const edm4eic::Cov4f &positionError)
Set the Covariance matrix of the position+time. Time is 4th component, similarly to 4vector.
Definition MutableVertex.cc:67
const edm4eic::Cov4f & getPositionError() const
Access the Covariance matrix of the position+time. Time is 4th component, similarly to 4vector.
Definition MutableVertex.cc:52
bool operator<(const MutableVertex &other) const
Definition MutableVertex.h:151
edm4eic::Cov4f & positionError()
Get reference to Covariance matrix of the position+time. Time is 4th component, similarly to 4vector.
Definition MutableVertex.cc:69
friend class VertexCollection
Definition MutableVertex.h:40
std::vector< edm4eic::ReconstructedParticle >::const_iterator associatedParticles_end() const
Definition MutableVertex.cc:83
void setPosition(const edm4hep::Vector4f &position)
Set the position [mm] + time t0 [ns] of the vertex. Time is 4th component in vector.
Definition MutableVertex.cc:64
edm4hep::Vector4f & position()
Get reference to position [mm] + time t0 [ns] of the vertex. Time is 4th component in vector.
Definition MutableVertex.cc:66
podio::ObjectID id() const
Definition MutableVertex.h:153
VertexCollection collection_type
Definition MutableVertex.h:46
void setChi2(const float chi2)
Set the Chi-squared of the vertex fit.
Definition MutableVertex.cc:58
float getChi2() const
Access the Chi-squared of the vertex fit.
Definition MutableVertex.cc:49
int getNdf() const
Access the NDF of the vertex fit.
Definition MutableVertex.cc:50
void setNdf(const int ndf)
Set the NDF of the vertex fit.
Definition MutableVertex.cc:61
~MutableVertex()=default
destructor
MutableVertex(const MutableVertex &other)=default
copy constructor
bool operator!=(const Vertex &other) const
Definition MutableVertex.h:148
friend void swap(MutableVertex &a, MutableVertex &b)
Definition MutableVertex.h:159
const edm4hep::Vector4f & getPosition() const
Access the position [mm] + time t0 [ns] of the vertex. Time is 4th component in vector.
Definition MutableVertex.cc:51
std::size_t associatedParticles_size() const
Definition MutableVertex.cc:89
bool isAvailable() const
check whether the object is actually available
Definition MutableVertex.cc:113
std::vector< edm4eic::ReconstructedParticle >::const_iterator associatedParticles_begin() const
Definition MutableVertex.cc:77
MutableVertex & operator=(MutableVertex other) &
copy-assignment operator
Definition MutableVertex.cc:30
bool operator==(const MutableVertex &other) const
Definition MutableVertex.h:144
std::int32_t & type()
Get reference to Type flag, to identify what type of vertex it is (e.g. primary, secondary,...
Definition MutableVertex.cc:57
podio::RelationRange< edm4eic::ReconstructedParticle > getAssociatedParticles() const
Definition MutableVertex.cc:100
MutableVertex()
default constructor
Definition MutableVertex.cc:18
MutableVertex clone(bool cloneRelations=true) const
Definition MutableVertex.cc:35
MutableVertex & operator=(MutableVertex other) &&=delete
std::int32_t getType() const
Access the Type flag, to identify what type of vertex it is (e.g. primary, secondary,...
Definition MutableVertex.cc:48
Vertex object_type
Definition MutableVertex.h:45
Definition ReconstructedParticle.h:54
Definition VertexCollection.h:137
Definition CalorimeterHit.cc:17
OrderKey getOrderKey(const edm4eic::CalorimeterHit &obj)
Definition CalorimeterHit.cc:150
std::size_t operator()(const edm4eic::MutableVertex &obj) const
Definition MutableVertex.h:182