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

Update the input RoI direction in (eta, phi) to the leading RoI track (if any), and update the size. More...

#include <TrigTauTrackRoiUpdater.h>

Inheritance diagram for TrigTauTrackRoiUpdater:
Collaboration diagram for TrigTauTrackRoiUpdater:

Public Member Functions

 TrigTauTrackRoiUpdater (const std::string &, ISvcLocator *)
 ~TrigTauTrackRoiUpdater ()
virtual StatusCode initialize () override
virtual StatusCode execute (const EventContext &) const override
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< float > m_z0HalfWidth {this, "z0HalfWidth", 7.0, "z0 half width for the output RoI"}
Gaudi::Property< float > m_etaHalfWidth {this, "etaHalfWidth", 0.4, "eta half width for the output RoI"}
Gaudi::Property< float > m_phiHalfWidth {this, "phiHalfWidth", 0.4, "phi half width for the output RoI"}
Gaudi::Property< int > m_nHitPix {this, "nHitPix", 2, "Minimum number of hits in the Pixel detector on the lead track"}
Gaudi::Property< int > m_nSiHoles {this, "nSiHoles", 2, "Maximum number of Si holes on the lead track"}
SG::ReadHandleKey< TrigRoiDescriptorCollectionm_roIInputKey {this, "RoIInputKey", "", "Input RoI key"}
SG::ReadHandleKey< xAOD::TrackParticleContainerm_tracksKey {this, "TracksKey", "", "FTF tracks" }
SG::WriteHandleKey< TrigRoiDescriptorCollectionm_roIOutputKey {this, "RoIOutputKey", "", "Output RoI key"}
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

Update the input RoI direction in (eta, phi) to the leading RoI track (if any), and update the size.

Input RoIs in 2024 have the size of the tauCore setting: \Delta\eta/2 = \Delta\eta/2 = 0.1, and \Delta z_0/2 = 180mm. For the RoI update, FTF tracks are used.

The logic of the RoI update is as follows:

If tracks were found:

  • Update the RoI position to that of the leading track.
  • Update the RoI angular size. During 2024, this is \Delta\eta/2 = \Delta\phi/2 = 0.2.
  • Update the RoI longitudinal size. During 2024, this is \Delta z_0/2 = 7mm. If no tracks were found:
  • Update the RoI angular size. During 2024, this is \Delta\eta/2 = \Delta\phi/2 = 0.2. Maintain the longitudinal size

Definition at line 35 of file TrigTauTrackRoiUpdater.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

◆ TrigTauTrackRoiUpdater()

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

Definition at line 17 of file TrigTauTrackRoiUpdater.cxx.

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

◆ ~TrigTauTrackRoiUpdater()

TrigTauTrackRoiUpdater::~TrigTauTrackRoiUpdater ( )

Definition at line 24 of file TrigTauTrackRoiUpdater.cxx.

25{
26
27}

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

Definition at line 53 of file TrigTauTrackRoiUpdater.cxx.

54{
55 ATH_MSG_DEBUG("Running " << name());
56
57 //---------------------------------------------------------------
58 // Prepare I/O
59 //---------------------------------------------------------------
60
61 // Prepare output RoI container
62 std::unique_ptr<TrigRoiDescriptorCollection> roiCollection = std::make_unique<TrigRoiDescriptorCollection>();
63 SG::WriteHandle<TrigRoiDescriptorCollection> outputRoIHandle = SG::makeHandle(m_roIOutputKey, ctx);
64 ATH_CHECK(outputRoIHandle.record(std::move(roiCollection)));
65
66
67 // Retrieve Input TrackCollection
68 SG::ReadHandle<xAOD::TrackParticleContainer> TrackCollectionHandle = SG::makeHandle(m_tracksKey, ctx);
69 ATH_CHECK(TrackCollectionHandle.isValid());
70 const xAOD::TrackParticleContainer* foundTracks = TrackCollectionHandle.get();
71
72 if(!foundTracks) {
73 ATH_MSG_ERROR("No track container found, the Track RoI updater should not be scheduled");
74 return StatusCode::FAILURE;
75 }
76 ATH_MSG_DEBUG("Found " << foundTracks->size() << " FTF tracks, updating the RoI");
77
78
79 // Retrieve input RoI descriptor
80 SG::ReadHandle<TrigRoiDescriptorCollection> roisHandle = SG::makeHandle(m_roIInputKey, ctx);
81 ATH_MSG_DEBUG("Size of roisHandle: " << roisHandle->size());
82 const TrigRoiDescriptor* roiDescriptor = roisHandle->at(0); // We only have one RoI in the handle
83
84
85 // Fill local variables for RoI reference position
86 float eta = roiDescriptor->eta();
87 float phi = roiDescriptor->phi();
88
89 float zed = roiDescriptor->zed();
90 float zedMinus = roiDescriptor->zedMinus();
91 float zedPlus = roiDescriptor->zedPlus();
92
93
94
95 //---------------------------------------------------------------
96 // Find leading track
97 //---------------------------------------------------------------
98
99 const xAOD::TrackParticle* leadTrack = nullptr;
100 float trkPtMax = 0;
101
102 // Use the highest-pt track satisfying quality cuts
103 // If no track is found, the input ROI is used
104 for(const xAOD::TrackParticle* track : *foundTracks) {
105
106 float trackPt = track->pt();
107 if(trackPt > trkPtMax) {
108 uint8_t nPix{}, nPixHoles{}, nSCTHoles{}, summaryVal{};
109 nPix = track->summaryValue(summaryVal, xAOD::numberOfPixelHits) ? summaryVal : 0;
110 if(nPix < m_nHitPix) {
111 ATH_MSG_DEBUG("Track rejected because nHitPix " << static_cast<int>(nPix) << " < " << m_nHitPix);
112 continue;
113 }
114
115 nPixHoles = track->summaryValue(summaryVal, xAOD::numberOfPixelHoles) ? summaryVal : 0;
116 nSCTHoles = track->summaryValue(summaryVal, xAOD::numberOfSCTHoles) ? summaryVal : 0;
117 if((nPixHoles + nSCTHoles) > m_nSiHoles) {
118 ATH_MSG_DEBUG("Track rejected because nSiHoles " << static_cast<int>(nPixHoles + nSCTHoles) << " > " << m_nSiHoles);
119 continue;
120 }
121
122 leadTrack = track;
123 trkPtMax = trackPt;
124 ATH_MSG_VERBOSE("pTmax = " << trkPtMax);
125 }
126 }
127
128
129
130 //---------------------------------------------------------------
131 // Update the RoI
132 //---------------------------------------------------------------
133
134 // If a leading track is found, update all the ROI position and size parameters;
135 // else, only update the eta/phi width (etaMinus, etaPlus, phiMinus, phiPlus)
136 if(leadTrack) {
137 zed = leadTrack->z0() + leadTrack->vz();
138 ATH_MSG_DEBUG("Track z0 " << leadTrack->z0() <<" vz: " << leadTrack->vz() << " zed:" << zed);
139 zedMinus = zed - m_z0HalfWidth;
140 zedPlus = zed + m_z0HalfWidth;
141 eta = leadTrack->eta();
142 phi = leadTrack->phi0();
143 }
144
145 float etaMinus = eta - m_etaHalfWidth;
146 float etaPlus = eta + m_etaHalfWidth;
147 float phiMinus = CxxUtils::wrapToPi(phi - m_phiHalfWidth);
148 float phiPlus = CxxUtils::wrapToPi(phi + m_phiHalfWidth);
149
150
151 // Create the new RoI
152 outputRoIHandle->push_back(std::make_unique<TrigRoiDescriptor>(
153 roiDescriptor->roiWord(), roiDescriptor->l1Id(), roiDescriptor->roiId(),
154 eta, etaMinus, etaPlus,
155 phi, phiMinus, phiPlus,
156 zed, zedMinus, zedPlus
157 ));
158
159
160 ATH_MSG_DEBUG("Input RoI: " << *roiDescriptor);
161 ATH_MSG_DEBUG("Output RoI: " << *outputRoIHandle->back());
162
163 return StatusCode::SUCCESS;
164}
Scalar eta() const
pseudorapidity method
Scalar phi() const
phi method
#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)
Athena::TPCnvVers::Current TrigRoiDescriptor
size_type size() const noexcept
Returns the number of elements in the collection.
virtual double zed() const override final
virtual double phi() const override final
Methods to retrieve data members.
virtual double zedPlus() const override final
z at the most forward end of the RoI
virtual double zedMinus() const override final
z at the most backward end of the RoI
virtual double eta() const override final
virtual bool isValid() override final
Can the handle be successfully dereferenced?
const_pointer_type get() const
Dereference the pointer, but don't cache anything.
StatusCode record(std::unique_ptr< T > data)
Record a const object to the store.
virtual unsigned int roiWord() const override final
virtual unsigned int roiId() const override final
these quantities probably don't need to be used any more
virtual unsigned int l1Id() const override final
Gaudi::Property< int > m_nSiHoles
SG::ReadHandleKey< TrigRoiDescriptorCollection > m_roIInputKey
SG::ReadHandleKey< xAOD::TrackParticleContainer > m_tracksKey
Gaudi::Property< float > m_phiHalfWidth
SG::WriteHandleKey< TrigRoiDescriptorCollection > m_roIOutputKey
Gaudi::Property< int > m_nHitPix
Gaudi::Property< float > m_z0HalfWidth
Gaudi::Property< float > m_etaHalfWidth
float z0() const
Returns the parameter.
float vz() const
The z origin for the parameters.
virtual double eta() const override final
The pseudorapidity ( ) of the particle.
float phi0() const
Returns the parameter, which has range to .
T wrapToPi(T phi)
Wrap angle in radians to [-pi, pi].
Definition phihelper.h:24
float nSCTHoles(const U &p)
SG::ReadCondHandle< T > makeHandle(const SG::ReadCondHandleKey< T > &key, const EventContext &ctx=Gaudi::Hive::currentContext())
bool trackPt(const xAOD::TauJet &, const xAOD::TauTrack &track, float &out)
TrackParticle_v1 TrackParticle
Reference the current persistent version:
TrackParticleContainer_v1 TrackParticleContainer
Definition of the current "TrackParticle container version".
@ numberOfPixelHoles
number of pixel layers on track with absence of hits [unit8_t].
@ numberOfPixelHits
these are the pixel hits, including the b-layer [unit8_t].
@ numberOfSCTHoles
number of SCT holes [unit8_t].

◆ 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 TrigTauTrackRoiUpdater::initialize ( )
overridevirtual

Definition at line 30 of file TrigTauTrackRoiUpdater.cxx.

31{
32 ATH_MSG_DEBUG("Initializing " << name() );
33 ATH_MSG_DEBUG("z0HalfWidth: " << m_z0HalfWidth );
34 ATH_MSG_DEBUG("etaHalfWidth: " << m_etaHalfWidth );
35 ATH_MSG_DEBUG("phiHalfWidth: " << m_phiHalfWidth );
36 ATH_MSG_DEBUG("nHitPix: " << m_nHitPix );
37 ATH_MSG_DEBUG("nSiHoles: " << m_nSiHoles );
38
39 if(m_z0HalfWidth < 0 || m_etaHalfWidth < 0 || m_phiHalfWidth < 0) {
40 ATH_MSG_ERROR("Incorrect parameters");
41 return StatusCode::FAILURE;
42 }
43
44 ATH_MSG_DEBUG("Initialising HandleKeys");
45 ATH_CHECK(m_roIInputKey.initialize());
46 ATH_CHECK(m_tracksKey.initialize());
47 ATH_CHECK(m_roIOutputKey.initialize());
48
49 return StatusCode::SUCCESS;
50}

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

Gaudi::Property<float> TrigTauTrackRoiUpdater::m_etaHalfWidth {this, "etaHalfWidth", 0.4, "eta half width for the output RoI"}
private

Definition at line 46 of file TrigTauTrackRoiUpdater.h.

46{this, "etaHalfWidth", 0.4, "eta half width for the output RoI"};

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

Gaudi::Property<int> TrigTauTrackRoiUpdater::m_nHitPix {this, "nHitPix", 2, "Minimum number of hits in the Pixel detector on the lead track"}
private

Definition at line 48 of file TrigTauTrackRoiUpdater.h.

48{this, "nHitPix", 2, "Minimum number of hits in the Pixel detector on the lead track"};

◆ m_nSiHoles

Gaudi::Property<int> TrigTauTrackRoiUpdater::m_nSiHoles {this, "nSiHoles", 2, "Maximum number of Si holes on the lead track"}
private

Definition at line 49 of file TrigTauTrackRoiUpdater.h.

49{this, "nSiHoles", 2, "Maximum number of Si holes on the lead track"};

◆ m_phiHalfWidth

Gaudi::Property<float> TrigTauTrackRoiUpdater::m_phiHalfWidth {this, "phiHalfWidth", 0.4, "phi half width for the output RoI"}
private

Definition at line 47 of file TrigTauTrackRoiUpdater.h.

47{this, "phiHalfWidth", 0.4, "phi half width for the output RoI"};

◆ m_roIInputKey

SG::ReadHandleKey<TrigRoiDescriptorCollection> TrigTauTrackRoiUpdater::m_roIInputKey {this, "RoIInputKey", "", "Input RoI key"}
private

Definition at line 51 of file TrigTauTrackRoiUpdater.h.

51{this, "RoIInputKey", "", "Input RoI key"};

◆ m_roIOutputKey

SG::WriteHandleKey<TrigRoiDescriptorCollection> TrigTauTrackRoiUpdater::m_roIOutputKey {this, "RoIOutputKey", "", "Output RoI key"}
private

Definition at line 53 of file TrigTauTrackRoiUpdater.h.

53{this, "RoIOutputKey", "", "Output RoI key"};

◆ m_tracksKey

SG::ReadHandleKey<xAOD::TrackParticleContainer> TrigTauTrackRoiUpdater::m_tracksKey {this, "TracksKey", "", "FTF tracks" }
private

Definition at line 52 of file TrigTauTrackRoiUpdater.h.

52{this, "TracksKey", "", "FTF tracks" };

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

Gaudi::Property<float> TrigTauTrackRoiUpdater::m_z0HalfWidth {this, "z0HalfWidth", 7.0, "z0 half width for the output RoI"}
private

Definition at line 45 of file TrigTauTrackRoiUpdater.h.

45{this, "z0HalfWidth", 7.0, "z0 half width for the output RoI"};

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