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

Inherits from eflowTrackExtrapolatorBaseAlgTool and AthAlgTool. More...

#include <eflowTrackCaloExtensionTool.h>

Inheritance diagram for eflowTrackCaloExtensionTool:
Collaboration diagram for eflowTrackCaloExtensionTool:

Public Member Functions

 eflowTrackCaloExtensionTool (const std::string &type, const std::string &name, const IInterface *parent)
 ~eflowTrackCaloExtensionTool ()
virtual StatusCode initialize () override
virtual std::unique_ptr< eflowTrackCaloPointsexecute (const xAOD::TrackParticle *track) const override
virtual StatusCode finalize () override
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 sysInitialize () override
 Perform system initialization for an algorithm.
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

Static Public Member Functions

static const InterfaceID & interfaceID ()

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

eflowCalo::LAYER getLayer (const Trk::CurvilinearParameters *clParameters) const
Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
 specialization for handling Gaudi::Property<SG::VarHandleKey>

Private Attributes

const float m_invGeV = 1./CLHEP::GeV
ToolHandle< Trk::IParticleCaloExtensionToolm_theTrackExtrapolatorTool
std::unique_ptr< Trk::TrackParametersIdHelperm_trackParametersIdHelper
SG::ReadHandleKey< CaloExtensionCollectionm_ParticleCacheKey
Gaudi::Property< bool > m_useOldCalo {this,"useOldCalo",false,"If true, it uses the CaloExtensionTool for calculating track extrapolation. Otherwise, it allows the code to read from the cache created by CaloExtensionBuilderalg."}
ToolHandle< GenericMonitoringToolm_monTool {this,"MonTool_TrackCaloExtension","","Monitoring tool"}
 Online monitoring tool for recording histograms of the alg in action.
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

Inherits from eflowTrackExtrapolatorBaseAlgTool and AthAlgTool.

Uses ParticleCaloExtenstionTool to extrapolate tracks to the calorimeter, and creates an eflowTrackCaloPoints object.

Definition at line 38 of file eflowTrackCaloExtensionTool.h.

Member Typedef Documentation

◆ StoreGateSvc_t

typedef ServiceHandle<StoreGateSvc> AthCommonDataStore< AthCommonMsg< AlgTool > >::StoreGateSvc_t
privateinherited

Definition at line 388 of file AthCommonDataStore.h.

Constructor & Destructor Documentation

◆ eflowTrackCaloExtensionTool()

eflowTrackCaloExtensionTool::eflowTrackCaloExtensionTool ( const std::string & type,
const std::string & name,
const IInterface * parent )

Definition at line 32 of file eflowTrackCaloExtensionTool.cxx.

32 :
33 AthAlgTool(type, name, parent),
34 m_theTrackExtrapolatorTool("Trk::ParticleCaloExtensionTool",this),
35 m_trackParametersIdHelper(std::make_unique<Trk::TrackParametersIdHelper>())
36{
37 declareInterface<eflowTrackExtrapolatorBaseAlgTool>(this);
38 declareProperty("TrackCaloExtensionTool", m_theTrackExtrapolatorTool, "TrackCaloExtension Tool Handle");
39}
AthAlgTool()
Default constructor:
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T, V, H > &t)
ToolHandle< Trk::IParticleCaloExtensionTool > m_theTrackExtrapolatorTool
std::unique_ptr< Trk::TrackParametersIdHelper > m_trackParametersIdHelper

◆ ~eflowTrackCaloExtensionTool()

eflowTrackCaloExtensionTool::~eflowTrackCaloExtensionTool ( )
default

Member Function Documentation

◆ declareGaudiProperty()

Gaudi::Details::PropertyBase & AthCommonDataStore< AthCommonMsg< AlgTool > >::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< AlgTool > >::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< AlgTool > >::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< AlgTool > >::evtStore ( )
inlineinherited

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

Definition at line 85 of file AthCommonDataStore.h.

◆ execute()

std::unique_ptr< eflowTrackCaloPoints > eflowTrackCaloExtensionTool::execute ( const xAOD::TrackParticle * track) const
overridevirtual

Implements eflowTrackExtrapolatorBaseAlgTool.

Definition at line 62 of file eflowTrackCaloExtensionTool.cxx.

62 {
63
64 ATH_MSG_VERBOSE(" Now running eflowTrackCaloExtensionTool");
65
66 auto execution_timer = Monitored::Timer<std::chrono::microseconds>( "TIME_execute" );
67 Monitored::ScopedTimer execution_time(execution_timer);
68 auto extrapolation_timer = Monitored::Timer<std::chrono::microseconds>( "TIME_extrapolation" );
69 auto track_pt = Monitored::Scalar<float>("track_pt");
70 auto group = Monitored::Group(m_monTool, execution_timer, extrapolation_timer, track_pt);
71
72 track_pt = track->pt() * m_invGeV ;
73
74 /*Create a map to index the TrackParameters at calo (owned by the extension) wrt to layers*/
75 std::map<eflowCalo::LAYER, const Trk::TrackParameters*> parametersMap;
76 std::map<CaloCell_ID::CaloSample,const Trk::TrackParameters*> tileParametersMap;
77
78 /*get the CaloExtension object*/
79 const Trk::CaloExtension * extension = nullptr;
80 std::unique_ptr<Trk::CaloExtension> uniqueExtension;
81 const int index = track->index();
82 ATH_MSG_VERBOSE("Getting element " << index << " from the particleCache");
83
84 extrapolation_timer.start();
85 if (m_useOldCalo) {
86 /* If CaloExtensionBuilder is unavailable, use the calo extension tool */
87 ATH_MSG_VERBOSE("Using the CaloExtensionTool");
88 uniqueExtension = m_theTrackExtrapolatorTool->caloExtension(
89 Gaudi::Hive::currentContext(), *track);
90 extension = uniqueExtension.get();
91 } else {
92 /*get the CaloExtension object*/
93 SG::ReadHandle<CaloExtensionCollection> particleCache {m_ParticleCacheKey};
94 ATH_MSG_VERBOSE("Using the CaloExtensionBuilder Cache");
95 extension = (*particleCache)[index];
96 ATH_MSG_VERBOSE("Getting element " << index << " from the particleCache");
97 if( not extension ){
98 ATH_MSG_VERBOSE("Cache does not contain a calo extension -> Calculating with the a CaloExtensionTool" );
99 uniqueExtension = m_theTrackExtrapolatorTool->caloExtension(
100 Gaudi::Hive::currentContext(), *track);
101 extension = uniqueExtension.get();
102 }
103 }
104 extrapolation_timer.stop();
105
106 if (extension != nullptr) {
107
108 /*extract the CurvilinearParameters*/
109 const std::vector<Trk::CurvilinearParameters>& clParametersVector = extension->caloLayerIntersections();
110
111 /*The parameters are owned by the CaloExtension so are handled by it the eflowTrackCaloPoints does
112 * not take ownership */
113 for ( const Trk::CurvilinearParameters& clParameter : clParametersVector) {
114 if (parametersMap[getLayer(&clParameter)] == nullptr) {
115 parametersMap[getLayer(&clParameter)] = &clParameter;
116 } else if (m_trackParametersIdHelper->isEntryToVolume(clParameter.cIdentifier())) {
117 parametersMap[getLayer(&clParameter)] = &clParameter;
118 }
119
120 CaloCell_ID::CaloSample caloSample = m_trackParametersIdHelper->caloSample(clParameter.cIdentifier());
121
122 if (tileParametersMap[caloSample] == nullptr){
123 tileParametersMap[caloSample] = &clParameter;
124 } else if (m_trackParametersIdHelper->isEntryToVolume(clParameter.cIdentifier())){
125 tileParametersMap[caloSample] = &clParameter;
126 }
127
128 }
129
130
131 /*
132 parametersMap may have several entries for Tile1,2,3.
133 The impact is negligible as the eta/phi of these entries are very similar
134 https://its.cern.ch/jira/browse/ATLJETMET-242
135 */
136
137 return std::make_unique<eflowTrackCaloPoints>(parametersMap,tileParametersMap);
138
139 }
140 else{
141 if (track->pt() > 3*Gaudi::Units::GeV) ATH_MSG_WARNING("TrackExtension failed for track with pt and eta " << track->pt() << " and " << track->eta());
142 parametersMap[eflowCalo::LAYER::Unknown] = nullptr;
143 return std::make_unique<eflowTrackCaloPoints>(parametersMap);
144 }
145}
#define ATH_MSG_VERBOSE(x)
#define ATH_MSG_WARNING(x)
CaloSampling::CaloSample CaloSample
Definition CaloCell_ID.h:53
eflowCalo::LAYER getLayer(const Trk::CurvilinearParameters *clParameters) const
SG::ReadHandleKey< CaloExtensionCollection > m_ParticleCacheKey
ToolHandle< GenericMonitoringTool > m_monTool
Online monitoring tool for recording histograms of the alg in action.
str index
Definition DeMoScan.py:362
CurvilinearParametersT< TrackParametersDim, Charged, PlaneSurface > CurvilinearParameters

◆ extraDeps_update_handler()

void AthCommonDataStore< AthCommonMsg< AlgTool > >::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

◆ finalize()

StatusCode eflowTrackCaloExtensionTool::finalize ( )
overridevirtual

Definition at line 147 of file eflowTrackCaloExtensionTool.cxx.

147 {
148 return StatusCode::SUCCESS;
149}

◆ getLayer()

eflowCalo::LAYER eflowTrackCaloExtensionTool::getLayer ( const Trk::CurvilinearParameters * clParameters) const
private

Definition at line 152 of file eflowTrackCaloExtensionTool.cxx.

152 {
153 unsigned int parametersIdentifier = clParameter->cIdentifier();
154
155 /*Return unknown when the identifier is invalid */
156 if (!m_trackParametersIdHelper->isValid(parametersIdentifier)) {
157 ATH_MSG_ERROR("invalid Track Identifier");
159 };
160
161 if(m_trackParametersIdHelper->isEntryToVolume(parametersIdentifier)) {
162 ATH_MSG_VERBOSE("is Volume Entry");
163 } else {
164 ATH_MSG_VERBOSE("is Volume Exit");
165 }
166
167 return eflowCalo::translateSampl(m_trackParametersIdHelper->caloSample(parametersIdentifier));
168}
#define ATH_MSG_ERROR(x)
static LAYER translateSampl(CaloCell_ID::CaloSample sampl)

◆ initialize()

StatusCode eflowTrackCaloExtensionTool::initialize ( )
overridevirtual

Definition at line 43 of file eflowTrackCaloExtensionTool.cxx.

43 {
44
45 if (m_theTrackExtrapolatorTool.retrieve().isFailure()) {
46 ATH_MSG_WARNING("Cannot find Extrapolation tool "
47 << m_theTrackExtrapolatorTool.typeAndName());
48 return StatusCode::SUCCESS;
49 } else {
50 ATH_MSG_VERBOSE("Successfully retrieved Extrapolation tool "
51 << m_theTrackExtrapolatorTool.typeAndName());
52 }
53
54 if (!m_ParticleCacheKey.key().empty()) ATH_CHECK(m_ParticleCacheKey.initialize());
55 else m_useOldCalo = true;
56
57 if (!m_monTool.empty()) ATH_CHECK(m_monTool.retrieve());
58
59 return StatusCode::SUCCESS;
60}
#define ATH_CHECK
Evaluate an expression and check for errors.

◆ inputHandles()

virtual std::vector< Gaudi::DataHandle * > AthCommonDataStore< AthCommonMsg< AlgTool > >::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.

◆ interfaceID()

const InterfaceID & eflowTrackCaloExtensionTool::interfaceID ( )
inlinestatic

Definition at line 71 of file eflowTrackCaloExtensionTool.h.

71 {
73}
static const InterfaceID IID_eflowTrackCaloExtensionTool("eflowTrackCaloExtensionTool", 1, 0)

◆ msg()

MsgStream & AthCommonMsg< AlgTool >::msg ( ) const
inlineinherited

Definition at line 24 of file AthCommonMsg.h.

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

◆ msgLvl()

bool AthCommonMsg< AlgTool >::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< AlgTool > >::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< AlgTool > >::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< AlgTool > >::renounceArray ( SG::VarHandleKeyArray & handlesArray)
inlineprotectedinherited

remove all handles from I/O resolution

Definition at line 364 of file AthCommonDataStore.h.

364 {
366 }

◆ sysInitialize()

virtual StatusCode AthCommonDataStore< AthCommonMsg< AlgTool > >::sysInitialize ( )
overridevirtualinherited

Perform system initialization for an algorithm.

We override this to declare all the elements of handle key arrays at the end of initialization. See comments on updateVHKA.

Reimplemented in asg::AsgMetadataTool, AthCheckedComponent< AthAlgTool >, AthCheckedComponent<::AthAlgTool >, and DerivationFramework::CfAthAlgTool.

◆ sysStart()

virtual StatusCode AthCommonDataStore< AthCommonMsg< AlgTool > >::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< AlgTool > >::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 }
std::vector< SG::VarHandleKeyArray * > m_vhka

Member Data Documentation

◆ m_detStore

StoreGateSvc_t AthCommonDataStore< AthCommonMsg< AlgTool > >::m_detStore
privateinherited

Pointer to StoreGate (detector store by default)

Definition at line 393 of file AthCommonDataStore.h.

◆ m_evtStore

StoreGateSvc_t AthCommonDataStore< AthCommonMsg< AlgTool > >::m_evtStore
privateinherited

Pointer to StoreGate (event store by default)

Definition at line 390 of file AthCommonDataStore.h.

◆ m_invGeV

const float eflowTrackCaloExtensionTool::m_invGeV = 1./CLHEP::GeV
private

Definition at line 52 of file eflowTrackCaloExtensionTool.h.

◆ m_monTool

ToolHandle<GenericMonitoringTool> eflowTrackCaloExtensionTool::m_monTool {this,"MonTool_TrackCaloExtension","","Monitoring tool"}
private

Online monitoring tool for recording histograms of the alg in action.

Definition at line 67 of file eflowTrackCaloExtensionTool.h.

67{this,"MonTool_TrackCaloExtension","","Monitoring tool"};

◆ m_ParticleCacheKey

SG::ReadHandleKey<CaloExtensionCollection> eflowTrackCaloExtensionTool::m_ParticleCacheKey
private
Initial value:
{this,
"PFParticleCache", "ParticleCaloExtension", "Name of the particle measurement extrapolation cache"}

Definition at line 61 of file eflowTrackCaloExtensionTool.h.

61 {this,
62 "PFParticleCache", "ParticleCaloExtension", "Name of the particle measurement extrapolation cache"};

◆ m_theTrackExtrapolatorTool

ToolHandle<Trk::IParticleCaloExtensionTool> eflowTrackCaloExtensionTool::m_theTrackExtrapolatorTool
private

Definition at line 56 of file eflowTrackCaloExtensionTool.h.

◆ m_trackParametersIdHelper

std::unique_ptr<Trk::TrackParametersIdHelper> eflowTrackCaloExtensionTool::m_trackParametersIdHelper
private

Definition at line 58 of file eflowTrackCaloExtensionTool.h.

◆ m_useOldCalo

Gaudi::Property<bool> eflowTrackCaloExtensionTool::m_useOldCalo {this,"useOldCalo",false,"If true, it uses the CaloExtensionTool for calculating track extrapolation. Otherwise, it allows the code to read from the cache created by CaloExtensionBuilderalg."}
private

Definition at line 64 of file eflowTrackCaloExtensionTool.h.

64{this,"useOldCalo",false,"If true, it uses the CaloExtensionTool for calculating track extrapolation. Otherwise, it allows the code to read from the cache created by CaloExtensionBuilderalg."};

◆ m_varHandleArraysDeclared

bool AthCommonDataStore< AthCommonMsg< AlgTool > >::m_varHandleArraysDeclared
privateinherited

Definition at line 399 of file AthCommonDataStore.h.

◆ m_vhka

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

Definition at line 398 of file AthCommonDataStore.h.


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