EDM4eic
EIC data model
Loading...
Searching...
No Matches
MutableMCRecoTrackerHitAssociation.h
Go to the documentation of this file.
1// AUTOMATICALLY GENERATED FILE - DO NOT EDIT
2
3#ifndef EDM4EIC_MutableMCRecoTrackerHitAssociation_H
4#define EDM4EIC_MutableMCRecoTrackerHitAssociation_H
5
7// Make the immutable class available from its mutable version but not vice versa
9
10
11#include "podio/utilities/MaybeSharedPtr.h"
12
13#include <cstdint>
14
15#if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
16#include "nlohmann/json_fwd.hpp"
17#endif
18
19// forward declarations
20namespace edm4eic {
22class RawTrackerHit;
24}
25namespace edm4hep {
26class SimTrackerHit;
27class MutableSimTrackerHit;
28}
29
30
31namespace edm4eic {
32
33
34/** @class MutableMCRecoTrackerHitAssociation
35 * Association between a RawTrackerHit and a SimTrackerHit
36 * @author: C. Dilks, W. Deconinck
37 */
39
43
44public:
47
48 /// default constructor
50
51 /// Constructor initializing all members
53
54 /// copy constructor
56
57 /// copy-assignment operator
58 MutableMCRecoTrackerHitAssociation& operator=(MutableMCRecoTrackerHitAssociation other) &; // Rebind this to other's internal object
59 MutableMCRecoTrackerHitAssociation& operator=(MutableMCRecoTrackerHitAssociation 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 MutableMCRecoTrackerHitAssociation clone(bool cloneRelations=true) const;
64
65 /// destructor
67
68
69public:
70
71 /// Access the weight of this association
72 float getWeight() const;
73
74
75 /// Access the reference to the digitized hit
77 /// Access the reference to the simulated hit
78 const edm4hep::SimTrackerHit getSimHit() const;
79
80 /// Set the weight of this association
81 void setWeight(const float weight);
82 /// Get mutable reference to weight of this association
83 float& getWeight();
84 /// Get reference to weight of this association
85 [[deprecated("use getWeight instead")]]
86 float& weight();
87
88
89 /// Set the reference to the digitized hit
90 void setRawHit(const edm4eic::RawTrackerHit& value);
91 /// Set the reference to the simulated hit
92 void setSimHit(const edm4hep::SimTrackerHit& value);
93
94
95
96
97 /// check whether the object is actually available
98 bool isAvailable() const;
99 /// disconnect from MCRecoTrackerHitAssociationObj instance
100 void unlink() { m_obj = podio::utils::MaybeSharedPtr<MCRecoTrackerHitAssociationObj>{nullptr}; }
101
102 bool operator==(const MutableMCRecoTrackerHitAssociation& other) const { return m_obj == other.m_obj; }
103 bool operator==(const MCRecoTrackerHitAssociation& other) const;
104
105 bool operator!=(const MutableMCRecoTrackerHitAssociation& other) const { return !(*this == other); }
106 bool operator!=(const MCRecoTrackerHitAssociation& other) const { return !(*this == other); }
107
108 // less comparison operator, so that objects can be e.g. stored in sets.
110
111 podio::ObjectID id() const { return getObjectID(); }
112
113 const podio::ObjectID getObjectID() const;
114
115 friend std::hash<MutableMCRecoTrackerHitAssociation>;
116
118 using std::swap;
119 swap(a.m_obj, b.m_obj); // swap out the internal pointers
120 }
121
122private:
123 /// constructor from existing MCRecoTrackerHitAssociationObj
124 explicit MutableMCRecoTrackerHitAssociation(podio::utils::MaybeSharedPtr<MCRecoTrackerHitAssociationObj> obj);
125
126 podio::utils::MaybeSharedPtr<MCRecoTrackerHitAssociationObj> m_obj{nullptr};
127};
128
129#if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
130void to_json(nlohmann::json& j, const MutableMCRecoTrackerHitAssociation& value);
131#endif
132
133
134} // namespace edm4eic
135
136
137
138template<>
139struct std::hash<edm4eic::MutableMCRecoTrackerHitAssociation> {
141 return std::hash<edm4eic::MCRecoTrackerHitAssociationObj*>{}(obj.m_obj.get());
142 }
143};
144
145
146#endif
Definition MCRecoTrackerHitAssociationCollection.h:137
Definition MCRecoTrackerHitAssociation.h:46
Definition MutableMCRecoTrackerHitAssociation.h:38
MCRecoTrackerHitAssociation object_type
Definition MutableMCRecoTrackerHitAssociation.h:45
MCRecoTrackerHitAssociationCollection collection_type
Definition MutableMCRecoTrackerHitAssociation.h:46
~MutableMCRecoTrackerHitAssociation()=default
destructor
bool isAvailable() const
check whether the object is actually available
Definition MutableMCRecoTrackerHitAssociation.cc:78
bool operator!=(const MCRecoTrackerHitAssociation &other) const
Definition MutableMCRecoTrackerHitAssociation.h:106
void setRawHit(const edm4eic::RawTrackerHit &value)
Set the reference to the digitized hit.
Definition MutableMCRecoTrackerHitAssociation.cc:64
MutableMCRecoTrackerHitAssociation & operator=(MutableMCRecoTrackerHitAssociation other) &&=delete
const edm4eic::RawTrackerHit getRawHit() const
Access the reference to the digitized hit.
Definition MutableMCRecoTrackerHitAssociation.cc:45
float getWeight() const
Access the weight of this association.
Definition MutableMCRecoTrackerHitAssociation.cc:43
MutableMCRecoTrackerHitAssociation(const MutableMCRecoTrackerHitAssociation &other)=default
copy constructor
const podio::ObjectID getObjectID() const
Definition MutableMCRecoTrackerHitAssociation.cc:82
void setSimHit(const edm4hep::SimTrackerHit &value)
Set the reference to the simulated hit.
Definition MutableMCRecoTrackerHitAssociation.cc:68
const edm4hep::SimTrackerHit getSimHit() const
Access the reference to the simulated hit.
Definition MutableMCRecoTrackerHitAssociation.cc:52
podio::ObjectID id() const
Definition MutableMCRecoTrackerHitAssociation.h:111
friend class MCRecoTrackerHitAssociation
Definition MutableMCRecoTrackerHitAssociation.h:42
MutableMCRecoTrackerHitAssociation & operator=(MutableMCRecoTrackerHitAssociation other) &
copy-assignment operator
Definition MutableMCRecoTrackerHitAssociation.cc:28
void setWeight(const float weight)
Set the weight of this association.
Definition MutableMCRecoTrackerHitAssociation.cc:60
MutableMCRecoTrackerHitAssociation()
default constructor
Definition MutableMCRecoTrackerHitAssociation.cc:20
bool operator<(const MutableMCRecoTrackerHitAssociation &other) const
Definition MutableMCRecoTrackerHitAssociation.h:109
friend class MCRecoTrackerHitAssociationMutableCollectionIterator
Definition MutableMCRecoTrackerHitAssociation.h:41
bool operator!=(const MutableMCRecoTrackerHitAssociation &other) const
Definition MutableMCRecoTrackerHitAssociation.h:105
MutableMCRecoTrackerHitAssociation clone(bool cloneRelations=true) const
Definition MutableMCRecoTrackerHitAssociation.cc:33
bool operator==(const MutableMCRecoTrackerHitAssociation &other) const
Definition MutableMCRecoTrackerHitAssociation.h:102
float & weight()
Get reference to weight of this association.
Definition MutableMCRecoTrackerHitAssociation.cc:62
friend void swap(MutableMCRecoTrackerHitAssociation &a, MutableMCRecoTrackerHitAssociation &b)
Definition MutableMCRecoTrackerHitAssociation.h:117
void unlink()
disconnect from MCRecoTrackerHitAssociationObj instance
Definition MutableMCRecoTrackerHitAssociation.h:100
friend class MCRecoTrackerHitAssociationCollection
Definition MutableMCRecoTrackerHitAssociation.h:40
Definition MutableRawTrackerHit.h:33
Definition RawTrackerHit.h:41
Definition CalorimeterHit.cc:17
Definition CalorimeterHit.h:25
OrderKey getOrderKey(const edm4eic::CalorimeterHit &obj)
Definition CalorimeterHit.cc:150
std::size_t operator()(const edm4eic::MutableMCRecoTrackerHitAssociation &obj) const
Definition MutableMCRecoTrackerHitAssociation.h:140