ATLAS Offline Software
Loading...
Searching...
No Matches
JiveXML::CaloLArRetriever Class Reference

Retrieves all Calo Cluster objects. More...

#include <CaloLArRetriever.h>

Inheritance diagram for JiveXML::CaloLArRetriever:
Collaboration diagram for JiveXML::CaloLArRetriever:

Public Member Functions

 CaloLArRetriever (const std::string &type, const std::string &name, const IInterface *parent)
 Standard Constructor.
virtual StatusCode retrieve (ToolHandle< IFormatTool > &FormatTool)
 Retrieve all the data.
const DataMap getLArData (const CaloCellContainer *cellContainer)
 Retrieve LAr cell location and details.
virtual std::string dataTypeName () const
 Return the name of the data type.
StatusCode initialize ()
 Default AthAlgTool methods.
ServiceHandle< StoreGateSvc > & evtStore ()
 The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc.
const ServiceHandle< StoreGateSvc > & detStore () const
 The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc.
virtual StatusCode sysInitialize () override
 Perform system initialization for an algorithm.
virtual StatusCode sysStart () override
 Handle START transition.
virtual std::vector< Gaudi::DataHandle * > inputHandles () const override
 Return this algorithm's input handles.
virtual std::vector< Gaudi::DataHandle * > outputHandles () const override
 Return this algorithm's output handles.
Gaudi::Details::PropertyBase & declareProperty (Gaudi::Property< T, V, H > &t)
void updateVHKA (Gaudi::Details::PropertyBase &)
MsgStream & msg () const
bool msgLvl (const MSG::Level lvl) const

Static Public Member Functions

static const InterfaceID & interfaceID ()
 Return the interface identifier.

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

const CaloCell_IDm_calocell_id {}
SG::ReadCondHandleKey< LArOnOffIdMappingm_cablingKey {this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}
SG::ReadCondHandleKey< LArADC2MeVm_adc2mevKey { this, "ADC2MeVKey", "LArADC2MeV", "SG Key of the LArADC2MeV CDO" }
SG::ReadHandleKey< CaloCellContainerm_sgKey {this, "StoreGateKey", "AllCalo", "Name of the CaloCellContainer"}
 for properties
double m_cellThreshold {}
int m_cellEnergyPrec {}
int m_cellTimePrec {}
bool m_lar {}
bool m_doLArCellDetails {}
bool m_cellConditionCut {}
std::vector< Identifier::value_type > m_LArChannelsToIgnoreM5
bool m_doMaskLArChannelsM5 {}
bool m_doBadLAr {}
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

Retrieves all Calo Cluster objects.

  • Properties
    • StoreGateKey: default is 'AllCalo'. Don't change.
    • LArlCellThreshold: default is 50 (MeV)
    • RetrieveLAr: general flag, default is true
    • DoLArCellDetails: default is false
    • CellConditionCut: default is false
    • LArChannelsToIgnoreM5: default is empty (none ignored). Input: vector of cells
      • DoMaskLArChannelsM5: default is false (none masked)
      • CellEnergyPrec: precision in int, default is 3 digits
      • CellTimePrec: precision in int, default is 3 digits
  • Retrieved Data
    • location in phi and eta
    • numCells: number of cells in each cluster
    • cells: identifier and adc counts of each cell

Definition at line 50 of file CaloLArRetriever.h.

Member Typedef Documentation

◆ StoreGateSvc_t

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

Definition at line 388 of file AthCommonDataStore.h.

Constructor & Destructor Documentation

◆ CaloLArRetriever()

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

Standard Constructor.

This is the standard AthAlgTool constructor.

Parameters
typeAlgTool type name
nameAlgTool instance name
parentAlgTools parent owning this tool

Definition at line 31 of file CaloLArRetriever.cxx.

31 :
32 AthAlgTool(type,name,parent),
33 m_calocell_id(nullptr)
34 {
35
36 //Only declare the interface
37 declareInterface<IDataRetriever>(this);
38
39 declareInterface<IDataRetriever>(this);
40 declareProperty("LArlCellThreshold", m_cellThreshold = 50.);
41 declareProperty("RetrieveLAr" , m_lar = true);
42 declareProperty("DoBadLAr", m_doBadLAr = false);
43 declareProperty("DoLArCellDetails", m_doLArCellDetails = false);
44 declareProperty("CellConditionCut", m_cellConditionCut = false);
45 declareProperty("LArChannelsToIgnoreM5", m_LArChannelsToIgnoreM5);
46 declareProperty("DoMaskLArChannelsM5", m_doMaskLArChannelsM5 = false);
47
48 declareProperty("CellEnergyPrec", m_cellEnergyPrec = 3);
49 declareProperty("CellTimePrec", m_cellTimePrec = 3);
50 }
AthAlgTool()
Default constructor:
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T, V, H > &t)
const CaloCell_ID * m_calocell_id
std::vector< Identifier::value_type > m_LArChannelsToIgnoreM5

Member Function Documentation

◆ dataTypeName()

virtual std::string JiveXML::CaloLArRetriever::dataTypeName ( ) const
inlinevirtual

Return the name of the data type.

Implements JiveXML::IDataRetriever.

Definition at line 63 of file CaloLArRetriever.h.

63{ return "LAr"; };

◆ declareGaudiProperty()

Gaudi::Details::PropertyBase & AthCommonDataStore< AthCommonMsg< AlgTool > >::declareGaudiProperty ( Gaudi::Property< T, V, H > & hndl,
const SG::VarHandleKeyType &  )
inlineprivateinherited

specialization for handling Gaudi::Property<SG::VarHandleKey>

Definition at line 156 of file AthCommonDataStore.h.

158 {
160 hndl.value(),
161 hndl.documentation());
162
163 }

◆ declareProperty()

Gaudi::Details::PropertyBase & AthCommonDataStore< AthCommonMsg< AlgTool > >::declareProperty ( Gaudi::Property< T, V, H > & t)
inlineinherited

Definition at line 145 of file AthCommonDataStore.h.

145 {
146 typedef typename SG::HandleClassifier<T>::type htype;
148 }
Gaudi::Details::PropertyBase & declareGaudiProperty(Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
specialization for handling Gaudi::Property<SG::VarHandleKey>

◆ detStore()

const ServiceHandle< StoreGateSvc > & AthCommonDataStore< AthCommonMsg< AlgTool > >::detStore ( ) const
inlineinherited

The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc.

Definition at line 95 of file AthCommonDataStore.h.

◆ evtStore()

ServiceHandle< StoreGateSvc > & AthCommonDataStore< AthCommonMsg< AlgTool > >::evtStore ( )
inlineinherited

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

Definition at line 85 of file AthCommonDataStore.h.

◆ extraDeps_update_handler()

void AthCommonDataStore< AthCommonMsg< AlgTool > >::extraDeps_update_handler ( Gaudi::Details::PropertyBase & ExtraDeps)
protectedinherited

Add StoreName to extra input/output deps as needed.

use the logic of the VarHandleKey to parse the DataObjID keys supplied via the ExtraInputs and ExtraOuputs Properties to add the StoreName if it's not explicitly given

◆ getLArData()

const DataMap JiveXML::CaloLArRetriever::getLArData ( const CaloCellContainer * cellContainer)

Retrieve LAr cell location and details.

Parameters
FormatToolthe tool that will create formated output from the DataMap

Definition at line 96 of file CaloLArRetriever.cxx.

96 {
97
98 ATH_MSG_DEBUG( "getLArData()" );
99 const EventContext& ctx = Gaudi::Hive::currentContext();
100
102
103 DataVect phi; phi.reserve(cellContainer->size());
104 DataVect eta; eta.reserve(cellContainer->size());
105 DataVect energy; energy.reserve(cellContainer->size());
106 DataVect idVec; idVec.reserve(cellContainer->size());
107 DataVect channel; channel.reserve(cellContainer->size());
108 DataVect feedThrough; feedThrough.reserve(cellContainer->size());
109 DataVect slot; slot.reserve(cellContainer->size());
110
111 DataVect cellTimeVec; cellTimeVec.reserve(cellContainer->size());
112 DataVect cellGain; cellGain.reserve(cellContainer->size());
113 DataVect cellPedestal; cellPedestal.reserve(cellContainer->size());
114 DataVect adc2Mev; adc2Mev.reserve(cellContainer->size());
115 DataVect BadCell; BadCell.reserve(cellContainer->size());
116
117 char rndStr[30]; // for rounding (3 digit precision)
118
121
122
123 const ILArPedestal* larPedestal = nullptr;
125 if( detStore()->retrieve(larPedestal).isFailure() ){
126 ATH_MSG_ERROR( "in getLArData(), Could not retrieve LAr Pedestal" );
127 }
128 }
129
130 const LArOnlineID* onlineId = nullptr;
131 if ( detStore()->retrieve(onlineId, "LArOnlineID").isFailure()) {
132 ATH_MSG_ERROR( "in getLArData(),Could not get LArOnlineID!" );
133 }
134
135 const LArADC2MeV* adc2mev = nullptr;
136 if (m_doLArCellDetails) {
137 SG::ReadCondHandle<LArADC2MeV> adc2mevH (m_adc2mevKey, ctx);
138 adc2mev = *adc2mevH;
139 }
140
141 double energyGeV,cellTime;
142 double energyAllLArBarrel = 0.;
143
144 ATH_MSG_DEBUG( "Start iterator loop over cells" );
145
146 SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey, ctx};
147 const LArOnOffIdMapping* cabling{*cablingHdl};
148 if(!cabling) {
149 ATH_MSG_ERROR( "Do not have cabling mapping from key " << m_cablingKey.key() );
150 return dataMap;
151 }
152
153
154 for(;it1!=it2;++it1){
155 if ((*it1)->energy() < m_cellThreshold) continue; // skip to next cell if threshold not passed
156
157 if((*it1)->badcell()){ BadCell.push_back(1); }
158 else{ BadCell.push_back(-1); }
159
160 if ((((*it1)->provenance()&0xFF)!=0xA5)&&m_cellConditionCut) continue; // check full conditions for LAr
161 Identifier cellid = (*it1)->ID();
162
163 HWIdentifier LArhwid = cabling->createSignalChannelIDFromHash((*it1)->caloDDE()->calo_hash());
164
165 //ignore LAr cells that are to be masked
167 bool maskChannel = false;
168 for (size_t i = 0; i < m_LArChannelsToIgnoreM5.size(); i++){
169 if (cellid == m_LArChannelsToIgnoreM5[i]){
170 maskChannel = true;
171 break; // exit loop over bad channels
172 }
173 }
174 if (maskChannel) continue; // continue loop over all channels
175 }
176 energyGeV = (*it1)->energy()*(1./GeV);
177 if (energyGeV == 0) energyGeV = 0.001; // 1 MeV due to LegoCut > 0.0 (couldn't be >= 0.0)
178 energy.emplace_back( gcvt( energyGeV, m_cellEnergyPrec, rndStr) );
179 energyAllLArBarrel += energyGeV;
180
181 idVec.emplace_back((Identifier::value_type)(*it1)->ID().get_compact() );
182 phi.emplace_back((*it1)->phi());
183 eta.emplace_back((*it1)->eta());
184 channel.emplace_back(onlineId->channel(LArhwid));
185 feedThrough.emplace_back(onlineId->feedthrough(LArhwid));
186 slot.emplace_back(onlineId->slot(LArhwid));
187
188 if ( m_doLArCellDetails){
189 cellTime = (*it1)->time();
190 cellTimeVec.emplace_back( gcvt( cellTime, m_cellTimePrec, rndStr) );
191 cellGain.emplace_back( (*it1)->gain() );
192
193 int largain = (*it1)->gain();
194 float pedestal=larPedestal->pedestal(LArhwid,largain);
195 float pedvalue=0;
196 if (pedestal >= (1.0+LArElecCalib::ERRORCODE)) pedvalue = pedestal;
197 else pedvalue = 0;
198 cellPedestal.emplace_back(pedvalue);
199 LArVectorProxy polynom_adc2mev = adc2mev->ADC2MEV(cellid,largain);
200 if (polynom_adc2mev.size()==0){ adc2Mev.emplace_back(-1); }
201 else{ adc2Mev.emplace_back(polynom_adc2mev[1]); }
202 }
203 }
204
205 ATH_MSG_DEBUG( " Total energy in LAr barrel in GeV : " << energyAllLArBarrel );
206
207 // write values into dataMap
208 const auto nEntries = phi.size() ;
209 dataMap["phi"] = std::move(phi);
210 dataMap["eta"] = std::move(eta);
211 dataMap["energy"] = std::move(energy);
212 dataMap["id"] = std::move(idVec);
213 dataMap["channel"] = std::move(channel);
214 dataMap["feedThrough"] = std::move(feedThrough);
215 dataMap["slot"] = std::move(slot);
216
217 //Bad Cells
218 if (m_doBadLAr==true) {
219 dataMap["BadCell"] = std::move(BadCell);
220 }
221
222 // adc counts
223 if ( m_doLArCellDetails){
224 dataMap["cellTime"] = std::move(cellTimeVec);
225 dataMap["cellGain"] = std::move(cellGain);
226 dataMap["cellPedestal"] = std::move(cellPedestal);
227 dataMap["adc2Mev"] = std::move(adc2Mev);
228 }
229 //Be verbose
230 ATH_MSG_DEBUG( dataTypeName() << " , collection: " << dataTypeName()
231 << " retrieved with " << nEntries << " entries" );
232
233 //All collections retrieved okay
234 return dataMap;
235
236 } // getLArData
Scalar eta() const
pseudorapidity method
Scalar phi() const
phi method
#define ATH_MSG_ERROR(x)
#define ATH_MSG_DEBUG(x)
const ServiceHandle< StoreGateSvc > & detStore() const
CaloCellContainer::const_iterator beginConstCalo(CaloCell_ID::SUBCALO caloNum) const
get const iterators on cell of just one calo
CaloCellContainer::const_iterator endConstCalo(CaloCell_ID::SUBCALO caloNum) const
DataModel_detail::const_iterator< DataVector > const_iterator
Definition DataVector.h:838
size_type size() const noexcept
Returns the number of elements in the collection.
virtual float pedestal(const HWIdentifier &id, int gain) const =0
virtual std::string dataTypeName() const
Return the name of the data type.
SG::ReadCondHandleKey< LArOnOffIdMapping > m_cablingKey
SG::ReadCondHandleKey< LArADC2MeV > m_adc2mevKey
virtual StatusCode retrieve(ToolHandle< IFormatTool > &FormatTool)
Retrieve all the data.
const LArVectorProxy ADC2MEV(const HWIdentifier &id, int gain) const
Definition LArADC2MeV.h:32
int feedthrough(const HWIdentifier id) const
Return the feedthrough of a hardware cell identifier : feedthrough = [0,31] Barrel - A/C side or H/...
int slot(const HWIdentifier id) const
Return the slot number of a hardware cell identifier: slot = [1,15] Slot-ID in top part of the crat...
int channel(const HWIdentifier id) const
Return the channel number of a hardware cell identifier channel = [0,127] in all FEB.
std::map< std::string, DataVect > DataMap
Definition DataType.h:59
std::vector< DataType > DataVect
Defines a map with a key and a vector of DataType objects e.g.
Definition DataType.h:58

◆ initialize()

StatusCode JiveXML::CaloLArRetriever::initialize ( )

Default AthAlgTool methods.

Initialise the ToolSvc.

Definition at line 56 of file CaloLArRetriever.cxx.

56 {
57
58 ATH_MSG_DEBUG( "Initialising Tool" );
59 ATH_CHECK( detStore()->retrieve (m_calocell_id, "CaloCell_ID") );
60
61 ATH_CHECK( m_sgKey.initialize() );
62 ATH_CHECK( m_cablingKey.initialize() );
64
65 return StatusCode::SUCCESS;
66 }
#define ATH_CHECK
Evaluate an expression and check for errors.
SG::ReadHandleKey< CaloCellContainer > m_sgKey
for properties

◆ inputHandles()

virtual std::vector< Gaudi::DataHandle * > AthCommonDataStore< AthCommonMsg< AlgTool > >::inputHandles ( ) const
overridevirtualinherited

Return this algorithm's input handles.

We override this to include handle instances from key arrays if they have not yet been declared. See comments on updateVHKA.

◆ interfaceID()

const InterfaceID & JiveXML::IDataRetriever::interfaceID ( )
inlinestaticinherited

Return the interface identifier.

Definition at line 40 of file IDataRetriever.h.

40{ return IID_IDataRetriever; }
static const InterfaceID IID_IDataRetriever("JiveXML::IDataRetriever", 3, 0)

◆ msg()

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

Definition at line 24 of file AthCommonMsg.h.

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

◆ msgLvl()

bool AthCommonMsg< AlgTool >::msgLvl ( const MSG::Level lvl) const
inlineinherited

Definition at line 30 of file AthCommonMsg.h.

30 {
31 return this->msgLevel(lvl);
32 }

◆ outputHandles()

virtual std::vector< Gaudi::DataHandle * > AthCommonDataStore< AthCommonMsg< AlgTool > >::outputHandles ( ) const
overridevirtualinherited

Return this algorithm's output handles.

We override this to include handle instances from key arrays if they have not yet been declared. See comments on updateVHKA.

◆ renounce()

std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&T::renounce)(T)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, T > &&std::is_base_of_v< Gaudi::DataHandle, T >, void > AthCommonDataStore< AthCommonMsg< AlgTool > >::renounce ( T & h)
inlineprotectedinherited

Definition at line 380 of file AthCommonDataStore.h.

381 {
382 h.renounce();
384 }
std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&T::renounce)(T)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, T > &&std::is_base_of_v< Gaudi::DataHandle, T >, void > renounce(T &h)

◆ renounceArray()

void AthCommonDataStore< AthCommonMsg< AlgTool > >::renounceArray ( SG::VarHandleKeyArray & handlesArray)
inlineprotectedinherited

remove all handles from I/O resolution

Definition at line 364 of file AthCommonDataStore.h.

364 {
366 }

◆ retrieve()

StatusCode JiveXML::CaloLArRetriever::retrieve ( ToolHandle< IFormatTool > & FormatTool)
virtual

Retrieve all the data.

LAr data retrieval from default collection.

Implements JiveXML::IDataRetriever.

Definition at line 71 of file CaloLArRetriever.cxx.

71 {
72
73 ATH_MSG_DEBUG( "in retrieve()" );
74
75 SG::ReadHandle<CaloCellContainer> cellContainer(m_sgKey);
76 if (!cellContainer.isValid()){
77 ATH_MSG_WARNING( "Could not retrieve Calorimeter Cells " );
78 }
79 else{
80 if(m_lar){
81 DataMap data = getLArData(&(*cellContainer));
82 ATH_CHECK( FormatTool->AddToEvent(dataTypeName(), m_sgKey.key(), &data) );
83 ATH_MSG_DEBUG( "LAr retrieved" );
84 }
85 }
86
87 //LAr cells retrieved okay
88 return StatusCode::SUCCESS;
89 }
#define ATH_MSG_WARNING(x)
char data[hepevt_bytes_allocation_ATLAS]
Definition HepEvt.cxx:11
const DataMap getLArData(const CaloCellContainer *cellContainer)
Retrieve LAr cell location and details.

◆ sysInitialize()

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

Perform system initialization for an algorithm.

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

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

◆ sysStart()

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

Handle START transition.

We override this in order to make sure that conditions handle keys can cache a pointer to the conditions container.

◆ updateVHKA()

void AthCommonDataStore< AthCommonMsg< AlgTool > >::updateVHKA ( Gaudi::Details::PropertyBase & )
inlineinherited

Definition at line 308 of file AthCommonDataStore.h.

308 {
309 // debug() << "updateVHKA for property " << p.name() << " " << p.toString()
310 // << " size: " << m_vhka.size() << endmsg;
311 for (auto &a : m_vhka) {
313 for (auto k : keys) {
314 k->setOwner(this);
315 }
316 }
317 }
std::vector< SG::VarHandleKeyArray * > m_vhka

Member Data Documentation

◆ m_adc2mevKey

SG::ReadCondHandleKey<LArADC2MeV> JiveXML::CaloLArRetriever::m_adc2mevKey { this, "ADC2MeVKey", "LArADC2MeV", "SG Key of the LArADC2MeV CDO" }
private

Definition at line 73 of file CaloLArRetriever.h.

74{ this, "ADC2MeVKey", "LArADC2MeV", "SG Key of the LArADC2MeV CDO" };

◆ m_cablingKey

SG::ReadCondHandleKey<LArOnOffIdMapping> JiveXML::CaloLArRetriever::m_cablingKey {this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}
private

Definition at line 71 of file CaloLArRetriever.h.

71{this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"};

◆ m_calocell_id

const CaloCell_ID* JiveXML::CaloLArRetriever::m_calocell_id {}
private

Definition at line 70 of file CaloLArRetriever.h.

70{};

◆ m_cellConditionCut

bool JiveXML::CaloLArRetriever::m_cellConditionCut {}
private

Definition at line 83 of file CaloLArRetriever.h.

83{};

◆ m_cellEnergyPrec

int JiveXML::CaloLArRetriever::m_cellEnergyPrec {}
private

Definition at line 79 of file CaloLArRetriever.h.

79{};

◆ m_cellThreshold

double JiveXML::CaloLArRetriever::m_cellThreshold {}
private

Definition at line 78 of file CaloLArRetriever.h.

78{};

◆ m_cellTimePrec

int JiveXML::CaloLArRetriever::m_cellTimePrec {}
private

Definition at line 80 of file CaloLArRetriever.h.

80{};

◆ m_detStore

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

Pointer to StoreGate (detector store by default)

Definition at line 393 of file AthCommonDataStore.h.

◆ m_doBadLAr

bool JiveXML::CaloLArRetriever::m_doBadLAr {}
private

Definition at line 86 of file CaloLArRetriever.h.

86{};

◆ m_doLArCellDetails

bool JiveXML::CaloLArRetriever::m_doLArCellDetails {}
private

Definition at line 82 of file CaloLArRetriever.h.

82{};

◆ m_doMaskLArChannelsM5

bool JiveXML::CaloLArRetriever::m_doMaskLArChannelsM5 {}
private

Definition at line 85 of file CaloLArRetriever.h.

85{};

◆ m_evtStore

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

Pointer to StoreGate (event store by default)

Definition at line 390 of file AthCommonDataStore.h.

◆ m_lar

bool JiveXML::CaloLArRetriever::m_lar {}
private

Definition at line 81 of file CaloLArRetriever.h.

81{};

◆ m_LArChannelsToIgnoreM5

std::vector<Identifier::value_type> JiveXML::CaloLArRetriever::m_LArChannelsToIgnoreM5
private

Definition at line 84 of file CaloLArRetriever.h.

◆ m_sgKey

SG::ReadHandleKey<CaloCellContainer> JiveXML::CaloLArRetriever::m_sgKey {this, "StoreGateKey", "AllCalo", "Name of the CaloCellContainer"}
private

for properties

Definition at line 77 of file CaloLArRetriever.h.

77{this, "StoreGateKey", "AllCalo", "Name of the CaloCellContainer"};

◆ m_varHandleArraysDeclared

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

Definition at line 399 of file AthCommonDataStore.h.

◆ m_vhka

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

Definition at line 398 of file AthCommonDataStore.h.


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