|
ATLAS Offline Software
|
Implementation for the ITrigEMClusterCnvTool interface.
More...
#include <TrigEMClusterCnvTool.h>
|
| TrigEMClusterCnvTool (const std::string &type, const std::string &name, const IInterface *parent) |
| Regular AlgTool constructor. More...
|
|
virtual StatusCode | convert (const TrigEMClusterContainer *aod, xAOD::TrigEMClusterContainer *xaod) const override |
| Function that fills an existing xAOD::TrigEMCluster. More...
|
|
ServiceHandle< StoreGateSvc > & | evtStore () |
| The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc . More...
|
|
const ServiceHandle< StoreGateSvc > & | evtStore () const |
| The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc . More...
|
|
const ServiceHandle< StoreGateSvc > & | detStore () const |
| The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc . More...
|
|
virtual StatusCode | sysInitialize () override |
| Perform system initialization for an algorithm. More...
|
|
virtual StatusCode | sysStart () override |
| Handle START transition. More...
|
|
virtual std::vector< Gaudi::DataHandle * > | inputHandles () const override |
| Return this algorithm's input handles. More...
|
|
virtual std::vector< Gaudi::DataHandle * > | outputHandles () const override |
| Return this algorithm's output handles. More...
|
|
Gaudi::Details::PropertyBase & | declareProperty (Gaudi::Property< T > &t) |
|
Gaudi::Details::PropertyBase * | declareProperty (const std::string &name, SG::VarHandleKey &hndl, const std::string &doc, const SG::VarHandleKeyType &) |
| Declare a new Gaudi property. More...
|
|
Gaudi::Details::PropertyBase * | declareProperty (const std::string &name, SG::VarHandleBase &hndl, const std::string &doc, const SG::VarHandleType &) |
| Declare a new Gaudi property. More...
|
|
Gaudi::Details::PropertyBase * | declareProperty (const std::string &name, SG::VarHandleKeyArray &hndArr, const std::string &doc, const SG::VarHandleKeyArrayType &) |
|
Gaudi::Details::PropertyBase * | declareProperty (const std::string &name, T &property, const std::string &doc, const SG::NotHandleType &) |
| Declare a new Gaudi property. More...
|
|
Gaudi::Details::PropertyBase * | declareProperty (const std::string &name, T &property, const std::string &doc="none") |
| Declare a new Gaudi property. More...
|
|
void | updateVHKA (Gaudi::Details::PropertyBase &) |
|
MsgStream & | msg () const |
|
MsgStream & | msg (const MSG::Level lvl) const |
|
bool | msgLvl (const MSG::Level lvl) const |
|
Implementation for the ITrigEMClusterCnvTool interface.
This is a simple tool that implements the converter function
defined in ITrigEMClusterCnvTool.
- Author
- Arantxa Ruiz Martinez aranz.nosp@m.azu..nosp@m.ruiz..nosp@m.mart.nosp@m.inez@.nosp@m.cern.nosp@m..ch
- Revision
- 785764
- Date
- 2016-11-22 16:40:18 +0100 (Tue, 22 Nov 2016)
Definition at line 29 of file TrigEMClusterCnvTool.h.
◆ StoreGateSvc_t
◆ TrigEMClusterCnvTool()
xAODMaker::TrigEMClusterCnvTool::TrigEMClusterCnvTool |
( |
const std::string & |
type, |
|
|
const std::string & |
name, |
|
|
const IInterface * |
parent |
|
) |
| |
Regular AlgTool constructor.
Definition at line 17 of file TrigEMClusterCnvTool.cxx.
23 declareInterface< ITrigEMClusterCnvTool >(
this );
◆ convert()
Function that fills an existing xAOD::TrigEMCluster.
This is the important function of the tool.
It takes the TrigEMCluster object from a TrigEMCluster container, and fills an xAOD::TrigEMCluster with it.
- Parameters
-
aod | The AOD object to take the TrigEMCluster from |
xaod | The xAOD object to fill with information |
- Returns
StatusCode::SUCCESS
if all went fine, something else if not
Implements xAODMaker::ITrigEMClusterCnvTool.
Definition at line 36 of file TrigEMClusterCnvTool.cxx.
43 const unsigned int samplings = 25;
49 for( ; aod_itr != aod_end; ++aod_itr ) {
56 cluster->
setRawEt ( ( *aod_itr )->rawEt() );
57 cluster->
setRawEta ( ( *aod_itr )->rawEta() );
58 cluster->
setRawPhi ( ( *aod_itr )->rawPhi() );
59 cluster->
setRoIword ( ( *aod_itr )->RoIword() );
60 cluster->
setNCells ( ( *aod_itr )->nCells() );
63 cluster->
setEnergy ( ( *aod_itr )->energy() );
64 cluster->
setEt ( ( *aod_itr )->et() );
65 cluster->
setEta ( ( *aod_itr )->eta() );
66 cluster->
setPhi ( ( *aod_itr )->phi() );
67 cluster->
setE237 ( ( *aod_itr )->e237() );
68 cluster->
setE277 ( ( *aod_itr )->e277() );
69 cluster->
setFracs1 ( ( *aod_itr )->fracs1() );
70 cluster->
setWeta2 ( ( *aod_itr )->weta2() );
71 cluster->
setEhad1 ( ( *aod_itr )->ehad1() );
72 cluster->
setEta1 ( ( *aod_itr )->Eta1() );
73 cluster->
setEmaxs1 ( ( *aod_itr )->emaxs1() );
74 cluster->
setE2tsts1( ( *aod_itr )->e2tsts1() );
75 cluster->
setE233 ( ( *aod_itr )->e233() );
76 cluster->
setWstot ( ( *aod_itr )->wstot() );
78 for(
unsigned int i = 0;
i < samplings; ++
i ) {
81 const float rawValue = ( *aod_itr )->rawEnergy(
sample );
94 << ( *aod_itr )->rawEnergy() <<
"; "
96 << ( *aod_itr )->rawEt() <<
"; "
98 << ( *aod_itr )->rawEta() <<
"; "
100 << ( *aod_itr )->rawPhi() <<
"; "
101 << std::hex <<
"m_roiWord: 0x"
102 << ( *aod_itr )->RoIword() <<
"; " << std::dec
103 <<
"numberUsedCells: "
104 << ( *aod_itr )->nCells() <<
"; "
106 << ( *aod_itr )->quality() <<
";" );
109 for(
unsigned int i = 0;
i < samplings; ++
i ) {
115 << ( *aod_itr )->rawEnergy(
sample ) <<
";" );
120 << ( *aod_itr )->energy() <<
"; "
122 << ( *aod_itr )->et() <<
"; "
124 << ( *aod_itr )->eta() <<
"; "
126 << ( *aod_itr )->phi() <<
"; "
128 << ( *aod_itr )->e237() <<
"; "
130 << ( *aod_itr )->e277() <<
"; "
132 << ( *aod_itr )->fracs1() <<
"; "
134 << ( *aod_itr )->weta2() <<
"; "
136 << ( *aod_itr )->ehad1() <<
"; "
138 << ( *aod_itr )->Eta1() <<
"; "
140 << ( *aod_itr )->emaxs1() <<
"; "
142 << ( *aod_itr )->e2tsts1() <<
"; "
144 << ( *aod_itr )->e233() <<
"; "
146 << ( *aod_itr )->wstot() );
149 for(
unsigned int i = 0;
i < samplings; ++
i ) {
155 << ( *aod_itr )->energy(
sample ) <<
";" );
165 return StatusCode::SUCCESS;
◆ declareGaudiProperty() [1/4]
specialization for handling Gaudi::Property<SG::VarHandleKeyArray>
Definition at line 170 of file AthCommonDataStore.h.
175 hndl.documentation());
◆ declareGaudiProperty() [2/4]
specialization for handling Gaudi::Property<SG::VarHandleKey>
Definition at line 156 of file AthCommonDataStore.h.
161 hndl.documentation());
◆ declareGaudiProperty() [3/4]
specialization for handling Gaudi::Property<SG::VarHandleBase>
Definition at line 184 of file AthCommonDataStore.h.
189 hndl.documentation());
◆ declareGaudiProperty() [4/4]
◆ declareProperty() [1/6]
Declare a new Gaudi property.
- Parameters
-
name | Name of the property. |
hndl | Object holding the property value. |
doc | Documentation string for the property. |
This is the version for types that derive from SG::VarHandleBase
. The property value object is put on the input and output lists as appropriate; then we forward to the base class.
Definition at line 245 of file AthCommonDataStore.h.
250 this->declare(hndl.
vhKey());
251 hndl.
vhKey().setOwner(
this);
253 return PBASE::declareProperty(
name,hndl,
doc);
◆ declareProperty() [2/6]
Declare a new Gaudi property.
- Parameters
-
name | Name of the property. |
hndl | Object holding the property value. |
doc | Documentation string for the property. |
This is the version for types that derive from SG::VarHandleKey
. The property value object is put on the input and output lists as appropriate; then we forward to the base class.
Definition at line 221 of file AthCommonDataStore.h.
229 return PBASE::declareProperty(
name,hndl,
doc);
◆ declareProperty() [3/6]
◆ declareProperty() [4/6]
Declare a new Gaudi property.
- Parameters
-
name | Name of the property. |
property | Object holding the property value. |
doc | Documentation string for the property. |
This is the generic version, for types that do not derive from SG::VarHandleKey
. It just forwards to the base class version of declareProperty
.
Definition at line 333 of file AthCommonDataStore.h.
338 return PBASE::declareProperty(
name, property,
doc);
◆ declareProperty() [5/6]
Declare a new Gaudi property.
- Parameters
-
name | Name of the property. |
property | Object holding the property value. |
doc | Documentation string for the property. |
This dispatches to either the generic declareProperty
or the one for VarHandle/Key/KeyArray.
Definition at line 352 of file AthCommonDataStore.h.
◆ declareProperty() [6/6]
◆ detStore()
◆ evtStore() [1/2]
◆ evtStore() [2/2]
◆ extraDeps_update_handler()
Add StoreName to extra input/output deps as needed.
use the logic of the VarHandleKey to parse the DataObjID keys supplied via the ExtraInputs and ExtraOuputs Properties to add the StoreName if it's not explicitly given
◆ inputHandles()
Return this algorithm's input handles.
We override this to include handle instances from key arrays if they have not yet been declared. See comments on updateVHKA.
◆ interfaceID()
static const InterfaceID& xAODMaker::ITrigEMClusterCnvTool::interfaceID |
( |
| ) |
|
|
inlinestaticinherited |
◆ msg() [1/2]
◆ msg() [2/2]
◆ msgLvl()
◆ outputHandles()
Return this algorithm's output handles.
We override this to include handle instances from key arrays if they have not yet been declared. See comments on updateVHKA.
◆ renounce()
◆ renounceArray()
◆ sysInitialize()
◆ sysStart()
Handle START transition.
We override this in order to make sure that conditions handle keys can cache a pointer to the conditions container.
◆ updateVHKA()
◆ m_detStore
◆ m_evtStore
◆ m_varHandleArraysDeclared
◆ m_vhka
The documentation for this class was generated from the following files:
void setRawPhi(float)
set Raw Phi (no calibration)
void setEta(float)
set Eta (calibrated)
Const iterator class for DataVector/DataList.
void setE237(float)
set Energy in a 3x7 cluster (no calibration) around hottest cell
void setEnergy(float energy)
set Energy (calibrated)
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T > &t)
void setRawEt(float)
set Raw Et (no calibration)
void setE233(float)
set Energy in a 3x3 cluster (no calibration) around hottest cell
void setEhad1(float)
set hadronic Energy (first hadronic layer)
StoreGateSvc_t m_evtStore
Pointer to StoreGate (event store by default)
std::vector< SG::VarHandleKeyArray * > m_vhka
void setRawEta(float)
set Raw Eta (no calibration)
void setE277(float)
set Energy in a 7x7 cluster (no calibration) around hottest cell
void setPhi(float)
set Phi (calibrated)
virtual void setOwner(IDataHandleHolder *o)=0
void setEmaxs1(float)
set maximum energy in sampling 1 (strip layer)
TrigEMCluster_v1 TrigEMCluster
Define the latest version of the trigger EM cluster class.
void setE2tsts1(float)
set second maximum energy in sampling 1 (strip layer)
void setWeta2(float)
set cluster width (based on a 3x5 cluster - 2nd layer)
StoreGateSvc_t m_detStore
Pointer to StoreGate (detector store by default)
void setFracs1(float)
set Energy in a 7 strips (around hottest strip) minus energy in 3 strips divided by energy in 3 strip...
void setEta1(float)
set Eta sampling 1 (strip layer)
virtual void renounce()=0
std::conditional< std::is_base_of< SG::VarHandleKeyArray, T >::value, VarHandleKeyArrayType, type2 >::type type
void setRoIword(long)
set RoI Word
value_type push_back(value_type pElem)
Add an element to the end of the collection.
void setNCells(int)
set number of cells used from RoI
const_iterator end() const noexcept
Return a const_iterator pointing past the end of the collection.
#define ATH_MSG_WARNING(x)
void setRawEnergy(float)
set Raw Energy (no calibration)
void setEt(float)
set Et (calibrated)
SG::VarHandleKey & vhKey()
Return a non-const reference to the HandleKey.
void setWstot(float)
set width in first layer
static std::string getSamplingName(CaloSample theSample)
Returns a string (name) for each CaloSampling.
void setClusterQuality(unsigned int)
set quality of cluster built (to be defined)
Description of a trigger EM cluster.
size_type size() const noexcept
Returns the number of elements in the collection.
Gaudi::Details::PropertyBase & declareGaudiProperty(Gaudi::Property< T > &hndl, const SG::VarHandleKeyType &)
specialization for handling Gaudi::Property<SG::VarHandleKey>
const_iterator begin() const noexcept
Return a const_iterator pointing at the beginning of the collection.