ATLAS Offline Software
Loading...
Searching...
No Matches
CaloClusterMaker Class Reference

Top algorithm to reconstruct CaloCluster objects from CaloCell objects. More...

#include <CaloClusterMaker.h>

Inheritance diagram for CaloClusterMaker:
Collaboration diagram for CaloClusterMaker:

Public Member Functions

 CaloClusterMaker (const std::string &name, ISvcLocator *pSvcLocator)
virtual ~CaloClusterMaker () override
virtual StatusCode initialize () override
virtual StatusCode execute (const EventContext &ctx) const override
virtual StatusCode finalize () override
const std::string & getOutputContainerName () const
virtual StatusCode sysInitialize () override
 Override sysInitialize.
virtual bool isClonable () const override
 Specify if the algorithm is clonable.
virtual unsigned int cardinality () const override
 Cardinality (Maximum number of clones that can exist) special value 0 means that algorithm is reentrant.
virtual StatusCode sysExecute (const EventContext &ctx) override
 Execute an algorithm.
virtual const DataObjIDColl & extraOutputDeps () const override
 Return the list of extra output dependencies.
virtual bool filterPassed (const EventContext &ctx) const
virtual void setFilterPassed (bool state, const EventContext &ctx) const
ServiceHandle< StoreGateSvc > & evtStore ()
 The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc.
const ServiceHandle< StoreGateSvc > & detStore () const
 The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc.
virtual StatusCode sysStart () override
 Handle START transition.
virtual std::vector< Gaudi::DataHandle * > inputHandles () const override
 Return this algorithm's input handles.
virtual std::vector< Gaudi::DataHandle * > outputHandles () const override
 Return this algorithm's output handles.
Gaudi::Details::PropertyBase & declareProperty (Gaudi::Property< T, V, H > &t)
void updateVHKA (Gaudi::Details::PropertyBase &)
MsgStream & msg () const
bool msgLvl (const MSG::Level lvl) const

Protected Member Functions

void renounceArray (SG::VarHandleKeyArray &handlesArray)
 remove all handles from I/O resolution
std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&T::renounce)(T)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, T > &&std::is_base_of_v< Gaudi::DataHandle, T >, void > renounce (T &h)
void extraDeps_update_handler (Gaudi::Details::PropertyBase &ExtraDeps)
 Add StoreName to extra input/output deps as needed.

Private Types

typedef ServiceHandle< StoreGateSvcStoreGateSvc_t

Private Member Functions

StatusCode makeContainer ()
 Method to create a CaloClusterContainer together with it's AuxStore and Link container.
Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
 specialization for handling Gaudi::Property<SG::VarHandleKey>

Private Attributes

SG::WriteHandleKey< xAOD::CaloClusterContainerm_clusterOutput
 the name of the key in StoreGate for the output CaloClusterContainer
SG::WriteHandleKey< CaloClusterCellLinkContainerm_clusterCellLinkOutput
 the name of the key in StoreGate for the output CaloClusterCellLinkContainer
ToolHandleArray< CaloClusterCollectionProcessorm_clusterMakerTools
 a list of names for tools to make clusters
ToolHandleArray< CaloClusterCollectionProcessorm_clusterCorrectionTools
 the actual list of tools corresponding to above names
ServiceHandle< IChronoStatSvc > m_chrono
bool m_saveSignalState
 controls saving the uncalibrated signal state just before the first CaloClusterCorrectionTool is invoked.
bool m_chronoTools
 Use ChronotStatSvc to monitor each tool.
Gaudi::Property< bool > m_writeTriggerSpecificInfo {this, "WriteTriggerSpecificInfo", false, "Write some trigger-specific decorations and use the trigger auxiliary container."}
 If true, writes some trigger-specific decorations.
SG::WriteDecorHandleKey< xAOD::CaloClusterContainerm_mDecor_ncells {this, "Decor_ncells", "nCells", "Decorator containing the number of cells associated to a cluster"}
 Key to the handle for writing the number of cells as a decoration.
DataObjIDColl m_extendedExtraObjects
 Extra output dependency collection, extended by AthAlgorithmDHUpdate to add symlinks.
StoreGateSvc_t m_evtStore
 Pointer to StoreGate (event store by default)
StoreGateSvc_t m_detStore
 Pointer to StoreGate (detector store by default)
std::vector< SG::VarHandleKeyArray * > m_vhka
bool m_varHandleArraysDeclared

Detailed Description

Top algorithm to reconstruct CaloCluster objects from CaloCell objects.

Version
$Id: CaloClusterMaker.h,v 1.13 2009-04-18 02:56:15 ssnyder Exp $
Author
Sven Menke menke.nosp@m.@mpp.nosp@m.mu.mp.nosp@m.g.de
Date
26-April-2004

This class is an Algorithm to reconstruct objects of type CaloCluster from a collection of CaloCell objects. The actual clustering is performed by tools which can be specified in the jobOptions. Only one CaloClusterContainer is created and all tools will modify that container. The top algorithm is responsible for recording and locking the cluster container in StoreGate. Two types of tools are supported: maker tools and correction tools. The former modify the entire cluster container, the latter just single clusters.

Definition at line 37 of file CaloClusterMaker.h.

Member Typedef Documentation

◆ StoreGateSvc_t

typedef ServiceHandle<StoreGateSvc> AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::StoreGateSvc_t
privateinherited

Definition at line 388 of file AthCommonDataStore.h.

Constructor & Destructor Documentation

◆ CaloClusterMaker()

CaloClusterMaker::CaloClusterMaker ( const std::string & name,
ISvcLocator * pSvcLocator )

Definition at line 50 of file CaloClusterMaker.cxx.

52 : AthReentrantAlgorithm(name, pSvcLocator)
53 , m_clusterOutput("")
57 , m_chrono("ChronoStatSvc", name)
58 , m_saveSignalState(true)
59 , m_chronoTools(false)
60{
61
62 // Name of Cluster Container to be registered in TDS
63 declareProperty("ClustersOutputName",m_clusterOutput);
64 declareProperty("ClusterCellLinkOutputName",m_clusterCellLinkOutput);
65
66 // Name(s) of Cluster Maker Tools
67 declareProperty("ClusterMakerTools",m_clusterMakerTools);
68
69 // Name(s) of Cluster Correction Tools
70 declareProperty("ClusterCorrectionTools",m_clusterCorrectionTools);
71
72 // Name(s) of Cluster Correction Tools (even field) to trigger the
73 // recording of the current cluster container in StoreGate before
74 // its execution and the corresponding container name(s) (odd
75 // fields). This property and KeepEachCorrection are mutually
76 // exclusive
77 //declareProperty("KeepCorrectionToolAndContainerNames", m_keepCorrectionToolAndContainerNames);
78
79 // save uncalibrated cluster signal state
80 declareProperty("SaveUncalibratedSignalState",m_saveSignalState);
81
82 //Make Chrono Auditors for Cluster maker and correction tools
83 declareProperty("ChronoTools", m_chronoTools);
84}
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T, V, H > &t)
ToolHandleArray< CaloClusterCollectionProcessor > m_clusterCorrectionTools
the actual list of tools corresponding to above names
bool m_chronoTools
Use ChronotStatSvc to monitor each tool.
SG::WriteHandleKey< xAOD::CaloClusterContainer > m_clusterOutput
the name of the key in StoreGate for the output CaloClusterContainer
bool m_saveSignalState
controls saving the uncalibrated signal state just before the first CaloClusterCorrectionTool is invo...
ToolHandleArray< CaloClusterCollectionProcessor > m_clusterMakerTools
a list of names for tools to make clusters
SG::WriteHandleKey< CaloClusterCellLinkContainer > m_clusterCellLinkOutput
the name of the key in StoreGate for the output CaloClusterCellLinkContainer
ServiceHandle< IChronoStatSvc > m_chrono

◆ ~CaloClusterMaker()

CaloClusterMaker::~CaloClusterMaker ( )
overridevirtualdefault

Member Function Documentation

◆ cardinality()

unsigned int AthCommonReentrantAlgorithm< Gaudi::Algorithm >::cardinality ( ) const
overridevirtualinherited

Cardinality (Maximum number of clones that can exist) special value 0 means that algorithm is reentrant.

Override this to return 0 for reentrant algorithms.

Definition at line 75 of file AthCommonReentrantAlgorithm.cxx.

64{
65 return 0;
66}

◆ declareGaudiProperty()

Gaudi::Details::PropertyBase & AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::declareGaudiProperty ( Gaudi::Property< T, V, H > & hndl,
const SG::VarHandleKeyType &  )
inlineprivateinherited

specialization for handling Gaudi::Property<SG::VarHandleKey>

Definition at line 156 of file AthCommonDataStore.h.

158 {
160 hndl.value(),
161 hndl.documentation());
162
163 }

◆ declareProperty()

Gaudi::Details::PropertyBase & AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::declareProperty ( Gaudi::Property< T, V, H > & t)
inlineinherited

Definition at line 145 of file AthCommonDataStore.h.

145 {
146 typedef typename SG::HandleClassifier<T>::type htype;
148 }
Gaudi::Details::PropertyBase & declareGaudiProperty(Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
specialization for handling Gaudi::Property<SG::VarHandleKey>

◆ detStore()

const ServiceHandle< StoreGateSvc > & AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::detStore ( ) const
inlineinherited

The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc.

Definition at line 95 of file AthCommonDataStore.h.

◆ evtStore()

ServiceHandle< StoreGateSvc > & AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::evtStore ( )
inlineinherited

The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc.

Definition at line 85 of file AthCommonDataStore.h.

◆ execute()

StatusCode CaloClusterMaker::execute ( const EventContext & ctx) const
overridevirtual

Definition at line 141 of file CaloClusterMaker.cxx.

142{
143
144 // make a Cluster Container
145 SG::WriteHandle<xAOD::CaloClusterContainer> clusColl (m_clusterOutput, ctx);
146
148 ATH_CHECK( clusColl.record(std::make_unique<xAOD::CaloClusterContainer>(),
149 std::make_unique<xAOD::CaloClusterTrigAuxContainer>()) );
150 }
151 else {
153 }
154
155 ToolHandleArray<CaloClusterCollectionProcessor>::const_iterator toolIt, toolIt_e; //Iterators over Tool handles
156 toolIt=m_clusterMakerTools.begin();
157 toolIt_e=m_clusterMakerTools.end();
158
159 //Make Clusters: Execute each maker tool
160 //for (CaloClusterCollectionProcessor& tool : m_clusterMakerTools) { //Doesn't work because CaloClusterCollectionProcessor is a base class
161 for(;toolIt!=toolIt_e;++toolIt) {
162 const std::string chronoName = this->name() + "_" +toolIt->name();
163 if (m_chronoTools) m_chrono->chronoStart(chronoName);
164 ATH_CHECK((*toolIt)->execute(ctx, clusColl.ptr()));
165 if (m_chronoTools) m_chrono->chronoStop(chronoName);
166 } //End loop over maker tools
167
168 // PL set calibrated state
169 if ( m_saveSignalState ) {
170 //Fixme: Maybe this loop would auto-vectorize breaking into four separate loops for each quantity
171 for (xAOD::CaloCluster* fClus : *clusColl) {
172 ATH_MSG_DEBUG( "found cluster with state "<< fClus->signalState());
173 fClus->setRawE(fClus->calE());
174 fClus->setRawEta(fClus->calEta());
175 fClus->setRawPhi(fClus->calPhi());
176 fClus->setRawM(fClus->calM());
177 }//end loop over clusters
178 }
179
180
181 //Apply corrections: Exectue each correction tool
182 //for (CaloClusterCollectionProcessor* tool : m_clusterCorrectionTools) { //Doesn't work because CaloClusterCollectionProcessor is a base class
183 toolIt=m_clusterCorrectionTools.begin();
184 toolIt_e=m_clusterCorrectionTools.end();
185 for(;toolIt!=toolIt_e;++toolIt) {
186 const std::string& toolname=(*toolIt).name();
187
188 ATH_MSG_DEBUG(" Applying correction = " << toolname);
189 const std::string chronoName = this->name() + "_" + toolname;
190 if (m_chronoTools) m_chrono->chronoStart(chronoName);
191 ATH_CHECK((*toolIt)->execute(ctx, clusColl.ptr()));
192 if (m_chronoTools) m_chrono->chronoStop(chronoName);
193 }//End loop over correction tools
194
196 SG::WriteDecorHandle<xAOD::CaloClusterContainer, int> decor_handle(m_mDecor_ncells, ctx);
197
198 for (const xAOD::CaloCluster * cl : *clusColl) {
199 const CaloClusterCellLink * cell_links = cl->getCellLinks();
200 if (!cell_links) {
201 decor_handle(*cl) = 0;
202 }
203 else {
204 decor_handle(*cl) = cell_links->size();
205 }
206 }
207 }
208
209 ATH_MSG_DEBUG("Created cluster container with " << clusColl->size() << " clusters");
210 SG::WriteHandle<CaloClusterCellLinkContainer> cellLinks (m_clusterCellLinkOutput, ctx);
212 clusColl.ptr()));
213
214 return StatusCode::SUCCESS;
215}
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_DEBUG(x)
Gaudi::Property< bool > m_writeTriggerSpecificInfo
If true, writes some trigger-specific decorations.
SG::WriteDecorHandleKey< xAOD::CaloClusterContainer > m_mDecor_ncells
Key to the handle for writing the number of cells as a decoration.
static StatusCode AddContainerWriteHandle(SG::WriteHandle< xAOD::CaloClusterContainer > &clusColl)
Creates a new xAOD::CaloClusterContainer in the given WriteHandle + CaloClusterAuxContainer and recor...
static StatusCode finalizeClusters(SG::WriteHandle< CaloClusterCellLinkContainer > &h, xAOD::CaloClusterContainer *pClusterColl)
Finalize clusters (move CaloClusterCellLink to a separate container).
cl
print [x.__class__ for x in toList(dqregion.getSubRegions()) ]
CaloCluster_v1 CaloCluster
Define the latest version of the calorimeter cluster class.

◆ extraDeps_update_handler()

void AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::extraDeps_update_handler ( Gaudi::Details::PropertyBase & ExtraDeps)
protectedinherited

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

◆ extraOutputDeps()

const DataObjIDColl & AthCommonReentrantAlgorithm< Gaudi::Algorithm >::extraOutputDeps ( ) const
overridevirtualinherited

Return the list of extra output dependencies.

This list is extended to include symlinks implied by inheritance relations.

Definition at line 94 of file AthCommonReentrantAlgorithm.cxx.

90{
91 // If we didn't find any symlinks to add, just return the collection
92 // from the base class. Otherwise, return the extended collection.
93 if (!m_extendedExtraObjects.empty()) {
95 }
97}
An algorithm that can be simultaneously executed in multiple threads.

◆ filterPassed()

virtual bool AthCommonReentrantAlgorithm< Gaudi::Algorithm >::filterPassed ( const EventContext & ctx) const
inlinevirtualinherited

Definition at line 96 of file AthCommonReentrantAlgorithm.h.

96 {
97 return execState( ctx ).filterPassed();
98 }
virtual bool filterPassed(const EventContext &ctx) const

◆ finalize()

StatusCode CaloClusterMaker::finalize ( )
overridevirtual

Definition at line 135 of file CaloClusterMaker.cxx.

135 {
136 return StatusCode::SUCCESS;
137}

◆ getOutputContainerName()

const std::string & CaloClusterMaker::getOutputContainerName ( ) const

Definition at line 218 of file CaloClusterMaker.cxx.

218 {
219 return m_clusterOutput.key();
220}

◆ initialize()

StatusCode CaloClusterMaker::initialize ( )
overridevirtual

Definition at line 93 of file CaloClusterMaker.cxx.

94{
95
96
97 if (m_clusterMakerTools.retrieve().isFailure()) {
98 ATH_MSG_ERROR("Failed to retrieve maker ToolHandleArray "
100 } else {
101 ATH_MSG_DEBUG("Successfully retrieved maker ToolHandleArray "
103 }
104
105 if (m_clusterCorrectionTools.retrieve().isFailure()) {
106 ATH_MSG_ERROR("Failed to retrieve correction ToolHandleArray "
108 } else {
109 ATH_MSG_DEBUG("Successfully retrieved correction ToolHandleArray "
111 }
112
113 if (m_chronoTools) {
114 msg(MSG::INFO) << "Will use ChronoStatSvc to monitor ClusterMaker and ClusterCorrection tools" << endmsg;
115 ATH_CHECK( m_chrono.retrieve() );
116 }
117
118 ATH_CHECK( m_clusterOutput.initialize() );
119
120 if (m_clusterCellLinkOutput.key().empty()) {
121 m_clusterCellLinkOutput = m_clusterOutput.key() + "_links";
122 }
123 ATH_CHECK( m_clusterCellLinkOutput.initialize() );
124
126 m_mDecor_ncells = m_clusterOutput.key() + "." + m_mDecor_ncells.key();
127 }
129
130 return StatusCode::SUCCESS;
131}
#define endmsg
#define ATH_MSG_ERROR(x)

◆ inputHandles()

virtual std::vector< Gaudi::DataHandle * > AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::inputHandles ( ) const
overridevirtualinherited

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.

◆ isClonable()

◆ makeContainer()

StatusCode CaloClusterMaker::makeContainer ( )
private

Method to create a CaloClusterContainer together with it's AuxStore and Link container.

◆ msg()

MsgStream & AthCommonMsg< Gaudi::Algorithm >::msg ( ) const
inlineinherited

Definition at line 24 of file AthCommonMsg.h.

24 {
25 return this->msgStream();
26 }

◆ msgLvl()

bool AthCommonMsg< Gaudi::Algorithm >::msgLvl ( const MSG::Level lvl) const
inlineinherited

Definition at line 30 of file AthCommonMsg.h.

30 {
31 return this->msgLevel(lvl);
32 }

◆ outputHandles()

virtual std::vector< Gaudi::DataHandle * > AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::outputHandles ( ) const
overridevirtualinherited

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()

std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&T::renounce)(T)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, T > &&std::is_base_of_v< Gaudi::DataHandle, T >, void > AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::renounce ( T & h)
inlineprotectedinherited

Definition at line 380 of file AthCommonDataStore.h.

381 {
382 h.renounce();
384 }
std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&T::renounce)(T)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, T > &&std::is_base_of_v< Gaudi::DataHandle, T >, void > renounce(T &h)

◆ renounceArray()

void AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::renounceArray ( SG::VarHandleKeyArray & handlesArray)
inlineprotectedinherited

remove all handles from I/O resolution

Definition at line 364 of file AthCommonDataStore.h.

364 {
366 }

◆ setFilterPassed()

virtual void AthCommonReentrantAlgorithm< Gaudi::Algorithm >::setFilterPassed ( bool state,
const EventContext & ctx ) const
inlinevirtualinherited

Definition at line 100 of file AthCommonReentrantAlgorithm.h.

100 {
102 }
virtual void setFilterPassed(bool state, const EventContext &ctx) const

◆ sysExecute()

StatusCode AthCommonReentrantAlgorithm< Gaudi::Algorithm >::sysExecute ( const EventContext & ctx)
overridevirtualinherited

Execute an algorithm.

We override this in order to work around an issue with the Algorithm base class storing the event context in a member variable that can cause crashes in MT jobs.

Definition at line 85 of file AthCommonReentrantAlgorithm.cxx.

77{
78 return BaseAlg::sysExecute (ctx);
79}

◆ sysInitialize()

StatusCode AthCommonReentrantAlgorithm< Gaudi::Algorithm >::sysInitialize ( )
overridevirtualinherited

Override sysInitialize.

Override sysInitialize from the base class.

Loop through all output handles, and if they're WriteCondHandles, automatically register them and this Algorithm with the CondSvc

Scan through all outputHandles, and if they're WriteCondHandles, register them with the CondSvc

Reimplemented from AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >.

Reimplemented in HypoBase, and InputMakerBase.

Definition at line 61 of file AthCommonReentrantAlgorithm.cxx.

107 {
109
110 if (sc.isFailure()) {
111 return sc;
112 }
113
114 ServiceHandle<ICondSvc> cs("CondSvc",name());
115 for (auto h : outputHandles()) {
116 if (h->isCondition() && h->mode() == Gaudi::DataHandle::Writer) {
117 // do this inside the loop so we don't create the CondSvc until needed
118 if ( cs.retrieve().isFailure() ) {
119 ATH_MSG_WARNING("no CondSvc found: won't autoreg WriteCondHandles");
120 return StatusCode::SUCCESS;
121 }
122 if (cs->regHandle(this,*h).isFailure()) {
124 ATH_MSG_ERROR("unable to register WriteCondHandle " << h->fullKey()
125 << " with CondSvc");
126 }
127 }
128 }
129 return sc;
130}
#define ATH_MSG_WARNING(x)
virtual std::vector< Gaudi::DataHandle * > outputHandles() const override

◆ sysStart()

virtual StatusCode AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::sysStart ( )
overridevirtualinherited

Handle START transition.

We override this in order to make sure that conditions handle keys can cache a pointer to the conditions container.

◆ updateVHKA()

void AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::updateVHKA ( Gaudi::Details::PropertyBase & )
inlineinherited

Definition at line 308 of file AthCommonDataStore.h.

308 {
309 // debug() << "updateVHKA for property " << p.name() << " " << p.toString()
310 // << " size: " << m_vhka.size() << endmsg;
311 for (auto &a : m_vhka) {
313 for (auto k : keys) {
314 k->setOwner(this);
315 }
316 }
317 }

Member Data Documentation

◆ m_chrono

ServiceHandle<IChronoStatSvc> CaloClusterMaker::m_chrono
private

Definition at line 87 of file CaloClusterMaker.h.

◆ m_chronoTools

bool CaloClusterMaker::m_chronoTools
private

Use ChronotStatSvc to monitor each tool.

Definition at line 97 of file CaloClusterMaker.h.

◆ m_clusterCellLinkOutput

SG::WriteHandleKey<CaloClusterCellLinkContainer> CaloClusterMaker::m_clusterCellLinkOutput
private

the name of the key in StoreGate for the output CaloClusterCellLinkContainer

Definition at line 65 of file CaloClusterMaker.h.

◆ m_clusterCorrectionTools

ToolHandleArray<CaloClusterCollectionProcessor> CaloClusterMaker::m_clusterCorrectionTools
private

the actual list of tools corresponding to above names

a list of names for tools to correct clusters

the tools in this list are executed after all maker tools are done and run one after each other on each cluster in the container.

Definition at line 84 of file CaloClusterMaker.h.

◆ m_clusterMakerTools

ToolHandleArray<CaloClusterCollectionProcessor> CaloClusterMaker::m_clusterMakerTools
private

a list of names for tools to make clusters

the tools in this list are executed one after the other on the entire CaloClusterContainer.

Definition at line 73 of file CaloClusterMaker.h.

◆ m_clusterOutput

SG::WriteHandleKey<xAOD::CaloClusterContainer> CaloClusterMaker::m_clusterOutput
private

the name of the key in StoreGate for the output CaloClusterContainer

Definition at line 61 of file CaloClusterMaker.h.

◆ m_detStore

StoreGateSvc_t AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::m_detStore
privateinherited

Pointer to StoreGate (detector store by default)

Definition at line 393 of file AthCommonDataStore.h.

◆ m_evtStore

StoreGateSvc_t AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::m_evtStore
privateinherited

Pointer to StoreGate (event store by default)

Definition at line 390 of file AthCommonDataStore.h.

◆ m_extendedExtraObjects

DataObjIDColl AthCommonReentrantAlgorithm< Gaudi::Algorithm >::m_extendedExtraObjects
privateinherited

Extra output dependency collection, extended by AthAlgorithmDHUpdate to add symlinks.

Empty if no symlinks were found.

Definition at line 114 of file AthCommonReentrantAlgorithm.h.

◆ m_mDecor_ncells

SG::WriteDecorHandleKey<xAOD::CaloClusterContainer> CaloClusterMaker::m_mDecor_ncells {this, "Decor_ncells", "nCells", "Decorator containing the number of cells associated to a cluster"}
private

Key to the handle for writing the number of cells as a decoration.

Definition at line 106 of file CaloClusterMaker.h.

106{this, "Decor_ncells", "nCells", "Decorator containing the number of cells associated to a cluster"};

◆ m_saveSignalState

bool CaloClusterMaker::m_saveSignalState
private

controls saving the uncalibrated signal state just before the first CaloClusterCorrectionTool is invoked.

Is a configurable property with default value true.

Definition at line 94 of file CaloClusterMaker.h.

◆ m_varHandleArraysDeclared

bool AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::m_varHandleArraysDeclared
privateinherited

Definition at line 399 of file AthCommonDataStore.h.

◆ m_vhka

std::vector<SG::VarHandleKeyArray*> AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::m_vhka
privateinherited

Definition at line 398 of file AthCommonDataStore.h.

◆ m_writeTriggerSpecificInfo

Gaudi::Property<bool> CaloClusterMaker::m_writeTriggerSpecificInfo {this, "WriteTriggerSpecificInfo", false, "Write some trigger-specific decorations and use the trigger auxiliary container."}
private

If true, writes some trigger-specific decorations.

Definition at line 102 of file CaloClusterMaker.h.

102{this, "WriteTriggerSpecificInfo", false, "Write some trigger-specific decorations and use the trigger auxiliary container."};

The documentation for this class was generated from the following files: