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

NAME: HLTCaloCellMaker.h PACKAGE: Trigger/TrigAlgorithms/TrigT2CaloCommon. More...

#include <HLTCaloCellMaker.h>

Inheritance diagram for HLTCaloCellMaker:
Collaboration diagram for HLTCaloCellMaker:

Public Member Functions

 HLTCaloCellMaker (const std::string &name, ISvcLocator *pSvcLocator)
virtual StatusCode execute (const EventContext &context) const override
virtual StatusCode initialize () 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>

Static Private Member Functions

static double getCellPt (const CaloCell *aCell)
static bool tileCellEtaInRoi (const CaloCell *cell, const TrigRoiDescriptor *roi)

Private Attributes

SG::ReadHandleKey< TrigRoiDescriptorCollectionm_roiCollectionKey { this, "RoIs", "OutputRoIs", "RoIs to read in" }
SG::ReadHandleKey< CaloBCIDAveragem_bcidAvgKey { this, "BCIDAvgKey", "CaloBCIDAverage", "" }
SG::WriteHandleKey< ConstDataVector< CaloCellContainerVector > > m_cellContainerVKey { this, "CellsVName", "CellsVClusters", "Calo cells container" }
SG::WriteHandleKey< CaloConstCellContainerm_cellContainerKey { this, "CellsName", "CellsClusters", "Calo cells container" }
SG::ReadCondHandleKey< TileEMScalem_tileEMScaleKey { this, "TileEMSCaleKey", "TileEMScale", "" }
 FIXME: Temporary (i hope) to get dependency needed by BS converter.
ServiceHandle< ITrigCaloDataAccessSvcm_dataAccessSvc { this, "TrigDataAccessMT", "TrigCaloDataAccessSvc/TrigCaloDataAccessSvc", "Data Access for LVL2 Calo Algorithms in MT" }
ToolHandle< GenericMonitoringToolm_monTool { this, "MonTool", "", "Monitoring tool" }
Gaudi::Property< bool > m_roiMode { this, "roiMode", true, "RoiMode roi->CaloCellCollection" }
Gaudi::Property< bool > m_monCells { this, "monitorCells", false ,"monitorCells" }
Gaudi::Property< bool > m_tileCellsInROI { this, "TileCellsInROI", false, "Require tile cells to be within ROI" }
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

NAME: HLTCaloCellMaker.h PACKAGE: Trigger/TrigAlgorithms/TrigT2CaloCommon.

AUTHOR: Denis Oliveira Damazio

PURPOSE: New Algorithm to produce CaloCellContainer Test Algorithm to unpack sequence produces the CaloCellContainer output.

Definition at line 40 of file HLTCaloCellMaker.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

◆ HLTCaloCellMaker()

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

Definition at line 20 of file HLTCaloCellMaker.cxx.

21 : AthReentrantAlgorithm(name, pSvcLocator)
22{
23}

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

Definition at line 37 of file HLTCaloCellMaker.cxx.

37 {
38
39 auto timer = Monitored::Timer("TIME_exec");
40 auto clN = Monitored::Scalar ("Cells_N",-999.0);
41
42 const bool seedLess = m_roiCollectionKey.empty();
43 const TrigRoiDescriptorCollection* roiCollection;
44 if (!seedLess){
45 auto roisHandle = SG::makeHandle( m_roiCollectionKey, context );
46 if ( not roisHandle.isValid() ) {
47 ATH_MSG_ERROR("Cell maker did not get a valid RoIs collection");
48 return StatusCode::FAILURE;
49 }
50 roiCollection = roisHandle.cptr();
51 }
52 else { // it is seedLess
55 roiCol->push_back( FS );
56 roiCollection = const_cast<TrigRoiDescriptorCollection*>(roiCol);
57 }
58 ATH_MSG_DEBUG("Operating on " << roiCollection->size() <<"RoI(s)");
59
60 // datahandle
61 if ( m_roiMode ) {
62 if ( roiCollection->size() > 1 )
63 ATH_MSG_DEBUG ( "roiMode but multiple rois found, will only use the first one");
64
65 SG::WriteHandle<CaloConstCellContainer > cellContainer = SG::WriteHandle< CaloConstCellContainer > ( m_cellContainerKey, context );
66 auto cdv = std::make_unique<CaloConstCellContainer>(SG::VIEW_ELEMENTS);
67 auto clET = Monitored::Collection ("Cells_eT",*cdv,getCellPt);
68 auto clEta = Monitored::Collection ("Cells_eta",*cdv,&CaloCell::eta);
69 auto clPhi = Monitored::Collection ("Cells_phi",*cdv,&CaloCell::phi);
70 //loop only executes once, so coverity complains; suppress this as 'intentional'
71 //coverity[UNREACHABLE]
72 for( const TrigRoiDescriptor* roiDescriptor : *roiCollection) {
73 ATH_MSG_DEBUG ( "Running on RoI " << *roiDescriptor<< " FS="<<roiDescriptor->isFullscan());
74 if ( roiDescriptor->isFullscan() ) {
75 ATH_CHECK(m_dataAccessSvc->loadFullCollections( context, *cdv ));
76 cdv->setHasCalo(CaloCell_ID::LAREM);
77 cdv->setHasCalo(CaloCell_ID::LARHEC);
78 cdv->setHasCalo(CaloCell_ID::LARFCAL);
79 cdv->setHasCalo(CaloCell_ID::TILE);
80 cdv->updateCaloIterators();
81 clN=cdv->size();
82 if ( m_monCells ){
83 auto monitoring = Monitored::Group( m_monTool, timer, clN, clET, clEta, clPhi);
84 } else {
85 auto monitoring = Monitored::Group( m_monTool, timer, clN );
86 }
87
88 } else {
89 // TT EM PART
90 for(int sampling=0;sampling<4;sampling++){
91 LArTT_Selector<LArCellCont> sel;
92 ATH_CHECK(m_dataAccessSvc->loadCollections( context, *roiDescriptor, TTEM, sampling, sel ));
93 for( const auto cell : sel ) {cdv->push_back( cell ); }
94 }
95 cdv->setHasCalo(CaloCell_ID::LAREM);
96 // TT HEC PART
97 for(int sampling=0;sampling<4;sampling++){
98 LArTT_Selector<LArCellCont> sel;
99 ATH_CHECK(m_dataAccessSvc->loadCollections( context, *roiDescriptor, TTHEC, sampling, sel ));
100 for( const auto cell : sel ) {cdv->push_back( cell ); }
101 }
102 cdv->setHasCalo(CaloCell_ID::LARHEC);
103 // TILE PART
104 {
105 std::vector<const TileCell*> sel;
106 ATH_CHECK(m_dataAccessSvc->loadCollections( context, *roiDescriptor, sel ));
107 for( const auto cell : sel ) {
108 if(m_tileCellsInROI && !tileCellEtaInRoi(cell, roiDescriptor)) continue;
109 cdv->push_back( cell );
110 }
111 }
112 cdv->setHasCalo(CaloCell_ID::TILE);
113 // TT FCAL EM PART
114 {
115 LArTT_Selector<LArCellCont> sel;
116 ATH_CHECK(m_dataAccessSvc->loadCollections( context, *roiDescriptor, FCALEM, 0, sel ));
117 for( const auto cell : sel ) {cdv->push_back( cell ); }
118 }
119 cdv->setHasCalo(CaloCell_ID::LARFCAL);
120 // TT FCAL HAD PART
121 for(int sampling=0;sampling<2;sampling++){
122 LArTT_Selector<LArCellCont> sel;
123 ATH_CHECK(m_dataAccessSvc->loadCollections( context, *roiDescriptor, FCALHAD, sampling, sel ));
124 for( const auto cell : sel ) {cdv->push_back( cell ); }
125 }
126 cdv->setHasCalo(CaloCell_ID::LARFCAL);
127 cdv->updateCaloIterators();
128 }
129 ATH_MSG_DEBUG ("REGTEST: Producing "<<cdv->size()<<" cells");
130 clN=cdv->size();
131 if ( m_monCells ){
132 auto monitoring = Monitored::Group( m_monTool, timer, clN, clET, clEta, clPhi);
133 } else {
134 auto monitoring = Monitored::Group( m_monTool, timer, clN );
135 }
136 auto ss = cellContainer.record( std::move(cdv) );
137 ATH_CHECK( ss );
138
139 // we have to take care of this
140 if ( seedLess ) { delete roiCollection; }
141 return StatusCode::SUCCESS;
142 }
143
144 } else {
145 SG::WriteHandle<ConstDataVector<CaloCellContainerVector> > cellContainerV( m_cellContainerVKey, context );
146 auto cdv = std::make_unique<ConstDataVector<CaloCellContainerVector> >();
147 ATH_CHECK( cellContainerV.record( std::move(cdv) ) );
148 for( const TrigRoiDescriptor* roiDescriptor : *roiCollection) {
149 if ( roiDescriptor->isFullscan() ) {
150 auto c = std::make_unique<CaloConstCellContainer >(SG::VIEW_ELEMENTS);
151 auto clET = Monitored::Collection ("Cells_eT",*c,getCellPt);
152 auto clEta = Monitored::Collection ("Cells_eta",*c,&CaloCell::eta);
153 auto clPhi = Monitored::Collection ("Cells_phi",*c,&CaloCell::phi);
154 ATH_CHECK(m_dataAccessSvc->loadFullCollections( context, *c ));
155 clN=c->size();
156 if ( m_monCells ){
157 auto monitoring = Monitored::Group( m_monTool, timer, clN, clET, clEta, clPhi);
158 } else {
159 auto monitoring = Monitored::Group( m_monTool, timer, clN );
160 }
161 cellContainerV->push_back( c.release()->asDataVector() );
162 } else {
163 auto c = std::make_unique<CaloConstCellContainer >(SG::VIEW_ELEMENTS);
164 auto clET = Monitored::Collection ("Cells_eT",*c,getCellPt);
165 auto clEta = Monitored::Collection ("Cells_eta",*c,&CaloCell::eta);
166 auto clPhi = Monitored::Collection ("Cells_phi",*c,&CaloCell::phi);
167
168 // TT EM PART
169 for(int sampling=0;sampling<4;sampling++){
170 LArTT_Selector<LArCellCont> sel;
171 ATH_CHECK(m_dataAccessSvc->loadCollections( context, *roiDescriptor, TTEM, sampling, sel ));
172 for( const auto cell : sel ) {c->push_back( cell ); }
173 }
174 c->setHasCalo(CaloCell_ID::LAREM);
175 // TT HEC PART
176 for(int sampling=0;sampling<4;sampling++){
177 LArTT_Selector<LArCellCont> sel;
178 ATH_CHECK(m_dataAccessSvc->loadCollections( context, *roiDescriptor, TTHEC, sampling, sel ));
179 for( const auto cell : sel ) {c->push_back( cell ); }
180 }
181 c->setHasCalo(CaloCell_ID::LARHEC);
182 // TILE PART
183 {
184 std::vector<const TileCell*> sel;
185 ATH_CHECK(m_dataAccessSvc->loadCollections( context, *roiDescriptor, sel ));
186 for( const auto cell : sel ) {
187 if(m_tileCellsInROI && !tileCellEtaInRoi(cell, roiDescriptor)) continue;
188 c->push_back( cell );
189 }
190 }
191 c->setHasCalo(CaloCell_ID::TILE);
192 // TT FCAL EM PART
193 {
194 LArTT_Selector<LArCellCont> sel;
195 ATH_CHECK(m_dataAccessSvc->loadCollections( context, *roiDescriptor, FCALEM, 0, sel ));
196 for( const auto cell : sel ) {c->push_back( cell ); }
197 }
198 c->setHasCalo(CaloCell_ID::LARFCAL);
199 // TT FCAL HAD PART
200 for(int sampling=0;sampling<2;sampling++){
201 LArTT_Selector<LArCellCont> sel;
202 ATH_CHECK(m_dataAccessSvc->loadCollections( context, *roiDescriptor, FCALHAD, sampling, sel ));
203 for( const auto cell : sel ) {c->push_back( cell ); }
204 }
205 c->setHasCalo(CaloCell_ID::LARFCAL);
206 c->updateCaloIterators();
207 clN=c->size();
208 if ( m_monCells ){
209 auto monitoring = Monitored::Group( m_monTool, timer, clN, clET, clEta, clPhi);
210 } else {
211 auto monitoring = Monitored::Group( m_monTool, timer, clN);
212 }
213 cellContainerV->push_back( c.release()->asDataVector() );
214 }
215 }
216 }
217
218 if ( seedLess ) { delete roiCollection; }
219 return StatusCode::SUCCESS;
220}
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_ERROR(x)
#define ATH_MSG_DEBUG(x)
static Double_t ss
@ FCALEM
Definition RegSelEnums.h:35
@ TTHEC
Definition RegSelEnums.h:29
@ FCALHAD
Definition RegSelEnums.h:36
@ TTEM
Definition RegSelEnums.h:28
Athena::TPCnvVers::Current Athena::TPCnvVers::Old TrigRoiDescriptorCollection
Athena::TPCnvVers::Current TrigRoiDescriptor
virtual double phi() const override final
get phi (through CaloDetDescrElement)
Definition CaloCell.h:375
virtual double eta() const override final
get eta (through CaloDetDescrElement)
Definition CaloCell.h:382
value_type push_back(value_type pElem)
Add an element to the end of the collection.
size_type size() const noexcept
Returns the number of elements in the collection.
Gaudi::Property< bool > m_monCells
SG::WriteHandleKey< ConstDataVector< CaloCellContainerVector > > m_cellContainerVKey
SG::ReadHandleKey< TrigRoiDescriptorCollection > m_roiCollectionKey
ToolHandle< GenericMonitoringTool > m_monTool
static bool tileCellEtaInRoi(const CaloCell *cell, const TrigRoiDescriptor *roi)
SG::WriteHandleKey< CaloConstCellContainer > m_cellContainerKey
Gaudi::Property< bool > m_roiMode
static double getCellPt(const CaloCell *aCell)
ServiceHandle< ITrigCaloDataAccessSvc > m_dataAccessSvc
Gaudi::Property< bool > m_tileCellsInROI
StatusCode record(std::unique_ptr< T > data)
Record a const object to the store.
ValuesCollection< T > Collection(std::string name, const T &collection)
Declare a monitored (double-convertible) collection.
@ VIEW_ELEMENTS
this data object is a view, it does not own its elmts
SG::ReadCondHandle< T > makeHandle(const SG::ReadCondHandleKey< T > &key, const EventContext &ctx=Gaudi::Hive::currentContext())
timer(name, disabled=False)

◆ 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

◆ getCellPt()

double HLTCaloCellMaker::getCellPt ( const CaloCell * aCell)
inlinestaticprivate

Definition at line 68 of file HLTCaloCellMaker.h.

68 {
69 if(!aCell) return -999.0;
70 return aCell->et();
71 }
virtual double et() const override final
get et
Definition CaloCell.h:423

◆ initialize()

StatusCode HLTCaloCellMaker::initialize ( )
overridevirtual

Definition at line 25 of file HLTCaloCellMaker.cxx.

25 {
26
30 ATH_CHECK( m_tileEMScaleKey.initialize() );
31 ATH_CHECK( m_bcidAvgKey.initialize() );
32 CHECK( m_dataAccessSvc.retrieve() );
33 if (! m_monTool.empty() ) ATH_CHECK( m_monTool.retrieve() );
34 return StatusCode::SUCCESS;
35}
#define CHECK(...)
Evaluate an expression and check for errors.
SG::ReadCondHandleKey< TileEMScale > m_tileEMScaleKey
FIXME: Temporary (i hope) to get dependency needed by BS converter.
SG::ReadHandleKey< CaloBCIDAverage > m_bcidAvgKey

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

◆ tileCellEtaInRoi()

bool HLTCaloCellMaker::tileCellEtaInRoi ( const CaloCell * cell,
const TrigRoiDescriptor * roi )
inlinestaticprivate

Definition at line 74 of file HLTCaloCellMaker.h.

74 {
75 if (cell->eta() < roi->etaMinus() || cell->eta() > roi->etaPlus()) return false;
76 return true;
77 }
virtual double etaMinus() const override final
gets eta at zMinus
virtual double etaPlus() const override final
gets eta at zedPlus

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

SG::ReadHandleKey<CaloBCIDAverage> HLTCaloCellMaker::m_bcidAvgKey { this, "BCIDAvgKey", "CaloBCIDAverage", "" }
private

Definition at line 49 of file HLTCaloCellMaker.h.

49{ this, "BCIDAvgKey", "CaloBCIDAverage", "" };

◆ m_cellContainerKey

SG::WriteHandleKey<CaloConstCellContainer > HLTCaloCellMaker::m_cellContainerKey { this, "CellsName", "CellsClusters", "Calo cells container" }
private

Definition at line 52 of file HLTCaloCellMaker.h.

52{ this, "CellsName", "CellsClusters", "Calo cells container" };

◆ m_cellContainerVKey

SG::WriteHandleKey<ConstDataVector<CaloCellContainerVector> > HLTCaloCellMaker::m_cellContainerVKey { this, "CellsVName", "CellsVClusters", "Calo cells container" }
private

Definition at line 51 of file HLTCaloCellMaker.h.

51{ this, "CellsVName", "CellsVClusters", "Calo cells container" };

◆ m_dataAccessSvc

ServiceHandle<ITrigCaloDataAccessSvc> HLTCaloCellMaker::m_dataAccessSvc { this, "TrigDataAccessMT", "TrigCaloDataAccessSvc/TrigCaloDataAccessSvc", "Data Access for LVL2 Calo Algorithms in MT" }
private

Definition at line 57 of file HLTCaloCellMaker.h.

58{ this, "TrigDataAccessMT", "TrigCaloDataAccessSvc/TrigCaloDataAccessSvc", "Data Access for LVL2 Calo Algorithms in MT" };

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

Gaudi::Property<bool> HLTCaloCellMaker::m_monCells { this, "monitorCells", false ,"monitorCells" }
private

Definition at line 63 of file HLTCaloCellMaker.h.

63{ this, "monitorCells", false ,"monitorCells" };

◆ m_monTool

ToolHandle< GenericMonitoringTool > HLTCaloCellMaker::m_monTool { this, "MonTool", "", "Monitoring tool" }
private

Definition at line 60 of file HLTCaloCellMaker.h.

60{ this, "MonTool", "", "Monitoring tool" };

◆ m_roiCollectionKey

SG::ReadHandleKey<TrigRoiDescriptorCollection> HLTCaloCellMaker::m_roiCollectionKey { this, "RoIs", "OutputRoIs", "RoIs to read in" }
private

Definition at line 48 of file HLTCaloCellMaker.h.

48{ this, "RoIs", "OutputRoIs", "RoIs to read in" };

◆ m_roiMode

Gaudi::Property<bool> HLTCaloCellMaker::m_roiMode { this, "roiMode", true, "RoiMode roi->CaloCellCollection" }
private

Definition at line 62 of file HLTCaloCellMaker.h.

62{ this, "roiMode", true, "RoiMode roi->CaloCellCollection" };

◆ m_tileCellsInROI

Gaudi::Property<bool> HLTCaloCellMaker::m_tileCellsInROI { this, "TileCellsInROI", false, "Require tile cells to be within ROI" }
private

Definition at line 64 of file HLTCaloCellMaker.h.

64{ this, "TileCellsInROI", false, "Require tile cells to be within ROI" };

◆ m_tileEMScaleKey

SG::ReadCondHandleKey<TileEMScale> HLTCaloCellMaker::m_tileEMScaleKey { this, "TileEMSCaleKey", "TileEMScale", "" }
private

FIXME: Temporary (i hope) to get dependency needed by BS converter.

Definition at line 55 of file HLTCaloCellMaker.h.

55{ this, "TileEMSCaleKey", "TileEMScale", "" };

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