EDM4eic
EIC data model
Loading...
Searching...
No Matches
MutableVertex.h
Go to the documentation of this file.
1// AUTOMATICALLY GENERATED FILE - DO NOT EDIT
2
3#ifndef EDM4EIC_MutableVertex_H
4#define EDM4EIC_MutableVertex_H
5
6#include "edm4eic/VertexObj.h"
7// Make the immutable class available from its mutable version but not vice versa
8#include "edm4eic/Vertex.h"
9
10#include "edm4eic/Cov4f.h"
12#include "edm4hep/Vector4f.h"
13#include "podio/RelationRange.h"
14#include <cstdint>
15#include <vector>
16
17#include "podio/utilities/MaybeSharedPtr.h"
18
19#include <cstdint>
20
21#if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
22#include "nlohmann/json_fwd.hpp"
23#endif
24
25// forward declarations
26namespace edm4eic {
28}
29
30
31namespace edm4eic {
32
33
34/** @class MutableVertex
35 * EIC vertex
36 * @author: J. Osborn
37 */
39
40 friend class VertexCollection;
42 friend class Vertex;
43
44public:
47
48 /// default constructor
49 MutableVertex() = default;
50
51 /// Constructor initializing all members
52 MutableVertex(const std::int32_t type, const float chi2, const int ndf, const edm4hep::Vector4f& position, const edm4eic::Cov4f& positionError);
53
54 /// copy constructor
55 MutableVertex(const MutableVertex& other) = default;
56
57 /// copy-assignment operator
58 MutableVertex& operator=(MutableVertex other) &; // Rebind this to other's internal object
59 MutableVertex& operator=(MutableVertex other) && = delete; // Prevent rebinding temporary as the changes wouldn't persist
60
61 /// create a mutable deep-copy of the object with identical relations
62 /// if cloneRelations=false, the relations are not cloned and will be empty
63 MutableVertex clone(bool cloneRelations=true) const;
64
65 /// destructor
66 ~MutableVertex() = default;
67
68
69public:
70
71 /// Access the Type flag, to identify what type of vertex it is (e.g. primary, secondary, generated, etc.)
72 std::int32_t getType() const;
73
74 /// Access the Chi-squared of the vertex fit
75 float getChi2() const;
76
77 /// Access the NDF of the vertex fit
78 int getNdf() const;
79
80 /// Access the position [mm] + time t0 [ns] of the vertex. Time is 4th component in vector
81 const edm4hep::Vector4f& getPosition() const;
82
83 /// Access the Covariance matrix of the position+time. Time is 4th component, similarly to 4vector
84 const edm4eic::Cov4f& getPositionError() const;
85
86
87
88 /// Set the Type flag, to identify what type of vertex it is (e.g. primary, secondary, generated, etc.)
89 void setType(const std::int32_t type);
90 /// Get mutable reference to Type flag, to identify what type of vertex it is (e.g. primary, secondary, generated, etc.)
91 std::int32_t& getType();
92
93 /// Set the Chi-squared of the vertex fit
94 void setChi2(const float chi2);
95 /// Get mutable reference to Chi-squared of the vertex fit
96 float& getChi2();
97
98 /// Set the NDF of the vertex fit
99 void setNdf(const int ndf);
100 /// Get mutable reference to NDF of the vertex fit
101 int& getNdf();
102
103 /// Set the position [mm] + time t0 [ns] of the vertex. Time is 4th component in vector
104 void setPosition(const edm4hep::Vector4f& position);
105 /// Get mutable reference to position [mm] + time t0 [ns] of the vertex. Time is 4th component in vector
106 edm4hep::Vector4f& getPosition();
107
108 /// Set the Covariance matrix of the position+time. Time is 4th component, similarly to 4vector
109 void setPositionError(const edm4eic::Cov4f& positionError);
110 /// Get mutable reference to Covariance matrix of the position+time. Time is 4th component, similarly to 4vector
112
113
114
116 std::size_t associatedParticles_size() const;
118 std::vector<edm4eic::ReconstructedParticle>::const_iterator associatedParticles_begin() const;
119 std::vector<edm4eic::ReconstructedParticle>::const_iterator associatedParticles_end() const;
120 podio::RelationRange<edm4eic::ReconstructedParticle> getAssociatedParticles() const;
121
122
123
124 /// check whether the object is actually available
125 bool isAvailable() const;
126 /// disconnect from VertexObj instance
127 void unlink() { m_obj = podio::utils::MaybeSharedPtr<VertexObj>{nullptr}; }
128
129 constexpr bool operator==(const MutableVertex& other) const { return m_obj == other.m_obj; }
130 bool operator==(const Vertex& other) const;
131
132 constexpr bool operator!=(const MutableVertex& other) const { return !(*this == other); }
133 bool operator!=(const Vertex& other) const { return !(*this == other); }
134
135 // less comparison operator, so that objects can be e.g. stored in sets.
136 bool operator<(const MutableVertex& other) const { return podio::detail::getOrderKey(*this) < podio::detail::getOrderKey(other); }
137
138 podio::ObjectID id() const { return getObjectID(); }
139
140 const podio::ObjectID getObjectID() const;
141
142 friend std::hash<MutableVertex>;
143
144 friend void swap(MutableVertex& a, MutableVertex& b) {
145 using std::swap;
146 swap(a.m_obj, b.m_obj); // swap out the internal pointers
147 }
148
149private:
150 /// constructor from existing VertexObj
151 explicit MutableVertex(podio::utils::MaybeSharedPtr<VertexObj> obj);
152
153 podio::utils::MaybeSharedPtr<VertexObj> m_obj{new VertexObj{}, podio::utils::MarkOwned};
154};
155
156#if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
157void to_json(nlohmann::json& j, const MutableVertex& value);
158#endif
159
160
161} // namespace edm4eic
162
163
164
165template<>
166struct std::hash<edm4eic::MutableVertex> {
167 std::size_t operator()(const edm4eic::MutableVertex& obj) const {
168 return std::hash<edm4eic::VertexObj*>{}(obj.m_obj.get());
169 }
170};
171
172
173#endif
Definition Cov4f.h:19
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:51
friend class Vertex
Definition MutableVertex.h:42
void unlink()
disconnect from VertexObj instance
Definition MutableVertex.h:127
void addToAssociatedParticles(const edm4eic::ReconstructedParticle &)
Definition MutableVertex.cc:63
constexpr bool operator==(const MutableVertex &other) const
Definition MutableVertex.h:129
const podio::ObjectID getObjectID() const
Definition MutableVertex.cc:108
constexpr bool operator!=(const MutableVertex &other) const
Definition MutableVertex.h:132
friend class VertexMutableCollectionIterator
Definition MutableVertex.h:41
MutableVertex()=default
default constructor
void setPositionError(const edm4eic::Cov4f &positionError)
Set the Covariance matrix of the position+time. Time is 4th component, similarly to 4vector.
Definition MutableVertex.cc:59
const edm4eic::Cov4f & getPositionError() const
Access the Covariance matrix of the position+time. Time is 4th component, similarly to 4vector.
Definition MutableVertex.cc:48
bool operator<(const MutableVertex &other) const
Definition MutableVertex.h:136
friend class VertexCollection
Definition MutableVertex.h:40
std::vector< edm4eic::ReconstructedParticle >::const_iterator associatedParticles_end() const
Definition MutableVertex.cc:74
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:57
podio::ObjectID id() const
Definition MutableVertex.h:138
VertexCollection collection_type
Definition MutableVertex.h:46
void setChi2(const float chi2)
Set the Chi-squared of the vertex fit.
Definition MutableVertex.cc:53
float getChi2() const
Access the Chi-squared of the vertex fit.
Definition MutableVertex.cc:45
int getNdf() const
Access the NDF of the vertex fit.
Definition MutableVertex.cc:46
void setNdf(const int ndf)
Set the NDF of the vertex fit.
Definition MutableVertex.cc:55
~MutableVertex()=default
destructor
MutableVertex(const MutableVertex &other)=default
copy constructor
bool operator!=(const Vertex &other) const
Definition MutableVertex.h:133
friend void swap(MutableVertex &a, MutableVertex &b)
Definition MutableVertex.h:144
const edm4hep::Vector4f & getPosition() const
Access the position [mm] + time t0 [ns] of the vertex. Time is 4th component in vector.
Definition MutableVertex.cc:47
std::size_t associatedParticles_size() const
Definition MutableVertex.cc:80
bool isAvailable() const
check whether the object is actually available
Definition MutableVertex.cc:104
std::vector< edm4eic::ReconstructedParticle >::const_iterator associatedParticles_begin() const
Definition MutableVertex.cc:68
MutableVertex & operator=(MutableVertex other) &
copy-assignment operator
Definition MutableVertex.cc:26
podio::RelationRange< edm4eic::ReconstructedParticle > getAssociatedParticles() const
Definition MutableVertex.cc:91
MutableVertex clone(bool cloneRelations=true) const
Definition MutableVertex.cc:31
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:44
Vertex object_type
Definition MutableVertex.h:45
Definition ReconstructedParticle.h:54
Definition VertexCollection.h:139
Definition Vertex.h:46
Definition VertexObj.h:20
Definition ArrowMapper.cc:61
OrderKey getOrderKey(const edm4eic::CalorimeterHit &obj)
Definition CalorimeterHit.cc:146
std::size_t operator()(const edm4eic::MutableVertex &obj) const
Definition MutableVertex.h:167