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

#include <LArReadCells.h>

Inheritance diagram for LArReadCells:
Collaboration diagram for LArReadCells:

Public Member Functions

 LArReadCells (const std::string &name, ISvcLocator *pSvcLocator)
virtual ~LArReadCells ()
virtual StatusCode initialize ()
virtual StatusCode execute ()
virtual StatusCode finalize ()
virtual StatusCode sysInitialize () override
 Override sysInitialize.
virtual const DataObjIDColl & extraOutputDeps () const override
 Return the list of extra output dependencies.
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< double > m_etcut {this,"etCut",7500.,"Et cut to dump cells"}
Gaudi::Property< double > m_etcut2 {this,"etCut2",7500.,"Et cut to dump cells from second layer"}
Gaudi::Property< std::string > m_outStream {this, "output","SPLASH", "to which stream write the ntuple"}
const CaloCell_IDm_calo_id = nullptr
TTree * m_tree = nullptr
int m_runNumber = 0
int m_lbNumber = 0
int m_eventNumber = 0
int m_bcid = 0
int m_error = 0
int m_ncells = 0
std::vector< float > m_ECell
std::vector< float > m_TCell
std::vector< float > m_EtaCell
std::vector< float > m_PhiCell
std::vector< int > m_LayerCell
std::vector< int > m_ProvCell
std::vector< int > m_QuaCell
std::vector< int > m_GainCell
std::vector< int > m_ChidCell
std::vector< int > m_HwidCell
std::vector< std::array< float,32 > > m_ADC
SG::ReadCondHandleKey< LArOnOffIdMappingm_cablingKey {this,"CablingKey","LArOnOffIdMap","SG Key of LArOnOffIdMapping object"}
SG::ReadCondHandleKey< ILArPedestalm_pedestalKey {this,"PedestalKey","LArPedestal","SG Key of Pedestal conditions object"}
SG::ReadCondHandleKey< CaloDetDescrManagerm_caloMgrKey {this,"CaloDetDescrManager", "CaloDetDescrManager"}
const LArOnlineIDm_lar_online_id = nullptr
DataObjIDColl m_extendedExtraObjects
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

Definition at line 21 of file LArReadCells.h.

Member Typedef Documentation

◆ StoreGateSvc_t

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

Definition at line 388 of file AthCommonDataStore.h.

Constructor & Destructor Documentation

◆ LArReadCells()

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

Definition at line 29 of file LArReadCells.cxx.

29 : AthAlgorithm( name, pSvcLocator ){
30 m_ECell.reserve(250000);
31 m_TCell.reserve(250000);
32 m_EtaCell.reserve(250000);
33 m_PhiCell.reserve(250000);
34 m_LayerCell.reserve(250000);
35 m_ProvCell.reserve(250000);
36 m_QuaCell.reserve(250000);
37 m_GainCell.reserve(250000);
38 m_ChidCell.reserve(250000);
39 m_HwidCell.reserve(250000);
40 m_ADC.reserve(250000);
41}
AthAlgorithm()
Default constructor:
std::vector< std::array< float,32 > > m_ADC
std::vector< int > m_GainCell
std::vector< int > m_QuaCell
std::vector< int > m_HwidCell
std::vector< int > m_ChidCell
std::vector< float > m_TCell
std::vector< float > m_EtaCell
std::vector< int > m_ProvCell
std::vector< float > m_PhiCell
std::vector< float > m_ECell
std::vector< int > m_LayerCell

◆ ~LArReadCells()

LArReadCells::~LArReadCells ( )
virtual

Definition at line 44 of file LArReadCells.cxx.

44{}

Member Function Documentation

◆ declareGaudiProperty()

Gaudi::Details::PropertyBase & AthCommonDataStore< AthCommonMsg< 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< 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< 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< 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 LArReadCells::execute ( )
virtual

Definition at line 93 of file LArReadCells.cxx.

93 {
94 ATH_MSG_DEBUG ("Executing " << name() << "...");
95
96 SG::ReadCondHandle<LArOnOffIdMapping> cablingHdl{m_cablingKey};
97 const LArOnOffIdMapping* cabling=*cablingHdl;
98 if(!cabling) {
99 ATH_MSG_ERROR( "Do not have cabling object LArOnOffIdMapping" );
100 return StatusCode::FAILURE;
101 }
102
103 SG::ReadCondHandle<CaloDetDescrManager> caloMgrHandle{m_caloMgrKey};
104 const CaloDetDescrManager* caloDDMgr = *caloMgrHandle;
105
106 //Get Conditions input
107 SG::ReadCondHandle<ILArPedestal> pedHdl{m_pedestalKey};
108 const ILArPedestal* larPedestal=*pedHdl;
109
110
111 const xAOD::EventInfo* eventInfo = nullptr;
112 ATH_CHECK( evtStore()->retrieve( eventInfo) );
113 ATH_MSG_INFO( " run number " << eventInfo->runNumber() );
114
115 m_runNumber = eventInfo->runNumber();
116 m_eventNumber = eventInfo->eventNumber();
117 m_lbNumber = eventInfo->lumiBlock();
118 m_bcid = eventInfo->bcid();
119 m_error = 0;
121
122 std::vector<const LArDigit*> IndexDigit;
123 int nCell = m_calo_id->calo_cell_hash_max();
124 IndexDigit.resize(nCell,nullptr);
125
126 const LArDigitContainer* digit_container;
127 if (evtStore()->contains<LArDigitContainer>("FREE")) {
128 CHECK(evtStore()->retrieve(digit_container,"FREE"));
129 LArDigitContainer::const_iterator first_digit = digit_container->begin();
130 LArDigitContainer::const_iterator end_digit = digit_container->end();
131 for (; first_digit != end_digit; ++first_digit)
132 {
133 HWIdentifier hwid = (*first_digit)->hardwareID();
134 Identifier id = cabling->cnvToIdentifier(hwid);
135 int index = (int) (m_calo_id->calo_cell_hash(id));
136 if (index>=0 && index<nCell) IndexDigit[index]=(*first_digit);
137 }
138 }
139
140
141 const CaloCellContainer* cell_container;
142 CHECK( evtStore()->retrieve(cell_container,"AllCalo"));
143
144 std::vector<int> iflag_cell;
145 iflag_cell.resize(nCell,0);
146
147 CaloCellContainer::const_iterator first_cell = cell_container->begin();
148 CaloCellContainer::const_iterator end_cell = cell_container->end();
149 m_ncells=0;
150 for (; first_cell != end_cell; ++first_cell)
151 {
152 Identifier cellID = (*first_cell)->ID();
153 int index = (int) (m_calo_id->calo_cell_hash(cellID));
154 double et = (*first_cell)->et();
155
156 if (et > m_etcut && !(m_calo_id->is_tile(cellID)) ){
157 iflag_cell[index]=1;
158
159 if ((m_calo_id->calo_sample(cellID)==CaloSampling::CaloSample::EMB2 || m_calo_id->calo_sample(cellID)==CaloSampling::CaloSample::EME2)
160 && et>m_etcut2) {
161
162 CaloCellList myList(caloDDMgr, cell_container);
163 myList.select((*first_cell)->eta(),(*first_cell)->phi(),0.10);
164 for (const CaloCell* cell : myList) {
165 Identifier cellID2 =cell->ID();
166 int index2 = (int)(m_calo_id->calo_cell_hash(cellID2));
167 iflag_cell[index2]=1;
168 }
169 }// second layer
170 }// above first etcut
171 }// over cells
172
173 first_cell = cell_container->begin();
174 for (; first_cell != end_cell; ++first_cell) {
175
176 Identifier cellID = (*first_cell)->ID();
177 int index = (int) (m_calo_id->calo_cell_hash(cellID));
178
179 if (iflag_cell[index]==1 ){
180 m_ECell[m_ncells]= (*first_cell)->energy();
181 m_TCell[m_ncells]= (*first_cell)->time();
182 m_EtaCell[m_ncells]= (*first_cell)->eta();
183 m_PhiCell[m_ncells]= (*first_cell)->phi();
184 m_LayerCell[m_ncells]= m_calo_id->calo_sample(cellID);
185 m_ProvCell[m_ncells]=(*first_cell)->provenance();
186 m_QuaCell[m_ncells]=(*first_cell)->quality();
187 m_GainCell[m_ncells]=(*first_cell)->gain();
188
189 for (int i=0;i<32;i++) m_ADC[m_ncells][i]=0.;
190 float pedestal=0.;
191 int myid=0;
192 if (!(m_calo_id->is_tile(cellID))) {
193 HWIdentifier hwid = cabling->createSignalChannelID(cellID);
194 int barrel_ec = m_lar_online_id->barrel_ec(hwid);
195 int pos_neg = m_lar_online_id->pos_neg(hwid);
196 int FT = m_lar_online_id->feedthrough(hwid);
197 int slot = m_lar_online_id->slot(hwid);
198 int channel = m_lar_online_id->channel(hwid);
199 if (barrel_ec<2 && pos_neg<2 && FT<32 && slot<16 && channel<128)
200 myid = (channel) | (slot << 7) | (FT<<11) | (pos_neg << 16) | (barrel_ec << 17);
201 if (myid < 128) {
202 ATH_MSG_WARNING("Why we have such cell: "<<barrel_ec<<" "<<pos_neg<<" "<<FT<<" "<<slot<<" "<<channel<<" | "<<myid);
203 ATH_MSG_WARNING("from: "<<hwid.get_identifier32().get_compact());
204 }
205
206 if (larPedestal) {
207 pedestal = larPedestal->pedestal(hwid,(*first_cell)->gain());
208 }
209
210 m_HwidCell[m_ncells]=myid;
212 int index = (int) (m_calo_id->calo_cell_hash(cellID));
213 if (IndexDigit[index]) {
214 const std::vector<short>& vSamples=(IndexDigit[index])->samples();
215 int nsamples = vSamples.size();
216 for (int i=0;i<std::min(32,nsamples);i++) {
217 m_ADC[m_ncells][i]=(float)(vSamples[i])-pedestal;
218 }
219 }
220 } // not Tile
221 m_ncells++;
222 }// iflag
223 } // over cells
224
225 ATH_MSG_INFO("Number of cells read " << m_ncells );
226
227 m_tree->Fill();
228
229 return StatusCode::SUCCESS;
230}
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_ERROR(x)
#define ATH_MSG_INFO(x)
#define ATH_MSG_WARNING(x)
#define ATH_MSG_DEBUG(x)
#define CHECK(...)
Evaluate an expression and check for errors.
float et(const xAOD::jFexSRJetRoI *j)
DataModel_detail::const_iterator< DataVector > const_iterator
Definition DataVector.h:838
const_iterator end() const noexcept
Return a const_iterator pointing past the end of the collection.
const_iterator begin() const noexcept
Return a const_iterator pointing at the beginning of the collection.
virtual float pedestal(const HWIdentifier &id, int gain) const =0
value_type get_compact() const
Get the compact id.
Identifier32 get_identifier32() const
Get the 32-bit version Identifier, will be invalid if >32 bits needed.
const LArOnlineID * m_lar_online_id
Gaudi::Property< double > m_etcut
SG::ReadCondHandleKey< LArOnOffIdMapping > m_cablingKey
SG::ReadCondHandleKey< CaloDetDescrManager > m_caloMgrKey
Gaudi::Property< double > m_etcut2
TTree * m_tree
SG::ReadCondHandleKey< ILArPedestal > m_pedestalKey
const CaloCell_ID * m_calo_id
uint32_t lumiBlock() const
The current event's luminosity block number.
uint32_t bcid() const
The bunch crossing ID of the event.
@ LAr
The LAr calorimeter.
@ Error
The sub-detector issued an error.
uint32_t runNumber() const
The current event's run number.
EventFlagErrorState errorState(EventFlagSubDet subDet) const
Get the error state for a particular sub-detector.
uint64_t eventNumber() const
The current event's event number.
bool contains(const std::string &s, const std::string &regx)
does a string contain the substring
Definition hcg.cxx:114
str index
Definition DeMoScan.py:362
retrieve(aClass, aKey=None)
Definition PyKernel.py:110
EventInfo_v1 EventInfo
Definition of the latest event info version.

◆ extraDeps_update_handler()

void AthCommonDataStore< AthCommonMsg< 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 & AthAlgorithm::extraOutputDeps ( ) const
overridevirtualinherited

Return the list of extra output dependencies.

This list is extended to include symlinks implied by inheritance relations.

Definition at line 50 of file AthAlgorithm.cxx.

51{
52 // If we didn't find any symlinks to add, just return the collection
53 // from the base class. Otherwise, return the extended collection.
54 if (!m_extendedExtraObjects.empty()) {
56 }
57 return Algorithm::extraOutputDeps();
58}
DataObjIDColl m_extendedExtraObjects

◆ finalize()

StatusCode LArReadCells::finalize ( )
virtual

Definition at line 87 of file LArReadCells.cxx.

87 {
88 ATH_MSG_INFO ("Finalizing " << name() << "...");
89
90 return StatusCode::SUCCESS;
91}

◆ initialize()

StatusCode LArReadCells::initialize ( )
virtual

Definition at line 47 of file LArReadCells.cxx.

47 {
48 ATH_MSG_INFO ("Initializing " << name() << "...");
49
50 ServiceHandle<ITHistSvc> histSvc("THistSvc",name());
51 CHECK( histSvc.retrieve() );
52 m_tree = new TTree("myTree","myTree");
53 std::string out("/"+m_outStream+"/myTree");
54 CHECK( histSvc->regTree(out.c_str(),m_tree) );
55 ATH_MSG_INFO("Registered tree: " << out);
56 m_tree->Branch("RunNumber",&m_runNumber,"RunNumber/I");
57 m_tree->Branch("LBNumber",&m_lbNumber,"LBNumber/I");
58 m_tree->Branch("EventNumber",&m_eventNumber,"EventNumber/I");
59 m_tree->Branch("BCID",&m_bcid,"BCID/I");
60 m_tree->Branch("LArError",&m_error,"LArError/I");
61 m_tree->Branch("ncells",&m_ncells,"ncells/I");
62 m_tree->Branch("ECell",m_ECell.data(),"eCell[ncells]/F");
63 m_tree->Branch("TCell",m_TCell.data(),"tCell[ncells]/F");
64 m_tree->Branch("EtaCell",m_EtaCell.data(),"etaCell[ncells]/F");
65 m_tree->Branch("PhiCell",m_PhiCell.data(),"phiCell[ncells]/F");
66 m_tree->Branch("LayerCell",m_LayerCell.data(),"layerCell[ncells]/I");
67 m_tree->Branch("ProvCell", m_ProvCell.data(),"provCell[ncells]/I");
68 m_tree->Branch("QuaCell", m_QuaCell.data(),"quaCell[ncells]/I");
69 m_tree->Branch("GainCell", m_GainCell.data(),"gainCell[ncells]/I");
70 m_tree->Branch("ChidCell", m_ChidCell.data(),"chidCell[ncells]/I");
71 m_tree->Branch("HwidCell", m_HwidCell.data(),"hwidCell[ncells]/I");
72 m_tree->Branch("ADC",m_ADC.data(),"ADC[ncells][32]/F");
73
74 const CaloIdManager* caloIdMgr = nullptr;
75 ATH_CHECK(detStore()->retrieve(caloIdMgr));
76 m_calo_id = caloIdMgr->getCaloCell_ID();
77 ATH_CHECK( detStore()->retrieve(m_lar_online_id, "LArOnlineID") );
78
79 ATH_CHECK( m_cablingKey.initialize() );
80 ATH_CHECK(m_pedestalKey.initialize());
81 ATH_CHECK(m_caloMgrKey.initialize());
82 ATH_MSG_INFO("Energy cut for time and quality computation: " << m_etcut);
83
84 return StatusCode::SUCCESS;
85}
const ServiceHandle< StoreGateSvc > & detStore() const
const CaloCell_ID * getCaloCell_ID(void) const
Access to IdHelper.
Gaudi::Property< std::string > m_outStream

◆ inputHandles()

virtual std::vector< Gaudi::DataHandle * > AthCommonDataStore< AthCommonMsg< 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.

◆ msg()

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

Definition at line 24 of file AthCommonMsg.h.

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

◆ msgLvl()

bool AthCommonMsg< 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< 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< 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< Algorithm > >::renounceArray ( SG::VarHandleKeyArray & handlesArray)
inlineprotectedinherited

remove all handles from I/O resolution

Definition at line 364 of file AthCommonDataStore.h.

364 {
366 }

◆ sysInitialize()

StatusCode AthAlgorithm::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< Algorithm > >.

Reimplemented in AthAnalysisAlgorithm, AthFilterAlgorithm, AthHistogramAlgorithm, and PyAthena::Alg.

Definition at line 66 of file AthAlgorithm.cxx.

66 {
68
69 if (sc.isFailure()) {
70 return sc;
71 }
72 ServiceHandle<ICondSvc> cs("CondSvc",name());
73 for (auto h : outputHandles()) {
74 if (h->isCondition() && h->mode() == Gaudi::DataHandle::Writer) {
75 // do this inside the loop so we don't create the CondSvc until needed
76 if ( cs.retrieve().isFailure() ) {
77 ATH_MSG_WARNING("no CondSvc found: won't autoreg WriteCondHandles");
78 return StatusCode::SUCCESS;
79 }
80 if (cs->regHandle(this,*h).isFailure()) {
81 sc = StatusCode::FAILURE;
82 ATH_MSG_ERROR("unable to register WriteCondHandle " << h->fullKey()
83 << " with CondSvc");
84 }
85 }
86 }
87 return sc;
88}
static Double_t sc
virtual StatusCode sysInitialize() override
Override sysInitialize.
AthCommonDataStore(const std::string &name, T... args)
virtual std::vector< Gaudi::DataHandle * > outputHandles() const override
::StatusCode StatusCode
StatusCode definition for legacy code.

◆ sysStart()

virtual StatusCode AthCommonDataStore< AthCommonMsg< 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< 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 }
std::vector< SG::VarHandleKeyArray * > m_vhka

Member Data Documentation

◆ m_ADC

std::vector<std::array<float ,32> > LArReadCells::m_ADC
private

Definition at line 56 of file LArReadCells.h.

◆ m_bcid

int LArReadCells::m_bcid = 0
private

Definition at line 43 of file LArReadCells.h.

◆ m_cablingKey

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

Definition at line 58 of file LArReadCells.h.

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

◆ m_calo_id

const CaloCell_ID* LArReadCells::m_calo_id = nullptr
private

Definition at line 36 of file LArReadCells.h.

◆ m_caloMgrKey

SG::ReadCondHandleKey<CaloDetDescrManager> LArReadCells::m_caloMgrKey {this,"CaloDetDescrManager", "CaloDetDescrManager"}
private

Definition at line 60 of file LArReadCells.h.

60{this,"CaloDetDescrManager", "CaloDetDescrManager"};

◆ m_ChidCell

std::vector<int> LArReadCells::m_ChidCell
private

Definition at line 54 of file LArReadCells.h.

◆ m_detStore

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

Pointer to StoreGate (detector store by default)

Definition at line 393 of file AthCommonDataStore.h.

◆ m_ECell

std::vector<float> LArReadCells::m_ECell
private

Definition at line 46 of file LArReadCells.h.

◆ m_error

int LArReadCells::m_error = 0
private

Definition at line 44 of file LArReadCells.h.

◆ m_EtaCell

std::vector<float> LArReadCells::m_EtaCell
private

Definition at line 48 of file LArReadCells.h.

◆ m_etcut

Gaudi::Property<double> LArReadCells::m_etcut {this,"etCut",7500.,"Et cut to dump cells"}
private

Definition at line 32 of file LArReadCells.h.

32{this,"etCut",7500.,"Et cut to dump cells"};

◆ m_etcut2

Gaudi::Property<double> LArReadCells::m_etcut2 {this,"etCut2",7500.,"Et cut to dump cells from second layer"}
private

Definition at line 33 of file LArReadCells.h.

33{this,"etCut2",7500.,"Et cut to dump cells from second layer"};

◆ m_eventNumber

int LArReadCells::m_eventNumber = 0
private

Definition at line 42 of file LArReadCells.h.

◆ m_evtStore

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

Pointer to StoreGate (event store by default)

Definition at line 390 of file AthCommonDataStore.h.

◆ m_extendedExtraObjects

DataObjIDColl AthAlgorithm::m_extendedExtraObjects
privateinherited

Definition at line 79 of file AthAlgorithm.h.

◆ m_GainCell

std::vector<int> LArReadCells::m_GainCell
private

Definition at line 53 of file LArReadCells.h.

◆ m_HwidCell

std::vector<int> LArReadCells::m_HwidCell
private

Definition at line 55 of file LArReadCells.h.

◆ m_lar_online_id

const LArOnlineID* LArReadCells::m_lar_online_id = nullptr
private

Definition at line 62 of file LArReadCells.h.

◆ m_LayerCell

std::vector<int> LArReadCells::m_LayerCell
private

Definition at line 50 of file LArReadCells.h.

◆ m_lbNumber

int LArReadCells::m_lbNumber = 0
private

Definition at line 41 of file LArReadCells.h.

◆ m_ncells

int LArReadCells::m_ncells = 0
private

Definition at line 45 of file LArReadCells.h.

◆ m_outStream

Gaudi::Property< std::string > LArReadCells::m_outStream {this, "output","SPLASH", "to which stream write the ntuple"}
private

Definition at line 34 of file LArReadCells.h.

34{this, "output","SPLASH", "to which stream write the ntuple"};

◆ m_pedestalKey

SG::ReadCondHandleKey<ILArPedestal> LArReadCells::m_pedestalKey {this,"PedestalKey","LArPedestal","SG Key of Pedestal conditions object"}
private

Definition at line 59 of file LArReadCells.h.

59{this,"PedestalKey","LArPedestal","SG Key of Pedestal conditions object"};

◆ m_PhiCell

std::vector<float> LArReadCells::m_PhiCell
private

Definition at line 49 of file LArReadCells.h.

◆ m_ProvCell

std::vector<int> LArReadCells::m_ProvCell
private

Definition at line 51 of file LArReadCells.h.

◆ m_QuaCell

std::vector<int> LArReadCells::m_QuaCell
private

Definition at line 52 of file LArReadCells.h.

◆ m_runNumber

int LArReadCells::m_runNumber = 0
private

Definition at line 40 of file LArReadCells.h.

◆ m_TCell

std::vector<float> LArReadCells::m_TCell
private

Definition at line 47 of file LArReadCells.h.

◆ m_tree

TTree* LArReadCells::m_tree = nullptr
private

Definition at line 39 of file LArReadCells.h.

◆ m_varHandleArraysDeclared

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

Definition at line 399 of file AthCommonDataStore.h.

◆ m_vhka

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

Definition at line 398 of file AthCommonDataStore.h.


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