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 34 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 18 of file TrigTauTrackRoiUpdater.cxx.

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

◆ ~TrigTauTrackRoiUpdater()

TrigTauTrackRoiUpdater::~TrigTauTrackRoiUpdater ( )

Definition at line 25 of file TrigTauTrackRoiUpdater.cxx.

26{
27
28}

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 54 of file TrigTauTrackRoiUpdater.cxx.

55{
56 ATH_MSG_DEBUG("Running " << name());
57
58 //---------------------------------------------------------------
59 // Prepare I/O
60 //---------------------------------------------------------------
61
62 // Prepare output RoI container
63 std::unique_ptr<TrigRoiDescriptorCollection> roiCollection = std::make_unique<TrigRoiDescriptorCollection>();
64 SG::WriteHandle<TrigRoiDescriptorCollection> outputRoIHandle = SG::makeHandle(m_roIOutputKey, ctx);
65 ATH_CHECK(outputRoIHandle.record(std::move(roiCollection)));
66
67
68 // Retrieve Input TrackCollection
69 SG::ReadHandle<xAOD::TrackParticleContainer> TrackCollectionHandle = SG::makeHandle(m_tracksKey, ctx);
70 ATH_CHECK(TrackCollectionHandle.isValid());
71 const xAOD::TrackParticleContainer* foundTracks = TrackCollectionHandle.get();
72
73 if(!foundTracks) {
74 ATH_MSG_ERROR("No track container found, the Track RoI updater should not be scheduled");
75 return StatusCode::FAILURE;
76 }
77 ATH_MSG_DEBUG("Found " << foundTracks->size() << " FTF tracks, updating the RoI");
78
79
80 // Retrieve input RoI descriptor
81 SG::ReadHandle<TrigRoiDescriptorCollection> roisHandle = SG::makeHandle(m_roIInputKey, ctx);
82 ATH_MSG_DEBUG("Size of roisHandle: " << roisHandle->size());
83 const TrigRoiDescriptor* roiDescriptor = roisHandle->at(0); // We only have one RoI in the handle
84
85
86 // Fill local variables for RoI reference position
87 float eta = roiDescriptor->eta();
88 float phi = roiDescriptor->phi();
89
90 float zed = roiDescriptor->zed();
91 float zedMinus = roiDescriptor->zedMinus();
92 float zedPlus = roiDescriptor->zedPlus();
93
94
95
96 //---------------------------------------------------------------
97 // Find leading track
98 //---------------------------------------------------------------
99
100 const xAOD::TrackParticle* leadTrack = nullptr;
101 float trkPtMax = 0;
102
103 // Use the highest-pt track satisfying quality cuts
104 // If no track is found, the input ROI is used
105 for(const xAOD::TrackParticle* track : *foundTracks) {
106
107 float trackPt = track->pt();
108 if(trackPt > trkPtMax) {
109 uint8_t nPix{}, nPixHoles{}, nSCTHoles{}, summaryVal{};
110 nPix = track->summaryValue(summaryVal, xAOD::numberOfPixelHits) ? summaryVal : 0;
111 if(nPix < m_nHitPix) {
112 ATH_MSG_DEBUG("Track rejected because nHitPix " << static_cast<int>(nPix) << " < " << m_nHitPix);
113 continue;
114 }
115
116 nPixHoles = track->summaryValue(summaryVal, xAOD::numberOfPixelHoles) ? summaryVal : 0;
117 nSCTHoles = track->summaryValue(summaryVal, xAOD::numberOfSCTHoles) ? summaryVal : 0;
118 if((nPixHoles + nSCTHoles) > m_nSiHoles) {
119 ATH_MSG_DEBUG("Track rejected because nSiHoles " << static_cast<int>(nPixHoles + nSCTHoles) << " > " << m_nSiHoles);
120 continue;
121 }
122
123 leadTrack = track;
124 trkPtMax = trackPt;
125 ATH_MSG_VERBOSE("pTmax = " << trkPtMax);
126 }
127 }
128
129
130
131 //---------------------------------------------------------------
132 // Update the RoI
133 //---------------------------------------------------------------
134
135 // If a leading track is found, update all the ROI position and size parameters;
136 // else, only update the eta/phi width (etaMinus, etaPlus, phiMinus, phiPlus)
137 if(leadTrack) {
138 zed = leadTrack->z0() + leadTrack->vz();
139 ATH_MSG_DEBUG("Track z0 " << leadTrack->z0() <<" vz: " << leadTrack->vz() << " zed:" << zed);
140 zedMinus = zed - m_z0HalfWidth;
141 zedPlus = zed + m_z0HalfWidth;
142 eta = leadTrack->eta();
143 phi = leadTrack->phi0();
144 }
145
146 float etaMinus = eta - m_etaHalfWidth;
147 float etaPlus = eta + m_etaHalfWidth;
148 float phiMinus = CxxUtils::wrapToPi(phi - m_phiHalfWidth);
149 float phiPlus = CxxUtils::wrapToPi(phi + m_phiHalfWidth);
150
151
152 // Create the new RoI
153 outputRoIHandle->push_back(std::make_unique<TrigRoiDescriptor>(
154 roiDescriptor->roiWord(), roiDescriptor->l1Id(), roiDescriptor->roiId(),
155 eta, etaMinus, etaPlus,
156 phi, phiMinus, phiPlus,
157 zed, zedMinus, zedPlus
158 ));
159
160
161 ATH_MSG_DEBUG("Input RoI: " << *roiDescriptor);
162 ATH_MSG_DEBUG("Output RoI: " << *outputRoIHandle->back());
163
164 return StatusCode::SUCCESS;
165}
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 31 of file TrigTauTrackRoiUpdater.cxx.

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

◆ 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 45 of file TrigTauTrackRoiUpdater.h.

45{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 47 of file TrigTauTrackRoiUpdater.h.

47{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 48 of file TrigTauTrackRoiUpdater.h.

48{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 46 of file TrigTauTrackRoiUpdater.h.

46{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 50 of file TrigTauTrackRoiUpdater.h.

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

◆ m_roIOutputKey

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

Definition at line 52 of file TrigTauTrackRoiUpdater.h.

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

◆ m_tracksKey

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

Definition at line 51 of file TrigTauTrackRoiUpdater.h.

51{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 44 of file TrigTauTrackRoiUpdater.h.

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

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