EICd
EIC data model
All Classes Namespaces Files Functions Variables Typedefs Friends
Vertex.h
Go to the documentation of this file.
1 // AUTOMATICALLY GENERATED FILE - DO NOT EDIT
2 
3 #ifndef EICD_Vertex_H
4 #define EICD_Vertex_H
5 
6 #include "eicd/VertexConst.h"
7 #include "eicd/VertexObj.h"
8 
9 #include "eicd/Index.h"
10 #include "eicd/VectorXYZ.h"
11 #include "podio/ObjectID.h"
12 #include <ostream>
13 
14 
15 
16 namespace eic {
17 
18 
19 /** @class Vertex
20  * EIC vertex
21  * @author: W. Armstrong, S. Joosten
22  */
23 class Vertex {
24 
25  friend class VertexCollection;
27  friend class ConstVertex;
28 
29 public:
30 
31  /// default constructor
32  Vertex();
33  Vertex(eic::Index ID, eic::VectorXYZ position, float time, float chi2, float probability, bool primary);
34 
35  /// constructor from existing VertexObj
36  Vertex(VertexObj* obj);
37 
38  /// copy constructor
39  Vertex(const Vertex& other);
40 
41  /// copy-assignment operator
42  Vertex& operator=(const Vertex& other);
43 
44  /// support cloning (deep-copy)
45  Vertex clone() const;
46 
47  /// destructor
48  ~Vertex();
49 
50  /// conversion to const object
51  operator ConstVertex() const;
52 
53 public:
54 
55  /// Access the unique vertex ID
56  const eic::Index& ID() const;
57 
58  /// Access the postion of vertex [mm]
59  const eic::VectorXYZ& position() const;
60 
61  /// Access the time of vertex [ns]
62  const float& time() const;
63 
64  /// Access the Chi squared of the vertex fit.
65  const float& chi2() const;
66 
67  /// Access the Probability of the vertex fit
68  const float& probability() const;
69 
70  /// Access the Whether it is the primary vertex of the event
71  const bool& primary() const;
72 
73 
74 
75  /// Set the unique vertex ID
76  void ID(eic::Index value);
77  /// Get reference to unique vertex ID
78  eic::Index& ID();
79 
80  /// Set the postion of vertex [mm]
81  void position(eic::VectorXYZ value);
82  /// Get reference to postion of vertex [mm]
84 
85  /// Set the time of vertex [ns]
86  void time(float value);
87 
88  /// Set the Chi squared of the vertex fit.
89  void chi2(float value);
90 
91  /// Set the Probability of the vertex fit
92  void probability(float value);
93 
94  /// Set the Whether it is the primary vertex of the event
95  void primary(bool value);
96 
97 
98 
99 
100 
101 
102  /// check whether the object is actually available
103  bool isAvailable() const;
104  /// disconnect from VertexObj instance
105  void unlink() { m_obj = nullptr; }
106 
107  bool operator==(const Vertex& other) const { return m_obj == other.m_obj; }
108  bool operator==(const ConstVertex& other) const;
109 
110  // less comparison operator, so that objects can be e.g. stored in sets.
111  bool operator<(const Vertex& other) const { return m_obj < other.m_obj; }
112 
113  unsigned int id() const { return getObjectID().collectionID * 10000000 + getObjectID().index; }
114 
115  const podio::ObjectID getObjectID() const;
116 
117 private:
118  VertexObj* m_obj;
119 };
120 
121 std::ostream& operator<<(std::ostream& o, const ConstVertex& value);
122 
123 } // namespace eic
124 
125 
126 #endif
eic::operator<<
std::ostream & operator<<(std::ostream &o, const ConstBasicParticle &value)
Definition: BasicParticle.cc:102
eic::Index
Definition: Index.h:11
VertexObj.h
eic::Vertex::operator=
Vertex & operator=(const Vertex &other)
copy-assignment operator
Definition: Vertex.cc:34
eic
Definition: BasicParticle.cc:13
eic::Vertex::time
const float & time() const
Access the time of vertex [ns].
Definition: Vertex.cc:55
eic::ConstVertex
Definition: VertexConst.h:21
eic::Vertex::getObjectID
const podio::ObjectID getObjectID() const
Definition: Vertex.cc:83
eic::Vertex::id
unsigned int id() const
Definition: Vertex.h:113
eic::Vertex::chi2
const float & chi2() const
Access the Chi squared of the vertex fit.
Definition: Vertex.cc:56
VectorXYZ.h
eic::Vertex::Vertex
Vertex()
default constructor
Definition: Vertex.cc:16
eic::Vertex::ConstVertex
friend class ConstVertex
Definition: Vertex.h:27
eic::Vertex::operator==
bool operator==(const Vertex &other) const
Definition: Vertex.h:107
eic::Vertex::~Vertex
~Vertex()
destructor
Definition: Vertex.cc:48
eic::Vertex::position
const eic::VectorXYZ & position() const
Access the postion of vertex [mm].
Definition: Vertex.cc:54
eic::Vertex::operator<
bool operator<(const Vertex &other) const
Definition: Vertex.h:111
eic::VertexCollection
Definition: VertexCollection.h:76
eic::VertexCollectionIterator
Definition: VertexCollection.h:29
eic::Vertex::probability
const float & probability() const
Access the Probability of the vertex fit.
Definition: Vertex.cc:57
eic::Vertex
Definition: Vertex.h:23
eic::Vertex::clone
Vertex clone() const
support cloning (deep-copy)
Definition: Vertex.cc:44
VertexConst.h
Index.h
eic::Vertex::unlink
void unlink()
disconnect from VertexObj instance
Definition: Vertex.h:105
eic::Vertex::primary
const bool & primary() const
Access the Whether it is the primary vertex of the event.
Definition: Vertex.cc:58
eic::Vertex::isAvailable
bool isAvailable() const
check whether the object is actually available
Definition: Vertex.cc:76
eic::Vertex::ID
const eic::Index & ID() const
Access the unique vertex ID.
Definition: Vertex.cc:53
eic::VectorXYZ
Definition: VectorXYZ.h:13
eic::VertexObj
Definition: VertexObj.h:18