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

#include <TauProcessorAlg.h>

Inheritance diagram for TauProcessorAlg:
Collaboration diagram for TauProcessorAlg:

Public Member Functions

 TauProcessorAlg (const std::string &name, ISvcLocator *pSvcLocator)
 ~TauProcessorAlg ()
virtual StatusCode initialize ()
virtual 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

Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
 specialization for handling Gaudi::Property<SG::VarHandleKey>

Private Attributes

Gaudi::Property< double > m_maxEta {this, "MaxEta", 2.5, "maximum eta for jet seed"}
Gaudi::Property< double > m_minPt {this, "MinPt", 10 * Gaudi::Units::GeV, "minimum pT for jet seed"}
Gaudi::Property< int > m_maxNTracks {this, "MaxNTracks", -1, "maximum number of classifiedCharged tracks"}
const ToolHandleArray< ITauToolBasem_tools {this, "Tools", {}, "Tools processing taus"}
const ToolHandle< ICaloConstCellMakerToolm_cellMakerTool {this, "CellMakerTool", "", "Tool to sort the CaloCellContainer"}
SG::ReadHandleKey< xAOD::JetContainerm_jetInputContainer {this,"Key_jetInputContainer","AntiKt4LCTopoJets","input jet key"}
SG::WriteHandleKey< xAOD::TauJetContainerm_tauOutputContainer {this,"Key_tauOutputContainer","tmp_TauJets","output tau data key"}
SG::WriteHandleKey< xAOD::TauTrackContainerm_tauTrackOutputContainer {this,"Key_tauTrackOutputContainer","TauTracks","output tau tracks data key"}
SG::WriteHandleKey< CaloConstCellContainerm_tauPi0CellOutputContainer {this,"Key_tauPi0CellOutputContainer","TauCommonPi0Cells","output calo cell key"}
const CaloCell_IDm_cellID = nullptr
SG::ReadCondHandleKey< InDetDD::SiDetectorElementCollectionm_pixelDetEleCollKey {this, "PixelDetEleCollKey", "PixelDetectorElementCollection", "Key of SiDetectorElementCollection for Pixel"}
SG::ReadCondHandleKey< InDetDD::SiDetectorElementCollectionm_SCTDetEleCollKey {this, "SCTDetEleCollKey", "SCT_DetectorElementCollection", "Key of SiDetectorElementCollection for SCT"}
SG::ReadCondHandleKey< InDetDD::TRT_DetElementContainerm_trtDetEleContKey {this, "TRTDetEleContKey", "TRT_DetElementContainer", "Key of TRT_DetElementContainer"}
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 36 of file TauProcessorAlg.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

◆ TauProcessorAlg()

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

Definition at line 18 of file TauProcessorAlg.cxx.

19 :
20 AthReentrantAlgorithm(name, pSvcLocator) {
21}

◆ ~TauProcessorAlg()

TauProcessorAlg::~TauProcessorAlg ( )
default

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 }
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 TauProcessorAlg::execute ( const EventContext & ctx) const
virtual

record output containers

Definition at line 75 of file TauProcessorAlg.cxx.

75 {
76
78 SG::WriteHandle<xAOD::TauJetContainer> tauHandle( m_tauOutputContainer, ctx );
79 ATH_CHECK(tauHandle.record(std::make_unique<xAOD::TauJetContainer>(), std::make_unique<xAOD::TauJetAuxContainer>()));
80 xAOD::TauJetContainer* pContainer = tauHandle.ptr();
81
82 SG::WriteHandle<xAOD::TauTrackContainer> tauTrackHandle( m_tauTrackOutputContainer, ctx );
83 ATH_CHECK(tauTrackHandle.record(std::make_unique<xAOD::TauTrackContainer>(), std::make_unique<xAOD::TauTrackAuxContainer>()));
84 xAOD::TauTrackContainer* pTauTrackCont = tauTrackHandle.ptr();
85
86 CaloConstCellContainer* Pi0CellContainer = nullptr;
87 boost::dynamic_bitset<> addedCellsMap;
88
89 if(!m_tauPi0CellOutputContainer.empty()) {
90 SG::WriteHandle<CaloConstCellContainer> tauPi0CellHandle( m_tauPi0CellOutputContainer, ctx );
91 ATH_CHECK(tauPi0CellHandle.record(std::make_unique<CaloConstCellContainer>(SG::VIEW_ELEMENTS )));
92 Pi0CellContainer = tauPi0CellHandle.ptr();
93
94 // Initialize the cell map per event, used to avoid dumplicate cell in TauPi0CreateROI
95 IdentifierHash hashMax = m_cellID->calo_cell_hash_max();
96 ATH_MSG_DEBUG("CaloCell Hash Max: " << hashMax);
97 addedCellsMap.resize(hashMax,false);
98 }
99
100 // retrieve the input jet seed container
101 SG::ReadHandle<xAOD::JetContainer> jetHandle( m_jetInputContainer, ctx );
102 if (!jetHandle.isValid()) {
103 ATH_MSG_ERROR ("Could not retrieve HiveDataObj with key " << jetHandle.key());
104 return StatusCode::FAILURE;
105 }
106 const xAOD::JetContainer *pSeedContainer = jetHandle.cptr();
107
108 //---------------------------------------------------------------------
109 // Loop over seeds
110 //---------------------------------------------------------------------
111 ATH_MSG_VERBOSE("Number of seeds in the container: " << pSeedContainer->size());
112
113 for (const xAOD::Jet* pSeed : *pSeedContainer) {
114 ATH_MSG_VERBOSE("Seeds eta:" << pSeed->eta() << ", pt:" << pSeed->pt());
115
116 if (std::abs(pSeed->eta()) > m_maxEta) {
117 ATH_MSG_VERBOSE("--> Seed rejected, eta out of range!");
118 continue;
119 }
120
121 if (pSeed->pt() < m_minPt) {
122 ATH_MSG_VERBOSE("--> Seed rejected, pt out of range!");
123 continue;
124 }
125
126 //-----------------------------------------------------------------
127 // Seed passed cuts --> create tau candidate
128 //-----------------------------------------------------------------
129 xAOD::TauJet* pTau = new xAOD::TauJet();
130 pContainer->push_back( pTau );
131 pTau->setJet(pSeedContainer, pSeed);
132
133 //-----------------------------------------------------------------
134 // Loop stops when Failure indicated by one of the tools
135 //-----------------------------------------------------------------
137 for (const ToolHandle<ITauToolBase>& tool : m_tools) {
138 ATH_MSG_DEBUG("ProcessorAlg Invoking tool " << tool->name());
139
140 if (tool->type() == "TauVertexFinder") {
141 sc = tool->executeVertexFinder(*pTau);
142 } else if (tool->type() == "TauTrackFinder") {
143 sc = tool->executeTrackFinder(*pTau, *pTauTrackCont);
144 } else if (tool->type() == "tauRecTools::TauTrackRNNClassifier") {
145 sc = tool->executeTrackClassifier(*pTau, *pTauTrackCont);
146
147 // skip candidate if it has too many classifiedCharged tracks, if
148 // skimming is required
149 if (m_maxNTracks > 0 &&
150 static_cast<int>(pTau->nTracks()) > m_maxNTracks) {
151 sc = StatusCode::FAILURE;
152 break;
153 }
154 } else if (tool->type() == "TauPi0CreateROI") {
155 sc = tool->executePi0CreateROI(*pTau, *Pi0CellContainer, addedCellsMap);
156 } else {
157 sc = tool->execute(*pTau);
158 }
159 if (sc.isFailure())
160 break;
161 }
162
163 if (sc.isSuccess()) {
164 ATH_MSG_VERBOSE("The tau candidate has been registered");
165 }
166 else {
167 //remove orphaned tracks before tau is deleted via pop_back
168 xAOD::TauJet* bad_tau = pContainer->back();
169 ATH_MSG_DEBUG("Deleting " << bad_tau->nAllTracks() << "Tracks associated with tau: ");
170 pTauTrackCont->erase(pTauTrackCont->end()-bad_tau->nAllTracks(), pTauTrackCont->end());
171
172 pContainer->pop_back();
173 }
174 }// loop through seeds
175
176 if(Pi0CellContainer) {
177 // sort the cell container by hash
178 // basically call the finalizer
179 ATH_CHECK( m_cellMakerTool->process(Pi0CellContainer, ctx) );
180 //Since this is recorded we can retrieve it later as const DV
181 //do it here due to symlink below
182 const CaloCellContainer* cellPtrs = Pi0CellContainer->asDataVector();
183 // Check this is needed for the cell container?
184 // symlink as INavigable4MomentumCollection (as in CaloRec/CaloCellMaker)
185 ATH_CHECK(evtStore()->symLink(cellPtrs, static_cast<INavigable4MomentumCollection*> (nullptr)));
186 }
187
188 ATH_MSG_VERBOSE("The tau candidate container has been modified");
189
190 return StatusCode::SUCCESS;
191}
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_ERROR(x)
#define ATH_MSG_VERBOSE(x)
#define ATH_MSG_DEBUG(x)
DataVector< INavigable4Momentum > INavigable4MomentumCollection
static Double_t sc
const DV * asDataVector() const
Return a pointer to this object, as a const DataVector.
const T * back() const
Access the last element in the collection as an rvalue.
void pop_back()
Remove the last element from the collection.
value_type push_back(value_type pElem)
Add an element to the end of the collection.
const_iterator end() const noexcept
Return a const_iterator pointing past the end of the collection.
iterator erase(iterator position)
Remove element at a given position.
size_type size() const noexcept
Returns the number of elements in the collection.
Gaudi::Property< double > m_minPt
Gaudi::Property< int > m_maxNTracks
const ToolHandle< ICaloConstCellMakerTool > m_cellMakerTool
SG::WriteHandleKey< CaloConstCellContainer > m_tauPi0CellOutputContainer
const ToolHandleArray< ITauToolBase > m_tools
SG::ReadHandleKey< xAOD::JetContainer > m_jetInputContainer
SG::WriteHandleKey< xAOD::TauTrackContainer > m_tauTrackOutputContainer
SG::WriteHandleKey< xAOD::TauJetContainer > m_tauOutputContainer
const CaloCell_ID * m_cellID
Gaudi::Property< double > m_maxEta
void setJet(const xAOD::JetContainer *cont, const xAOD::Jet *jet)
size_t nAllTracks() const
size_t nTracks(TauJetParameters::TauTrackFlag flag=TauJetParameters::TauTrackFlag::classifiedCharged) const
::StatusCode StatusCode
StatusCode definition for legacy code.
@ VIEW_ELEMENTS
this data object is a view, it does not own its elmts
Jet_v1 Jet
Definition of the current "jet version".
TauJet_v3 TauJet
Definition of the current "tau version".
TauTrackContainer_v1 TauTrackContainer
Definition of the current TauTrack container version.
JetContainer_v1 JetContainer
Definition of the current "jet container version".
TauJetContainer_v3 TauJetContainer
Definition of the current "taujet container version".

◆ 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 TauProcessorAlg::initialize ( )
virtual

Definition at line 31 of file TauProcessorAlg.cxx.

31 {
32
33 ATH_CHECK( m_jetInputContainer.initialize() );
34 ATH_CHECK( m_tauOutputContainer.initialize() );
37
41
42 if(!m_tauPi0CellOutputContainer.empty()) {
44 ATH_CHECK( m_cellMakerTool.retrieve() );
45 }
46
47 //-------------------------------------------------------------------------
48 // No tools allocated!
49 //-------------------------------------------------------------------------
50 if (m_tools.empty()) {
51 ATH_MSG_ERROR("no tools given!");
52 return StatusCode::FAILURE;
53 }
54
55 //-------------------------------------------------------------------------
56 // Allocate tools
57 //-------------------------------------------------------------------------
58 ATH_MSG_INFO("List of tools in execution sequence:");
59 ATH_MSG_INFO("------------------------------------");
60
61 for (const ToolHandle<ITauToolBase>& tool : m_tools) {
62 ATH_CHECK( tool.retrieve() );
63 ATH_MSG_INFO(tool->type() << " - " << tool->name());
64 }
65
66 ATH_MSG_INFO(" ");
67 ATH_MSG_INFO("------------------------------------");
68
69 return StatusCode::SUCCESS;
70}
#define ATH_MSG_INFO(x)
const ServiceHandle< StoreGateSvc > & detStore() const
SG::ReadCondHandleKey< InDetDD::SiDetectorElementCollection > m_SCTDetEleCollKey
SG::ReadCondHandleKey< InDetDD::SiDetectorElementCollection > m_pixelDetEleCollKey
SG::ReadCondHandleKey< InDetDD::TRT_DetElementContainer > m_trtDetEleContKey
retrieve(aClass, aKey=None)
Definition PyKernel.py:110

◆ 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_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_cellID

const CaloCell_ID* TauProcessorAlg::m_cellID = nullptr
private

Definition at line 66 of file TauProcessorAlg.h.

◆ m_cellMakerTool

const ToolHandle<ICaloConstCellMakerTool> TauProcessorAlg::m_cellMakerTool {this, "CellMakerTool", "", "Tool to sort the CaloCellContainer"}
private

Definition at line 58 of file TauProcessorAlg.h.

58{this, "CellMakerTool", "", "Tool to sort the CaloCellContainer"};

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

SG::ReadHandleKey<xAOD::JetContainer> TauProcessorAlg::m_jetInputContainer {this,"Key_jetInputContainer","AntiKt4LCTopoJets","input jet key"}
private

Definition at line 60 of file TauProcessorAlg.h.

60{this,"Key_jetInputContainer","AntiKt4LCTopoJets","input jet key"};

◆ m_maxEta

Gaudi::Property<double> TauProcessorAlg::m_maxEta {this, "MaxEta", 2.5, "maximum eta for jet seed"}
private

Definition at line 53 of file TauProcessorAlg.h.

53{this, "MaxEta", 2.5, "maximum eta for jet seed"};

◆ m_maxNTracks

Gaudi::Property<int> TauProcessorAlg::m_maxNTracks {this, "MaxNTracks", -1, "maximum number of classifiedCharged tracks"}
private

Definition at line 55 of file TauProcessorAlg.h.

55{this, "MaxNTracks", -1, "maximum number of classifiedCharged tracks"};

◆ m_minPt

Gaudi::Property<double> TauProcessorAlg::m_minPt {this, "MinPt", 10 * Gaudi::Units::GeV, "minimum pT for jet seed"}
private

Definition at line 54 of file TauProcessorAlg.h.

54{this, "MinPt", 10 * Gaudi::Units::GeV, "minimum pT for jet seed"};

◆ m_pixelDetEleCollKey

SG::ReadCondHandleKey<InDetDD::SiDetectorElementCollection> TauProcessorAlg::m_pixelDetEleCollKey {this, "PixelDetEleCollKey", "PixelDetectorElementCollection", "Key of SiDetectorElementCollection for Pixel"}
private

Definition at line 69 of file TauProcessorAlg.h.

69{this, "PixelDetEleCollKey", "PixelDetectorElementCollection", "Key of SiDetectorElementCollection for Pixel"};

◆ m_SCTDetEleCollKey

SG::ReadCondHandleKey<InDetDD::SiDetectorElementCollection> TauProcessorAlg::m_SCTDetEleCollKey {this, "SCTDetEleCollKey", "SCT_DetectorElementCollection", "Key of SiDetectorElementCollection for SCT"}
private

Definition at line 70 of file TauProcessorAlg.h.

70{this, "SCTDetEleCollKey", "SCT_DetectorElementCollection", "Key of SiDetectorElementCollection for SCT"};

◆ m_tauOutputContainer

SG::WriteHandleKey<xAOD::TauJetContainer> TauProcessorAlg::m_tauOutputContainer {this,"Key_tauOutputContainer","tmp_TauJets","output tau data key"}
private

Definition at line 62 of file TauProcessorAlg.h.

62{this,"Key_tauOutputContainer","tmp_TauJets","output tau data key"};

◆ m_tauPi0CellOutputContainer

SG::WriteHandleKey<CaloConstCellContainer> TauProcessorAlg::m_tauPi0CellOutputContainer {this,"Key_tauPi0CellOutputContainer","TauCommonPi0Cells","output calo cell key"}
private

Definition at line 64 of file TauProcessorAlg.h.

64{this,"Key_tauPi0CellOutputContainer","TauCommonPi0Cells","output calo cell key"};

◆ m_tauTrackOutputContainer

SG::WriteHandleKey<xAOD::TauTrackContainer> TauProcessorAlg::m_tauTrackOutputContainer {this,"Key_tauTrackOutputContainer","TauTracks","output tau tracks data key"}
private

Definition at line 63 of file TauProcessorAlg.h.

63{this,"Key_tauTrackOutputContainer","TauTracks","output tau tracks data key"};

◆ m_tools

const ToolHandleArray<ITauToolBase> TauProcessorAlg::m_tools {this, "Tools", {}, "Tools processing taus"}
private

Definition at line 57 of file TauProcessorAlg.h.

57{this, "Tools", {}, "Tools processing taus"};

◆ m_trtDetEleContKey

SG::ReadCondHandleKey<InDetDD::TRT_DetElementContainer> TauProcessorAlg::m_trtDetEleContKey {this, "TRTDetEleContKey", "TRT_DetElementContainer", "Key of TRT_DetElementContainer"}
private

Definition at line 71 of file TauProcessorAlg.h.

71{this, "TRTDetEleContKey", "TRT_DetElementContainer", "Key of TRT_DetElementContainer"};

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