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 for( const TrigRoiDescriptor* roiDescriptor : *roiCollection) {
71 ATH_MSG_DEBUG ( "Running on RoI " << *roiDescriptor<< " FS="<<roiDescriptor->isFullscan());
72 if ( roiDescriptor->isFullscan() ) {
73 ATH_CHECK(m_dataAccessSvc->loadFullCollections( context, *cdv ));
74 cdv->setHasCalo(CaloCell_ID::LAREM);
75 cdv->setHasCalo(CaloCell_ID::LARHEC);
76 cdv->setHasCalo(CaloCell_ID::LARFCAL);
77 cdv->setHasCalo(CaloCell_ID::TILE);
78 cdv->updateCaloIterators();
79 clN=cdv->size();
80 if ( m_monCells ){
81 auto monitoring = Monitored::Group( m_monTool, timer, clN, clET, clEta, clPhi);
82 } else {
83 auto monitoring = Monitored::Group( m_monTool, timer, clN );
84 }
85
86 } else {
87 // TT EM PART
88 for(int sampling=0;sampling<4;sampling++){
89 LArTT_Selector<LArCellCont> sel;
90 ATH_CHECK(m_dataAccessSvc->loadCollections( context, *roiDescriptor, TTEM, sampling, sel ));
91 for( const auto cell : sel ) {cdv->push_back( cell ); }
92 }
93 cdv->setHasCalo(CaloCell_ID::LAREM);
94 // TT HEC PART
95 for(int sampling=0;sampling<4;sampling++){
96 LArTT_Selector<LArCellCont> sel;
97 ATH_CHECK(m_dataAccessSvc->loadCollections( context, *roiDescriptor, TTHEC, sampling, sel ));
98 for( const auto cell : sel ) {cdv->push_back( cell ); }
99 }
100 cdv->setHasCalo(CaloCell_ID::LARHEC);
101 // TILE PART
102 {
103 std::vector<const TileCell*> sel;
104 ATH_CHECK(m_dataAccessSvc->loadCollections( context, *roiDescriptor, sel ));
105 for( const auto cell : sel ) {
106 if(m_tileCellsInROI && !tileCellEtaInRoi(cell, roiDescriptor)) continue;
107 cdv->push_back( cell );
108 }
109 }
110 cdv->setHasCalo(CaloCell_ID::TILE);
111 // TT FCAL EM PART
112 {
113 LArTT_Selector<LArCellCont> sel;
114 ATH_CHECK(m_dataAccessSvc->loadCollections( context, *roiDescriptor, FCALEM, 0, sel ));
115 for( const auto cell : sel ) {cdv->push_back( cell ); }
116 }
117 cdv->setHasCalo(CaloCell_ID::LARFCAL);
118 // TT FCAL HAD PART
119 for(int sampling=0;sampling<2;sampling++){
120 LArTT_Selector<LArCellCont> sel;
121 ATH_CHECK(m_dataAccessSvc->loadCollections( context, *roiDescriptor, FCALHAD, sampling, sel ));
122 for( const auto cell : sel ) {cdv->push_back( cell ); }
123 }
124 cdv->setHasCalo(CaloCell_ID::LARFCAL);
125 cdv->updateCaloIterators();
126 }
127 ATH_MSG_DEBUG ("REGTEST: Producing "<<cdv->size()<<" cells");
128 clN=cdv->size();
129 if ( m_monCells ){
130 auto monitoring = Monitored::Group( m_monTool, timer, clN, clET, clEta, clPhi);
131 } else {
132 auto monitoring = Monitored::Group( m_monTool, timer, clN );
133 }
134 auto ss = cellContainer.record( std::move(cdv) );
135 ATH_CHECK( ss );
136
137 // we have to take care of this
138 if ( seedLess ) { delete roiCollection; }
139 return StatusCode::SUCCESS;
140 }
141
142 } else {
143 SG::WriteHandle<ConstDataVector<CaloCellContainerVector> > cellContainerV( m_cellContainerVKey, context );
144 auto cdv = std::make_unique<ConstDataVector<CaloCellContainerVector> >();
145 ATH_CHECK( cellContainerV.record( std::move(cdv) ) );
146 for( const TrigRoiDescriptor* roiDescriptor : *roiCollection) {
147 if ( roiDescriptor->isFullscan() ) {
148 auto c = std::make_unique<CaloConstCellContainer >(SG::VIEW_ELEMENTS);
149 auto clET = Monitored::Collection ("Cells_eT",*c,getCellPt);
150 auto clEta = Monitored::Collection ("Cells_eta",*c,&CaloCell::eta);
151 auto clPhi = Monitored::Collection ("Cells_phi",*c,&CaloCell::phi);
152 ATH_CHECK(m_dataAccessSvc->loadFullCollections( context, *c ));
153 clN=c->size();
154 if ( m_monCells ){
155 auto monitoring = Monitored::Group( m_monTool, timer, clN, clET, clEta, clPhi);
156 } else {
157 auto monitoring = Monitored::Group( m_monTool, timer, clN );
158 }
159 cellContainerV->push_back( c.release()->asDataVector() );
160 } else {
161 auto c = std::make_unique<CaloConstCellContainer >(SG::VIEW_ELEMENTS);
162 auto clET = Monitored::Collection ("Cells_eT",*c,getCellPt);
163 auto clEta = Monitored::Collection ("Cells_eta",*c,&CaloCell::eta);
164 auto clPhi = Monitored::Collection ("Cells_phi",*c,&CaloCell::phi);
165
166 // TT EM PART
167 for(int sampling=0;sampling<4;sampling++){
168 LArTT_Selector<LArCellCont> sel;
169 ATH_CHECK(m_dataAccessSvc->loadCollections( context, *roiDescriptor, TTEM, sampling, sel ));
170 for( const auto cell : sel ) {c->push_back( cell ); }
171 }
172 c->setHasCalo(CaloCell_ID::LAREM);
173 // TT HEC PART
174 for(int sampling=0;sampling<4;sampling++){
175 LArTT_Selector<LArCellCont> sel;
176 ATH_CHECK(m_dataAccessSvc->loadCollections( context, *roiDescriptor, TTHEC, sampling, sel ));
177 for( const auto cell : sel ) {c->push_back( cell ); }
178 }
179 c->setHasCalo(CaloCell_ID::LARHEC);
180 // TILE PART
181 {
182 std::vector<const TileCell*> sel;
183 ATH_CHECK(m_dataAccessSvc->loadCollections( context, *roiDescriptor, sel ));
184 for( const auto cell : sel ) {
185 if(m_tileCellsInROI && !tileCellEtaInRoi(cell, roiDescriptor)) continue;
186 c->push_back( cell );
187 }
188 }
189 c->setHasCalo(CaloCell_ID::TILE);
190 // TT FCAL EM PART
191 {
192 LArTT_Selector<LArCellCont> sel;
193 ATH_CHECK(m_dataAccessSvc->loadCollections( context, *roiDescriptor, FCALEM, 0, sel ));
194 for( const auto cell : sel ) {c->push_back( cell ); }
195 }
196 c->setHasCalo(CaloCell_ID::LARFCAL);
197 // TT FCAL HAD PART
198 for(int sampling=0;sampling<2;sampling++){
199 LArTT_Selector<LArCellCont> sel;
200 ATH_CHECK(m_dataAccessSvc->loadCollections( context, *roiDescriptor, FCALHAD, sampling, sel ));
201 for( const auto cell : sel ) {c->push_back( cell ); }
202 }
203 c->setHasCalo(CaloCell_ID::LARFCAL);
204 c->updateCaloIterators();
205 clN=c->size();
206 if ( m_monCells ){
207 auto monitoring = Monitored::Group( m_monTool, timer, clN, clET, clEta, clPhi);
208 } else {
209 auto monitoring = Monitored::Group( m_monTool, timer, clN);
210 }
211 cellContainerV->push_back( c.release()->asDataVector() );
212 }
213 }
214 }
215
216 if ( seedLess ) { delete roiCollection; }
217 return StatusCode::SUCCESS;
218}
#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: