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
52 MutableMCRecoTrackerHitAssociation(const float weight);
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
85
86 /// Set the reference to the digitized hit
87 void setRawHit(const edm4eic::RawTrackerHit& value);
88 /// Set the reference to the simulated hit
89 void setSimHit(const edm4hep::SimTrackerHit& value);
90
91
92
93
94 /// check whether the object is actually available
95 bool isAvailable() const;
96 /// disconnect from MCRecoTrackerHitAssociationObj instance
97 void unlink() { m_obj = podio::utils::MaybeSharedPtr<MCRecoTrackerHitAssociationObj>{nullptr}; }
98
99 constexpr bool operator==(const MutableMCRecoTrackerHitAssociation& other) const { return m_obj == other.m_obj; }
100 bool operator==(const MCRecoTrackerHitAssociation& other) const;
101
102 constexpr bool operator!=(const MutableMCRecoTrackerHitAssociation& other) const { return !(*this == other); }
103 bool operator!=(const MCRecoTrackerHitAssociation& other) const { return !(*this == other); }
104
105 // less comparison operator, so that objects can be e.g. stored in sets.
107
108 podio::ObjectID id() const { return getObjectID(); }
109
110 const podio::ObjectID getObjectID() const;
111
112 friend std::hash<MutableMCRecoTrackerHitAssociation>;
113
115 using std::swap;
116 swap(a.m_obj, b.m_obj); // swap out the internal pointers
117 }
118
119private:
120 /// constructor from existing MCRecoTrackerHitAssociationObj
121 explicit MutableMCRecoTrackerHitAssociation(podio::utils::MaybeSharedPtr<MCRecoTrackerHitAssociationObj> obj);
122
123 podio::utils::MaybeSharedPtr<MCRecoTrackerHitAssociationObj> m_obj{new MCRecoTrackerHitAssociationObj{}, podio::utils::MarkOwned};
124};
125
126#if defined(PODIO_JSON_OUTPUT) && !defined(__CLING__)
127void to_json(nlohmann::json& j, const MutableMCRecoTrackerHitAssociation& value);
128#endif
129
130
131} // namespace edm4eic
132
133
134
135template<>
136struct std::hash<edm4eic::MutableMCRecoTrackerHitAssociation> {
138 return std::hash<edm4eic::MCRecoTrackerHitAssociationObj*>{}(obj.m_obj.get());
139 }
140};
141
142
143#endif
Definition MCRecoTrackerHitAssociationCollection.h:139
Definition MCRecoTrackerHitAssociation.h:46
Definition MCRecoTrackerHitAssociationObj.h:24
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:73
bool operator!=(const MCRecoTrackerHitAssociation &other) const
Definition MutableMCRecoTrackerHitAssociation.h:103
MutableMCRecoTrackerHitAssociation()=default
default constructor
void setRawHit(const edm4eic::RawTrackerHit &value)
Set the reference to the digitized hit.
Definition MutableMCRecoTrackerHitAssociation.cc:59
MutableMCRecoTrackerHitAssociation & operator=(MutableMCRecoTrackerHitAssociation other) &&=delete
constexpr bool operator==(const MutableMCRecoTrackerHitAssociation &other) const
Definition MutableMCRecoTrackerHitAssociation.h:99
const edm4eic::RawTrackerHit getRawHit() const
Access the reference to the digitized hit.
Definition MutableMCRecoTrackerHitAssociation.cc:41
float getWeight() const
Access the weight of this association.
Definition MutableMCRecoTrackerHitAssociation.cc:39
constexpr bool operator!=(const MutableMCRecoTrackerHitAssociation &other) const
Definition MutableMCRecoTrackerHitAssociation.h:102
MutableMCRecoTrackerHitAssociation(const MutableMCRecoTrackerHitAssociation &other)=default
copy constructor
const podio::ObjectID getObjectID() const
Definition MutableMCRecoTrackerHitAssociation.cc:77
void setSimHit(const edm4hep::SimTrackerHit &value)
Set the reference to the simulated hit.
Definition MutableMCRecoTrackerHitAssociation.cc:63
const edm4hep::SimTrackerHit getSimHit() const
Access the reference to the simulated hit.
Definition MutableMCRecoTrackerHitAssociation.cc:48
podio::ObjectID id() const
Definition MutableMCRecoTrackerHitAssociation.h:108
friend class MCRecoTrackerHitAssociation
Definition MutableMCRecoTrackerHitAssociation.h:42
MutableMCRecoTrackerHitAssociation & operator=(MutableMCRecoTrackerHitAssociation other) &
copy-assignment operator
Definition MutableMCRecoTrackerHitAssociation.cc:24
void setWeight(const float weight)
Set the weight of this association.
Definition MutableMCRecoTrackerHitAssociation.cc:56
bool operator<(const MutableMCRecoTrackerHitAssociation &other) const
Definition MutableMCRecoTrackerHitAssociation.h:106
friend class MCRecoTrackerHitAssociationMutableCollectionIterator
Definition MutableMCRecoTrackerHitAssociation.h:41
MutableMCRecoTrackerHitAssociation clone(bool cloneRelations=true) const
Definition MutableMCRecoTrackerHitAssociation.cc:29
friend void swap(MutableMCRecoTrackerHitAssociation &a, MutableMCRecoTrackerHitAssociation &b)
Definition MutableMCRecoTrackerHitAssociation.h:114
void unlink()
disconnect from MCRecoTrackerHitAssociationObj instance
Definition MutableMCRecoTrackerHitAssociation.h:97
friend class MCRecoTrackerHitAssociationCollection
Definition MutableMCRecoTrackerHitAssociation.h:40
Definition MutableRawTrackerHit.h:33
Definition RawTrackerHit.h:41
Definition ArrowMapper.cc:61
Definition CalorimeterHit.h:25
OrderKey getOrderKey(const edm4eic::CalorimeterHit &obj)
Definition CalorimeterHit.cc:146
std::size_t operator()(const edm4eic::MutableMCRecoTrackerHitAssociation &obj) const
Definition MutableMCRecoTrackerHitAssociation.h:137