Go to the source code of this file.
|
| namespace | xAOD |
| | ICaloAffectedTool is abstract interface for tools checking if 4 mom is in calo affected region.
|
◆ IMPLEMENT_SETTER_GETTER
| #define IMPLEMENT_SETTER_GETTER |
( |
| DTYPE, |
|
|
| GETTER, |
|
|
| SETTER ) |
Value: DTYPE MuonSimHit_v1::GETTER() const { \
return acc(*this); \
} \
\
void MuonSimHit_v1::SETTER(DTYPE value) { \
}
SG::Accessor< T, ALLOC > Accessor
#define GETTER(_name_)
Macros for plotting.
Definition at line 20 of file xAODMuonSimHit_V1.cxx.
20#define IMPLEMENT_SETTER_GETTER( DTYPE, GETTER, SETTER) \
21 DTYPE MuonSimHit_v1::GETTER() const { \
22 static const SG::AuxElement::Accessor<DTYPE> acc{preFixStr + #GETTER}; \
23 return acc(*this); \
24 } \
25 \
26 void MuonSimHit_v1::SETTER(DTYPE value) { \
27 static const SG::AuxElement::Accessor<DTYPE> acc{preFixStr + #GETTER}; \
28 acc(*this) = value; \
29 }