EICd
EIC data model
All Classes Namespaces Files Functions Variables Typedefs Friends
RawTrackerHit.h
Go to the documentation of this file.
1 // AUTOMATICALLY GENERATED FILE - DO NOT EDIT
2 
3 #ifndef EICD_RawTrackerHit_H
4 #define EICD_RawTrackerHit_H
5 
8 
9 #include "eicd/Index.h"
10 #include "podio/ObjectID.h"
11 #include <ostream>
12 
13 
14 
15 namespace eic {
16 
17 
18 /** @class RawTrackerHit
19  * Raw (digitized) tracker hit
20  * @author: W. Armstrong, S. Joosten
21  */
23 
26  friend class ConstRawTrackerHit;
27 
28 public:
29 
30  /// default constructor
31  RawTrackerHit();
32  RawTrackerHit(eic::Index ID, std::int64_t cellID, std::int32_t time, std::int32_t charge);
33 
34  /// constructor from existing RawTrackerHitObj
36 
37  /// copy constructor
38  RawTrackerHit(const RawTrackerHit& other);
39 
40  /// copy-assignment operator
41  RawTrackerHit& operator=(const RawTrackerHit& other);
42 
43  /// support cloning (deep-copy)
44  RawTrackerHit clone() const;
45 
46  /// destructor
48 
49  /// conversion to const object
50  operator ConstRawTrackerHit() const;
51 
52 public:
53 
54  /// Access the unique ID for this hit
55  const eic::Index& ID() const;
56 
57  /// Access the The detector specific (geometrical) cell id.
58  const std::int64_t& cellID() const;
59 
60  /// Access the tdc value.
61  const std::int32_t& time() const;
62 
63  /// Access the adc value
64  const std::int32_t& charge() const;
65 
66 
67 
68  /// Set the unique ID for this hit
69  void ID(eic::Index value);
70  /// Get reference to unique ID for this hit
71  eic::Index& ID();
72 
73  /// Set the The detector specific (geometrical) cell id.
74  void cellID(std::int64_t value);
75 
76  /// Set the tdc value.
77  void time(std::int32_t value);
78 
79  /// Set the adc value
80  void charge(std::int32_t value);
81 
82 
83 
84 
85 
86 
87  /// check whether the object is actually available
88  bool isAvailable() const;
89  /// disconnect from RawTrackerHitObj instance
90  void unlink() { m_obj = nullptr; }
91 
92  bool operator==(const RawTrackerHit& other) const { return m_obj == other.m_obj; }
93  bool operator==(const ConstRawTrackerHit& other) const;
94 
95  // less comparison operator, so that objects can be e.g. stored in sets.
96  bool operator<(const RawTrackerHit& other) const { return m_obj < other.m_obj; }
97 
98  unsigned int id() const { return getObjectID().collectionID * 10000000 + getObjectID().index; }
99 
100  const podio::ObjectID getObjectID() const;
101 
102 private:
103  RawTrackerHitObj* m_obj;
104 };
105 
106 std::ostream& operator<<(std::ostream& o, const ConstRawTrackerHit& value);
107 
108 } // namespace eic
109 
110 
111 #endif
eic::operator<<
std::ostream & operator<<(std::ostream &o, const ConstBasicParticle &value)
Definition: BasicParticle.cc:102
eic::Index
Definition: Index.h:11
eic::RawTrackerHitObj
Definition: RawTrackerHitObj.h:18
eic::RawTrackerHitCollectionIterator
Definition: RawTrackerHitCollection.h:29
eic::RawTrackerHit::ConstRawTrackerHit
friend class ConstRawTrackerHit
Definition: RawTrackerHit.h:26
eic
Definition: BasicParticle.cc:13
RawTrackerHitObj.h
eic::RawTrackerHit::time
const std::int32_t & time() const
Access the tdc value.
Definition: RawTrackerHit.cc:53
eic::RawTrackerHit
Definition: RawTrackerHit.h:22
eic::ConstRawTrackerHit
Definition: RawTrackerHitConst.h:20
eic::RawTrackerHit::ID
const eic::Index & ID() const
Access the unique ID for this hit.
Definition: RawTrackerHit.cc:51
eic::RawTrackerHit::operator==
bool operator==(const RawTrackerHit &other) const
Definition: RawTrackerHit.h:92
eic::RawTrackerHit::~RawTrackerHit
~RawTrackerHit()
destructor
Definition: RawTrackerHit.cc:46
RawTrackerHitConst.h
eic::RawTrackerHit::charge
const std::int32_t & charge() const
Access the adc value.
Definition: RawTrackerHit.cc:54
eic::RawTrackerHit::operator<
bool operator<(const RawTrackerHit &other) const
Definition: RawTrackerHit.h:96
eic::RawTrackerHitCollection
Definition: RawTrackerHitCollection.h:76
eic::RawTrackerHit::getObjectID
const podio::ObjectID getObjectID() const
Definition: RawTrackerHit.cc:76
eic::RawTrackerHit::cellID
const std::int64_t & cellID() const
Access the The detector specific (geometrical) cell id.
Definition: RawTrackerHit.cc:52
eic::RawTrackerHit::isAvailable
bool isAvailable() const
check whether the object is actually available
Definition: RawTrackerHit.cc:69
Index.h
eic::RawTrackerHit::id
unsigned int id() const
Definition: RawTrackerHit.h:98
eic::RawTrackerHit::unlink
void unlink()
disconnect from RawTrackerHitObj instance
Definition: RawTrackerHit.h:90
eic::RawTrackerHit::RawTrackerHit
RawTrackerHit()
default constructor
Definition: RawTrackerHit.cc:16
eic::RawTrackerHit::operator=
RawTrackerHit & operator=(const RawTrackerHit &other)
copy-assignment operator
Definition: RawTrackerHit.cc:32
eic::RawTrackerHit::clone
RawTrackerHit clone() const
support cloning (deep-copy)
Definition: RawTrackerHit.cc:42