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

#include <HIClusterGeo_HistoFiller.h>

Inheritance diagram for HIClusterGeo_HistoFiller:
Collaboration diagram for HIClusterGeo_HistoFiller:

Public Member Functions

 HIClusterGeo_HistoFiller (const std::string &name, ISvcLocator *pSvcLocator)
virtual ~HIClusterGeo_HistoFiller ()=default
virtual StatusCode initialize () override
virtual StatusCode execute () override
virtual StatusCode finalize () override
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

TH1 * regAndGetTHF (const std::string &histName, const std::string &histTitle, int numBinsX, double xMin, double xMax, int numBinsY, double yMin, double yMax)
Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
 specialization for handling Gaudi::Property<SG::VarHandleKey>

Private Attributes

ServiceHandle< ITHistSvc > m_thistSvc {this, "THistSvc", "THistSvc"}
Gaudi::Property< std::string > m_histStream {this, "HistStream", "CLUSTERGEOFILLERSTREAM"}
Gaudi::Property< float > m_minFCalET {this, "minFCalET", 0.0, "minimum allowed FCal ET in TeV"}
Gaudi::Property< float > m_maxFCalET {this, "maxFCalET", 5.4, "maximum allowed FCal ET in TeV"}
SG::ReadHandleKey< xAOD::EventInfom_eventInfoKey {this, "EventInfoKey", "EventInfo", "name of EventInfo container"}
SG::ReadHandleKey< xAOD::VertexContainerm_vertexContainerKey {this, "VertexContainerKey", "PrimaryVertices", "name of VertexContainer"}
SG::ReadHandleKey< xAOD::CaloClusterContainerm_caloClusterContainerKey {this, "CaloClusterContainerKey", "HIClusters", "name of CaloClusterContainer"}
SG::ReadHandleKey< xAOD::HIEventShapeContainerm_hiEventShapeKey {this, "HIEventShapeKey", "CaloSums", "name of HIEventShapeContainer"}
std::unordered_map< int, TH2F * > m_histTileWeights
const int m_etaBins =100
const int m_phiBins =64
const int m_totalBins = (m_etaBins+2)*(m_phiBins+2)
TH2F * m_etaPhiMapping
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 27 of file HIClusterGeo_HistoFiller.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

◆ HIClusterGeo_HistoFiller()

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

Definition at line 7 of file HIClusterGeo_HistoFiller.cxx.

7 :
8 AthAlgorithm(name, pSvcLocator), m_etaPhiMapping(nullptr)
9{
10}
AthAlgorithm()
Default constructor:

◆ ~HIClusterGeo_HistoFiller()

virtual HIClusterGeo_HistoFiller::~HIClusterGeo_HistoFiller ( )
virtualdefault

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 HIClusterGeo_HistoFiller::execute ( )
overridevirtual

Definition at line 49 of file HIClusterGeo_HistoFiller.cxx.

50{
51 const EventContext& ctx = Gaudi::Hive::currentContext();
52
53 SG::ReadHandle<xAOD::EventInfo> eventInfo{m_eventInfoKey, ctx};
54 if (!eventInfo.isValid())
55 {
56 ATH_MSG_WARNING("Cannot get EventInfo with key " << m_eventInfoKey.key());
57 return StatusCode::SUCCESS;
58 }
59
60 if((eventInfo->errorState(xAOD::EventInfo::LAr) == xAOD::EventInfo::Error) ||
61 (eventInfo->errorState(xAOD::EventInfo::Tile) == xAOD::EventInfo::Error) ||
62 (eventInfo->isEventFlagBitSet(xAOD::EventInfo::Core, 18)) )
63 {
64 return StatusCode::SUCCESS;
65 }
66
67 // GRL selection will be done later by "makeHIResponse",
68 // here, we just save everything into separate histograms for each LB
69
70 // trigger decision tool is not needed if we use CC and PC streams
71
72 SG::ReadHandle<xAOD::VertexContainer> vertices{m_vertexContainerKey, ctx};
73 if(!vertices.isValid())
74 {
75 ATH_MSG_WARNING("Cannot get VertexContainer with key " << m_vertexContainerKey.key());
76 return StatusCode::SUCCESS;
77 }
78 if(vertices->size() <= 1)
79 {
80 // no vertex
81 return StatusCode::SUCCESS;
82 }
83
84 SG::ReadHandle<xAOD::CaloClusterContainer> caloClusters{m_caloClusterContainerKey, ctx};
85 if (!caloClusters.isValid())
86 {
87 ATH_MSG_WARNING("Cannot get CaloClusterContainer with key " << m_caloClusterContainerKey.key());
88 return StatusCode::SUCCESS;
89 }
90
91 SG::ReadHandle<xAOD::HIEventShapeContainer> hiEventShape{m_hiEventShapeKey, ctx};
92 if (!hiEventShape.isValid())
93 {
94 ATH_MSG_WARNING("Cannot get HIEventShapeContainer with key " << m_hiEventShapeKey.key());
95 return StatusCode::SUCCESS;
96 }
97
98 int currentLB = eventInfo->lumiBlock();
99 int currentRun = eventInfo->runNumber();
100
101 if (auto search = m_histTileWeights.find(currentLB); search == m_histTileWeights.end())
102 {
103 // if m_histTileWeights does not already have histogram forthis LB, allocate a new TH2F
104 // bins in Y: sum FCalET, sum ClusterET, sum FCalET^2, sum ClusterET^2, sum FCalET*ClusterET, number of events
105 TH2F * newHistTileWeights = static_cast<TH2F*>(regAndGetTHF(Form("h_clusterET_fcalET_%d_%d",currentRun,currentLB), ";bin ID;sum FCalET/clusterET/FCalET^2/clusterET^2/FCalET*clusterET/n_{events}", m_totalBins, -0.5, m_totalBins-0.5, 6,0.5,6.5));
106 if (newHistTileWeights == nullptr)
107 {
108 ATH_MSG_WARNING("Could not create histogram "<<Form("h_clusterET_fcalET_%d_%d",currentRun,currentLB)<<" that was supposed to be used for Run "<<currentRun<<" LB "<<currentLB);
109 return StatusCode::SUCCESS;
110 }
111
112 m_histTileWeights[currentLB] = std::move(newHistTileWeights);
113 }
114
115 auto currentHistTileWeights = m_histTileWeights.at(currentLB);
116
117 float fcalEt = hiEventShape->at(5)->et()*1e-6;
118 if(fcalEt<m_minFCalET || m_maxFCalET<fcalEt)
119 {
120 // remove in-time and out-of-time pile-up
121 return StatusCode::SUCCESS;
122 }
123
124 for(const auto* cluster : *caloClusters)
125 {
126 float eta = cluster->eta();
127 float phi = cluster->phi();
128 int binID = m_etaPhiMapping->FindBin(eta, phi);
129 float ET = cluster->e() * 1e-3 / std::cosh(eta);
130
131 currentHistTileWeights->Fill(binID, 1, fcalEt);
132 currentHistTileWeights->Fill(binID, 2, ET);
133 currentHistTileWeights->Fill(binID, 3, fcalEt*fcalEt);
134 currentHistTileWeights->Fill(binID, 4, ET*ET);
135 currentHistTileWeights->Fill(binID, 5, fcalEt*ET);
136 currentHistTileWeights->Fill(binID, 6, 1.);
137 }
138
139 return StatusCode::SUCCESS;
140}
Scalar eta() const
pseudorapidity method
Scalar phi() const
phi method
#define ATH_MSG_WARNING(x)
SG::ReadHandleKey< xAOD::VertexContainer > m_vertexContainerKey
SG::ReadHandleKey< xAOD::HIEventShapeContainer > m_hiEventShapeKey
TH1 * regAndGetTHF(const std::string &histName, const std::string &histTitle, int numBinsX, double xMin, double xMax, int numBinsY, double yMin, double yMax)
Gaudi::Property< float > m_minFCalET
Gaudi::Property< float > m_maxFCalET
SG::ReadHandleKey< xAOD::CaloClusterContainer > m_caloClusterContainerKey
std::unordered_map< int, TH2F * > m_histTileWeights
SG::ReadHandleKey< xAOD::EventInfo > m_eventInfoKey
virtual bool isValid() override final
Can the handle be successfully dereferenced?
@ Tile
The Tile calorimeter.
@ Core
Core flags describing the event.
@ LAr
The LAr calorimeter.
@ Error
The sub-detector issued an error.
void search(TDirectory *td, const std::string &s, std::string cwd, node *n)
recursive directory search for TH1 and TH2 and TProfiles
Definition hcg.cxx:739
TH2F(name, title, nxbins, bins_par2, bins_par3, bins_par4, bins_par5=None, bins_par6=None, path='', **kwargs)

◆ 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 HIClusterGeo_HistoFiller::finalize ( )
overridevirtual

Definition at line 142 of file HIClusterGeo_HistoFiller.cxx.

143{
144 return StatusCode::SUCCESS;
145}

◆ initialize()

StatusCode HIClusterGeo_HistoFiller::initialize ( )
overridevirtual

Definition at line 29 of file HIClusterGeo_HistoFiller.cxx.

30{
31 ATH_CHECK( m_eventInfoKey.initialize() );
32 ATH_CHECK( m_vertexContainerKey.initialize() );
34 ATH_CHECK( m_hiEventShapeKey.initialize() );
35
36 ATH_CHECK( m_thistSvc.retrieve() );
37
38 m_histTileWeights.clear();
39
40 m_etaPhiMapping = static_cast<TH2F*>(regAndGetTHF("h_etaPhiMapping", ";eta;phi", m_etaBins, -5, 5, m_phiBins, -TMath::Pi(), TMath::Pi()));
41 if(m_etaPhiMapping==nullptr)
42 {
43 return StatusCode::FAILURE;
44 }
45
46 return StatusCode::SUCCESS;
47}
#define ATH_CHECK
Evaluate an expression and check for errors.
ServiceHandle< ITHistSvc > m_thistSvc

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

◆ regAndGetTHF()

TH1 * HIClusterGeo_HistoFiller::regAndGetTHF ( const std::string & histName,
const std::string & histTitle,
int numBinsX,
double xMin,
double xMax,
int numBinsY,
double yMin,
double yMax )
private

Definition at line 12 of file HIClusterGeo_HistoFiller.cxx.

13{
14 auto hist = std::make_unique<TH2F>(histName.c_str(), histTitle.c_str(), numBinsX, xMin, xMax, numBinsY, yMin, yMax);
15 if(m_thistSvc->regHist("/" + m_histStream + "/" + histName, std::unique_ptr<TH1>(std::move(hist))).isFailure())
16 {
17 return nullptr;
18 }
19
20 TH1 * tmpHist = nullptr;
21 if(m_thistSvc->getHist("/" + m_histStream + "/" + histName, tmpHist).isFailure())
22 {
23 return nullptr;
24 }
25
26 return static_cast<TH1*>(tmpHist);
27}
Gaudi::Property< std::string > m_histStream
tmpHist(what, wmin=-1e10, wmax=+1e10)
Definition fitman.py:146

◆ 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}
#define ATH_MSG_ERROR(x)
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_caloClusterContainerKey

SG::ReadHandleKey<xAOD::CaloClusterContainer> HIClusterGeo_HistoFiller::m_caloClusterContainerKey {this, "CaloClusterContainerKey", "HIClusters", "name of CaloClusterContainer"}
private

Definition at line 44 of file HIClusterGeo_HistoFiller.h.

44{this, "CaloClusterContainerKey", "HIClusters", "name of CaloClusterContainer"};

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

const int HIClusterGeo_HistoFiller::m_etaBins =100
private

Definition at line 48 of file HIClusterGeo_HistoFiller.h.

◆ m_etaPhiMapping

TH2F* HIClusterGeo_HistoFiller::m_etaPhiMapping
private

Definition at line 50 of file HIClusterGeo_HistoFiller.h.

◆ m_eventInfoKey

SG::ReadHandleKey<xAOD::EventInfo> HIClusterGeo_HistoFiller::m_eventInfoKey {this, "EventInfoKey", "EventInfo", "name of EventInfo container"}
private

Definition at line 42 of file HIClusterGeo_HistoFiller.h.

42{this, "EventInfoKey", "EventInfo", "name of EventInfo container"};

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

SG::ReadHandleKey<xAOD::HIEventShapeContainer> HIClusterGeo_HistoFiller::m_hiEventShapeKey {this, "HIEventShapeKey", "CaloSums", "name of HIEventShapeContainer"}
private

Definition at line 45 of file HIClusterGeo_HistoFiller.h.

45{this, "HIEventShapeKey", "CaloSums", "name of HIEventShapeContainer"};

◆ m_histStream

Gaudi::Property<std::string> HIClusterGeo_HistoFiller::m_histStream {this, "HistStream", "CLUSTERGEOFILLERSTREAM"}
private

Definition at line 38 of file HIClusterGeo_HistoFiller.h.

38{this, "HistStream", "CLUSTERGEOFILLERSTREAM"};

◆ m_histTileWeights

std::unordered_map<int, TH2F*> HIClusterGeo_HistoFiller::m_histTileWeights
private

Definition at line 47 of file HIClusterGeo_HistoFiller.h.

◆ m_maxFCalET

Gaudi::Property<float> HIClusterGeo_HistoFiller::m_maxFCalET {this, "maxFCalET", 5.4, "maximum allowed FCal ET in TeV"}
private

Definition at line 40 of file HIClusterGeo_HistoFiller.h.

40{this, "maxFCalET", 5.4, "maximum allowed FCal ET in TeV"};

◆ m_minFCalET

Gaudi::Property<float> HIClusterGeo_HistoFiller::m_minFCalET {this, "minFCalET", 0.0, "minimum allowed FCal ET in TeV"}
private

Definition at line 39 of file HIClusterGeo_HistoFiller.h.

39{this, "minFCalET", 0.0, "minimum allowed FCal ET in TeV"};

◆ m_phiBins

const int HIClusterGeo_HistoFiller::m_phiBins =64
private

Definition at line 48 of file HIClusterGeo_HistoFiller.h.

◆ m_thistSvc

ServiceHandle<ITHistSvc> HIClusterGeo_HistoFiller::m_thistSvc {this, "THistSvc", "THistSvc"}
private

Definition at line 37 of file HIClusterGeo_HistoFiller.h.

37{this, "THistSvc", "THistSvc"};

◆ m_totalBins

const int HIClusterGeo_HistoFiller::m_totalBins = (m_etaBins+2)*(m_phiBins+2)
private

Definition at line 49 of file HIClusterGeo_HistoFiller.h.

◆ m_varHandleArraysDeclared

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

Definition at line 399 of file AthCommonDataStore.h.

◆ m_vertexContainerKey

SG::ReadHandleKey<xAOD::VertexContainer> HIClusterGeo_HistoFiller::m_vertexContainerKey {this, "VertexContainerKey", "PrimaryVertices", "name of VertexContainer"}
private

Definition at line 43 of file HIClusterGeo_HistoFiller.h.

43{this, "VertexContainerKey", "PrimaryVertices", "name of VertexContainer"};

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