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

#include <PFNeutralFlowElementCreatorAlgorithm.h>

Inheritance diagram for PFNeutralFlowElementCreatorAlgorithm:
Collaboration diagram for PFNeutralFlowElementCreatorAlgorithm:

Public Member Functions

StatusCode initialize ()
StatusCode execute (const EventContext &ctx) 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 createNeutralFlowElement (const eflowCaloObject &energyFlowCaloObject, xAOD::FlowElementContainer *neutralFEContainer) const
 Create the chargedneutral FE.
Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
 specialization for handling Gaudi::Property<SG::VarHandleKey>

Private Attributes

Gaudi::Property< bool > m_useCalibHitTruth
 Toggle usage of calibration hit truth - false by default.
Gaudi::Property< bool > m_addCPData {this,"addCPData",false,"Toggle whether to decorate FlowElements with addutional data for Combined Performance studies "}
 Toggle whether to decorate FlowElements with addutional data for Combined Performance studies.
SG::ReadHandleKey< eflowCaloObjectContainerm_eflowCaloObjectContainerReadHandleKey
 ReadHandleKey for eflowCaloObjectContainer.
SG::WriteHandleKey< xAOD::FlowElementContainerm_neutralFEContainerWriteHandleKey
 WriteHandleKey for neutral FE.
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

Definition at line 15 of file PFNeutralFlowElementCreatorAlgorithm.h.

Member Typedef Documentation

◆ StoreGateSvc_t

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

Definition at line 388 of file AthCommonDataStore.h.

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}

◆ createNeutralFlowElement()

StatusCode PFNeutralFlowElementCreatorAlgorithm::createNeutralFlowElement ( const eflowCaloObject & energyFlowCaloObject,
xAOD::FlowElementContainer * neutralFEContainer ) const
private

Create the chargedneutral FE.

Definition at line 53 of file PFNeutralFlowElementCreatorAlgorithm.cxx.

56{
57
58 for (unsigned int iCluster = 0; iCluster < energyFlowCaloObject.nClusters(); ++iCluster){
59 const eflowRecCluster* thisEfRecCluster = energyFlowCaloObject.efRecCluster(iCluster);
60
61 /* Skip empty clusters (presumably subtraction remnants) */
62 const CaloClusterCellLink* theCellLink = energyFlowCaloObject.efRecCluster(iCluster)->getCluster()->getCellLinks();
63 CaloClusterCellLink::const_iterator it=theCellLink->begin();
64 CaloClusterCellLink::const_iterator it_e=theCellLink->end();
65 if (it == it_e) {
66 continue;
67 }
68 //this vetoes rare examples where only two cells are left, and they have equal and opposite energy
69 if (0.0 == energyFlowCaloObject.efRecCluster(iCluster)->getCluster()->e() ) continue;
70
71 /* Create the FlowElement, add the cluster and set the four-momentum, charge and type */
72
73 ATH_MSG_VERBOSE("Creating FlowElement");
75 neutralFEContainer->push_back(thisFE);
76
77 ATH_MSG_VERBOSE("Get original cluster link");
78
79 //if we are using the CP data, we want to use the modified cluster link,
80 //given by getClusElementLink and not the non-modified cluster link
81 //given by getOriginalClusElementLink
82 ElementLink<xAOD::CaloClusterContainer> theOriginalClusterLink;
83 if (m_addCPData) theOriginalClusterLink = thisEfRecCluster->getClusElementLink();
84 else theOriginalClusterLink = thisEfRecCluster->getOriginalClusElementLink();
85
86 ATH_MSG_VERBOSE("Cluster link valid? "<<theOriginalClusterLink.isValid()<<"");
87 ATH_MSG_VERBOSE("Get sister cluster link");
88 ElementLink<xAOD::CaloClusterContainer> theSisterClusterLink = (*theOriginalClusterLink)->getSisterClusterLink();
89 ATH_MSG_VERBOSE("Sister cluster link valid? "<<theSisterClusterLink.isValid()<<"");
90
91 std::vector<ElementLink<xAOD::IParticleContainer>> theClusters;
92 if (theSisterClusterLink.isValid() && !m_addCPData){
93 theClusters.emplace_back(theSisterClusterLink);
94 }
95 else{
96 theClusters.emplace_back(theOriginalClusterLink);
97 }
98 thisFE->setOtherObjectLinks(theClusters);
99
100 const static SG::AuxElement::Accessor<
101 ElementLink<xAOD::CaloClusterContainer>>
102 accShowerSubtractedClusterLink("FEShowerSubtractedClusterLink");
103 accShowerSubtractedClusterLink(*thisFE) =
104 thisEfRecCluster->getClusElementLink();
105
106 ATH_MSG_VERBOSE(" Sucessfully set cluster link");
107
108 const xAOD::CaloCluster* cluster = thisEfRecCluster->getCluster();
109 ATH_MSG_VERBOSE("Got CaloCluster from EfRecCluster");
110 // be careful here - cluster p4 methods do not store sign. Thus -ve energy
111 // clusters have +ve pt and hence +ve energy we use eta,phi at EM scale for
112 // both 4-vectors - standard FE are at EM scale
113 thisFE->setP4(cluster->rawE() / cosh(cluster->rawEta()),
114 cluster->rawEta(),
115 cluster->rawPhi(),
116 cluster->rawM());
117
118 ATH_MSG_DEBUG("Created neutral FlowElement with E, pt, eta and phi of "
119 << thisFE->e() << ", " << thisFE->pt() << ", "
120 << thisFE->eta() << " and " << thisFE->phi());
121
122 thisFE->setCharge(0);
124
125 FEHelpers::FillNeutralFlowElements FEFiller;
126 FEFiller.addStandardMoments(*thisFE,*cluster);
127
128 if (m_useCalibHitTruth) FEFiller.addStandardCalHitMoments(*thisFE,*cluster);
129
130 FEFiller.addStandardSamplingEnergies(*thisFE,*cluster);
131
132 float layerEnergy_TileBar0 = cluster->eSample(xAOD::CaloCluster::CaloSample::TileBar0);
133 float layerEnergy_TileExt0 = cluster->eSample(xAOD::CaloCluster::CaloSample::TileExt0);
134 const static SG::AuxElement::Accessor<float> accFloatTIle0E("LAYERENERGY_TILE0");
135 accFloatTIle0E(*thisFE) = layerEnergy_TileBar0 + layerEnergy_TileExt0;
136
137 const static SG::AuxElement::Accessor<float> accFloatTiming("TIMING");
138 accFloatTiming(*thisFE) = cluster->time();
139
140 if (m_addCPData){
141 PFClusterWidthCalculator widthCalc;
142 const CaloClusterCellLink* theCellLinks = cluster->getCellLinks();
143 std::vector<double> eta,phi;
144 for (CaloClusterCellLink::const_iterator it=theCellLinks->begin(); it!=theCellLinks->end(); ++it){
145 const CaloCell* cell = *it;
146 eta.push_back(cell->eta());
147 phi.push_back(cell->phi());
148 }
149
150 std::pair<double,double> width = widthCalc.getPFClusterCoordinateWidth(eta,phi,cluster->eta(),cluster->phi(),theCellLinks->size());
151 const static SG::AuxElement::Accessor<float> accFloatWidthEta("ClusterWidthEta");
152 accFloatWidthEta(*thisFE) = width.first;
153 const static SG::AuxElement::Accessor<float> accFloatWidthPhi("ClusterWidthPhi");
154 accFloatWidthPhi(*thisFE) = width.second;
155 }
156
157 }//cluster loop
158 return StatusCode::SUCCESS;
159}
Scalar eta() const
pseudorapidity method
Scalar phi() const
phi method
#define ATH_MSG_VERBOSE(x)
#define ATH_MSG_DEBUG(x)
const double width
value_type push_back(value_type pElem)
Add an element to the end of the collection.
void addStandardSamplingEnergies(xAOD::FlowElement &theFE, const xAOD::CaloCluster &theCluster)
void addStandardCalHitMoments(xAOD::FlowElement &theFE, const xAOD::CaloCluster &theCluster)
void addStandardMoments(xAOD::FlowElement &theFE, const xAOD::CaloCluster &theCluster)
std::pair< double, double > getPFClusterCoordinateWidth(const std::vector< double > &eta, const std::vector< double > &phi, const double &clusterEta, const double &clusterPhi, unsigned int nCells)
Gaudi::Property< bool > m_addCPData
Toggle whether to decorate FlowElements with addutional data for Combined Performance studies.
Gaudi::Property< bool > m_useCalibHitTruth
Toggle usage of calibration hit truth - false by default.
SG::Accessor< T, ALLOC > Accessor
Definition AuxElement.h:572
unsigned nClusters() const
const eflowRecCluster * efRecCluster(int i) const
ElementLink< xAOD::CaloClusterContainer > getOriginalClusElementLink() const
xAOD::CaloCluster * getCluster()
ElementLink< xAOD::CaloClusterContainer > getClusElementLink() const
flt_t rawE() const
const CaloClusterCellLink * getCellLinks() const
Get a pointer to the CaloClusterCellLink object (const version)
flt_t rawM() const
Get mass in signal state UNCALIBRATED.
flt_t time() const
Access cluster time.
virtual double eta() const
The pseudorapidity ( ) of the particle.
flt_t rawPhi() const
Get in signal state UNCALIBRATED.
flt_t rawEta() const
Get in signal state UNCALIBRATED.
virtual double e() const
The total energy of the particle.
float eSample(const CaloSample sampling) const
virtual double phi() const
The azimuthal angle ( ) of the particle.
virtual double pt() const override
void setP4(float pt, float eta, float phi, float m)
virtual double phi() const override
The azimuthal angle ( ) of the particle.
void setCharge(float c)
virtual double eta() const override
The pseudorapidity ( ) of the particle.
void setSignalType(signal_t t)
void setOtherObjectLinks(const std::vector< ElementLink< IParticleContainer > > &elV)
virtual double e() const override
The total energy of the particle.
CaloCluster_v1 CaloCluster
Define the latest version of the calorimeter cluster class.
FlowElement_v1 FlowElement
Definition of the current "pfo version".
Definition FlowElement.h:16

◆ 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 }
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T, V, H > &t)

◆ 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 PFNeutralFlowElementCreatorAlgorithm::execute ( const EventContext & ctx) const

Definition at line 16 of file PFNeutralFlowElementCreatorAlgorithm.cxx.

16 {
17
18 ATH_MSG_DEBUG("Executing");
19
20 /* Create Neutral PFOs from all eflowCaloObjects */
21 SG::ReadHandle<eflowCaloObjectContainer> eflowCaloObjectContainerReadHandle(
23
24 // Always create at least one FlowElement container & aux
25 auto neutralFEContainer = std::make_unique<xAOD::FlowElementContainer>();
26 auto neutralFEContainerAux = std::make_unique<xAOD::FlowElementAuxContainer>();
27 neutralFEContainer->setStore(neutralFEContainerAux.get());
28
29 ATH_MSG_DEBUG("Looping over eflowCaloObjects");
30 // Create FlowElements and fill the containers
31 for (const auto *thisEflowCaloObject : *eflowCaloObjectContainerReadHandle) {
32 if( createNeutralFlowElement(*thisEflowCaloObject, neutralFEContainer.get()).isFailure()) {
33 ATH_MSG_WARNING("Problem encountered while creating neutral FlowElements");
34 return StatusCode::SUCCESS;
35 }
36 }
37
38 // Record the output containers
39 SG::WriteHandle<xAOD::FlowElementContainer> neutralFEContainerWriteHandle(
41 std::sort(neutralFEContainer->begin(),
42 neutralFEContainer->end(),
43 [](const xAOD::FlowElement* fe1, const xAOD::FlowElement* fe2) {
44 return fe1->pt() > fe2->pt();
45 });
46 ATH_CHECK(neutralFEContainerWriteHandle.record(
47 std::move(neutralFEContainer), std::move(neutralFEContainerAux)));
48
49 return StatusCode::SUCCESS;
50}
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_WARNING(x)
StatusCode createNeutralFlowElement(const eflowCaloObject &energyFlowCaloObject, xAOD::FlowElementContainer *neutralFEContainer) const
Create the chargedneutral FE.
SG::WriteHandleKey< xAOD::FlowElementContainer > m_neutralFEContainerWriteHandleKey
WriteHandleKey for neutral FE.
SG::ReadHandleKey< eflowCaloObjectContainer > m_eflowCaloObjectContainerReadHandleKey
ReadHandleKey for eflowCaloObjectContainer.
void sort(typename DataModel_detail::iterator< DVL > beg, typename DataModel_detail::iterator< DVL > end)
Specialization of sort for DataVector/List.

◆ 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

◆ initialize()

StatusCode PFNeutralFlowElementCreatorAlgorithm::initialize ( )

Definition at line 8 of file PFNeutralFlowElementCreatorAlgorithm.cxx.

8 {
9
12
13 return StatusCode::SUCCESS;
14}

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

◆ 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_ERROR(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_addCPData

Gaudi::Property<bool> PFNeutralFlowElementCreatorAlgorithm::m_addCPData {this,"addCPData",false,"Toggle whether to decorate FlowElements with addutional data for Combined Performance studies "}
private

Toggle whether to decorate FlowElements with addutional data for Combined Performance studies.

Definition at line 41 of file PFNeutralFlowElementCreatorAlgorithm.h.

41{this,"addCPData",false,"Toggle whether to decorate FlowElements with addutional data for Combined Performance studies "};

◆ 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_eflowCaloObjectContainerReadHandleKey

SG::ReadHandleKey<eflowCaloObjectContainer> PFNeutralFlowElementCreatorAlgorithm::m_eflowCaloObjectContainerReadHandleKey
private
Initial value:
{
this,
"eflowCaloObjectContainerName",
"eflowCaloObjects",
"ReadHandleKey for eflowCaloObjectContainer"
}

ReadHandleKey for eflowCaloObjectContainer.

Definition at line 45 of file PFNeutralFlowElementCreatorAlgorithm.h.

45 {
46 this,
47 "eflowCaloObjectContainerName",
48 "eflowCaloObjects",
49 "ReadHandleKey for eflowCaloObjectContainer"
50 };

◆ 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_neutralFEContainerWriteHandleKey

SG::WriteHandleKey<xAOD::FlowElementContainer> PFNeutralFlowElementCreatorAlgorithm::m_neutralFEContainerWriteHandleKey
private
Initial value:
{
this,
"FlowElementOutputName",
"JetETMissNeutralParticleFlowObjects",
"WriteHandleKey for neutral FlowElements"
}

WriteHandleKey for neutral FE.

Definition at line 54 of file PFNeutralFlowElementCreatorAlgorithm.h.

54 {
55 this,
56 "FlowElementOutputName",
57 "JetETMissNeutralParticleFlowObjects",
58 "WriteHandleKey for neutral FlowElements"
59 };

◆ m_useCalibHitTruth

Gaudi::Property<bool> PFNeutralFlowElementCreatorAlgorithm::m_useCalibHitTruth
private
Initial value:
{
this,
"UseCalibHitTruth",
false,
"Toggle usage of calibration hit truth - false by default"
}

Toggle usage of calibration hit truth - false by default.

Definition at line 33 of file PFNeutralFlowElementCreatorAlgorithm.h.

33 {
34 this,
35 "UseCalibHitTruth",
36 false,
37 "Toggle usage of calibration hit truth - false by default"
38 };

◆ 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.


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