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

Muon Tagger in the ATLAS calorimeter. More...

#include <CaloMuonTag.h>

Inheritance diagram for CaloMuonTag:
Collaboration diagram for CaloMuonTag:

Public Member Functions

 CaloMuonTag (const std::string &type, const std::string &name, const IInterface *pInterface)
virtual ~CaloMuonTag ()
virtual StatusCode initialize () override
virtual StatusCode finalize () override
int caloMuonTag (const std::vector< DepositInCalo > &deposits, double eta, double pt) const override
 Returns the Tag.
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 ()

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

double interpolate (const std::string &cutName, double pt) const
int getPtBinLow (double pt) const
int getCutBin (const std::string &cutName) const
StatusCode getHist (TFile *file, const std::string &histName, std::unique_ptr< TH2 > &hist)
Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
 specialization for handling Gaudi::Property<SG::VarHandleKey>

Private Attributes

std::unique_ptr< TH2 > m_hist {nullptr}
std::string m_tagMode
std::vector< std::string > m_vecCutNames
std::vector< int > m_vecPtBins
int m_numCuts {0}
int m_numPtBins {0}
std::atomic_int m_numTagged {0}
std::atomic_int m_numRejected {0}
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

Muon Tagger in the ATLAS calorimeter.

This tagger is used in the CaloTrkMuId framework. After some basic preselection CaloTrkMuIdAlg feeds a track to the TrackDepositInCaloTool. TrackDepositInCaloTool gathers the deposits that are found near that track. This tool can tag a muon track from its deposits.

Applies energy deposition veto cuts in all samplings and noise cuts in the last three layers of the hadronic calorimeter (Tile and HEC). The following scale factors are applied to correct for the pathlength traversed in the calorimeter cells.

\(E_{\rm th} = \frac{E^{\mathrm{barrel}}_{0}}{\sin^2 \theta}\) for \(|\eta|<1.7\) \(E_{\rm th} = \frac{E^{\rm end-cap}_{0}}{\ (1 - \sin \theta )^2}\) for \(|\eta|>1.7\)

There are three tags, determined by the acceptance:

0 not a muon,

1 muon in Last Calo Layer,

2 muon in Last-1 Calo Layer,

3 muon in Last-2 Calo Layer,

Author
Gustavo.Ordonez.Sanz Gusta.nosp@m.vo.O.nosp@m.rdone.nosp@m.z.Sa.nosp@m.nz@ce.nosp@m.rn.c.nosp@m.h Marcel Raas marce.nosp@m.lra@.nosp@m.cern..nosp@m.ch (contact person)

Definition at line 18 of file CaloMuonTag.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

◆ CaloMuonTag()

CaloMuonTag::CaloMuonTag ( const std::string & type,
const std::string & name,
const IInterface * pInterface )

Definition at line 14 of file CaloMuonTag.cxx.

14 :
15 AthAlgTool(type, name, pInterface) {
16 declareInterface<ICaloMuonTag>(this);
17 declareProperty("TagMode", m_tagMode = "Tight");
18}
AthAlgTool()
Default constructor:
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T, V, H > &t)
std::string m_tagMode
Definition CaloMuonTag.h:60

◆ ~CaloMuonTag()

CaloMuonTag::~CaloMuonTag ( )
virtualdefault

Member Function Documentation

◆ caloMuonTag()

int CaloMuonTag::caloMuonTag ( const std::vector< DepositInCalo > & deposits,
double eta,
double pt ) const
overridevirtual

Returns the Tag.

Implements ICaloMuonTag.

Definition at line 85 of file CaloMuonTag.cxx.

85 {
86 std::vector<DepositInCalo>::const_iterator it = deposits.begin();
87 int numVetoesTriggered = 0;
88 int tag = 4;
89 for (; it != deposits.end(); ++it) {
90 CaloCell_ID::CaloSample sample = it->subCaloId();
91 double dep = it->energyDeposited();
92 double eLoss = it->muonEnergyLoss();
93 double diff = dep - eLoss;
94
95 if (sample == CaloCell_ID::EMB1) {
96 if (dep > interpolate("emb1Veto", pt)) { numVetoesTriggered++; }
97 }
98 if (sample == CaloCell_ID::EMB2) {
99 if (dep > interpolate("emb2Veto", pt)) { numVetoesTriggered++; }
100 }
101 if (sample == CaloCell_ID::EMB3) {
102 if (dep > interpolate("emb3Veto", pt)) { numVetoesTriggered++; }
103 }
104 if (sample == CaloCell_ID::EME1) {
105 if (dep > interpolate("eme1Veto", pt)) { numVetoesTriggered++; }
106 }
107 if (sample == CaloCell_ID::EME2) {
108 if (dep > interpolate("eme2Veto", pt)) { numVetoesTriggered++; }
109 }
110 if (sample == CaloCell_ID::EME3) {
111 if (dep > interpolate("eme3Veto", pt)) { numVetoesTriggered++; }
112 }
113 if (sample == CaloCell_ID::TileBar0) {
114 if (tag > 3) tag = 3;
115 if (dep < interpolate("tileBar0Sig", pt)) { numVetoesTriggered++; }
116 if (dep > interpolate("tileBar0Veto", pt)) { numVetoesTriggered++; }
117 if (diff < interpolate("tileBar0DiffLow", pt)) { numVetoesTriggered++; }
118 }
119 if (sample == CaloCell_ID::TileBar1) {
120 if (tag > 2) tag = 2;
121 if (dep < interpolate("tileBar1Sig", pt)) { numVetoesTriggered++; }
122 if (dep > interpolate("tileBar1Veto", pt)) { numVetoesTriggered++; }
123 if (diff < interpolate("tileBar1DiffLow", pt)) { numVetoesTriggered++; }
124 }
125 if (sample == CaloCell_ID::TileBar2) {
126 if (tag > 1) tag = 1;
127 if (dep < interpolate("tileBar2Sig", pt)) { numVetoesTriggered++; }
128 if (dep > interpolate("tileBar2Veto", pt)) { numVetoesTriggered++; }
129 if (diff < interpolate("tileBar2DiffLow", pt)) { numVetoesTriggered++; }
130 }
131 if (sample == CaloCell_ID::TileExt0) {
132 if (tag > 3) tag = 3;
133 if (dep < interpolate("tileExt0Sig", pt)) { numVetoesTriggered++; }
134 if (diff < interpolate("tileExt0DiffLow", pt)) { numVetoesTriggered++; }
135 if (dep > interpolate("tileExt0Veto", pt)) { numVetoesTriggered++; }
136 }
137 if (sample == CaloCell_ID::TileExt1) {
138 if (tag > 2) tag = 2;
139 if (dep < interpolate("tileExt1Sig", pt)) { numVetoesTriggered++; }
140 if (diff < interpolate("tileExt1DiffLow", pt)) { numVetoesTriggered++; }
141 if (dep > interpolate("tileExt1Veto", pt)) { numVetoesTriggered++; }
142 }
143 if (sample == CaloCell_ID::TileExt2) {
144 if (tag > 1) tag = 1;
145 if (dep < interpolate("tileExt2Sig", pt)) { numVetoesTriggered++; }
146 if (diff < interpolate("tileExt2DiffLow", pt)) { numVetoesTriggered++; }
147 if (dep > interpolate("tileExt2Veto", pt)) { numVetoesTriggered++; }
148 }
149 if (sample == CaloCell_ID::HEC0) {
150 if (dep > interpolate("hec0Veto", pt)) { numVetoesTriggered++; }
151 if (dep < interpolate("hec0Sig", pt)) { numVetoesTriggered++; }
152 }
153 if (sample == CaloCell_ID::HEC1) {
154 if (tag > 3) tag = 3;
155 if (dep > interpolate("hec1Veto", pt)) { numVetoesTriggered++; }
156 if (dep < interpolate("hec1Sig", pt)) { numVetoesTriggered++; }
157 }
158 if (sample == CaloCell_ID::HEC2) {
159 if (tag > 2) tag = 2;
160 if (dep > interpolate("hec2Veto", pt)) { numVetoesTriggered++; }
161 if (dep < interpolate("hec2Sig", pt)) { numVetoesTriggered++; }
162 }
163 if (sample == CaloCell_ID::HEC3) {
164 if (tag > 1) tag = 1;
165 if (dep > interpolate("hec3Veto", pt)) { numVetoesTriggered++; }
166 if (dep < interpolate("hec3Sig", pt)) { numVetoesTriggered++; }
167 }
168
169 if (numVetoesTriggered >= 1) {
171 return 0;
172 }
173 }
174 if (tag < 3)
175 m_numTagged++;
176 else if (tag == 4)
177 return 0;
178 return tag;
179}
void diff(const Jet &rJet1, const Jet &rJet2, std::map< std::string, double > varDiff)
Difference between jets - Non-Class function required by trigger.
Definition Jet.cxx:631
CaloSampling::CaloSample CaloSample
Definition CaloCell_ID.h:53
double interpolate(const std::string &cutName, double pt) const
std::atomic_int m_numRejected
Definition CaloMuonTag.h:69
std::atomic_int m_numTagged
Definition CaloMuonTag.h:68

◆ 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

◆ finalize()

StatusCode CaloMuonTag::finalize ( )
overridevirtual

Definition at line 75 of file CaloMuonTag.cxx.

75 {
76 ATH_MSG_INFO("Number of tracks tagged : " << m_numTagged);
77 ATH_MSG_INFO("Number of tracks rejected : " << m_numRejected);
78 ATH_MSG_DEBUG("finalize() successful in " << name());
79 return StatusCode::SUCCESS;
80}
#define ATH_MSG_INFO(x)
#define ATH_MSG_DEBUG(x)

◆ getCutBin()

int CaloMuonTag::getCutBin ( const std::string & cutName) const
private

Definition at line 217 of file CaloMuonTag.cxx.

217 {
218 for (int i = 0; i <= m_numCuts; i++) {
219 if (cutName == m_vecCutNames[i]) return i;
220 }
221 return 0;
222}
std::vector< std::string > m_vecCutNames
Definition CaloMuonTag.h:63

◆ getHist()

StatusCode CaloMuonTag::getHist ( TFile * file,
const std::string & histName,
std::unique_ptr< TH2 > & hist )
private

Definition at line 55 of file CaloMuonTag.cxx.

55 {
56 if (!file) {
57 ATH_MSG_ERROR("NULL TFile");
58 return StatusCode::FAILURE;
59 }
60 TH2* hist = nullptr;
61 file->GetObject(histName.c_str(), hist);
62 if (!hist) {
63 ATH_MSG_ERROR("Cannot retrieve histogram: " << histName);
64 return StatusCode::FAILURE;
65 }
66 hist->SetDirectory(nullptr);
67 unique_hist.reset(hist);
68 ATH_MSG_INFO("Successfully retrieved histogram: " << histName);
69 return StatusCode::SUCCESS;
70}
#define ATH_MSG_ERROR(x)
TFile * file

◆ getPtBinLow()

int CaloMuonTag::getPtBinLow ( double pt) const
private

Definition at line 209 of file CaloMuonTag.cxx.

209 {
210 // Return the bin of lower pt
211 for (int i = 0; i <= m_numPtBins; i++) {
212 if (pt < m_vecPtBins[i]) return (i - 1);
213 }
214 return m_numPtBins;
215}
std::vector< int > m_vecPtBins
Definition CaloMuonTag.h:64

◆ initialize()

StatusCode CaloMuonTag::initialize ( )
overridevirtual

Definition at line 28 of file CaloMuonTag.cxx.

28 {
29 // Retrieve histogram
30 std::string rootFilePath = PathResolverFindCalibFile("CaloTrkMuIdTools/cutBased_release21/CaloTag.CutConfig.root");
31
32 std::unique_ptr<TFile> rootFile{TFile::Open(rootFilePath.c_str(), "READ")};
34 // Read cut names from histogram
35 m_numCuts = m_hist->GetYaxis()->GetNbins();
36 if (m_numCuts == 0) {
37 ATH_MSG_FATAL("Histogram number of cuts invalid");
38 return StatusCode::FAILURE;
39 }
40 for (int i = 0; i <= m_numCuts; i++) { m_vecCutNames.push_back(m_hist->GetYaxis()->GetBinLabel(i)); }
41 // Read pt bins from histogram
42 m_numPtBins = m_hist->GetXaxis()->GetNbins();
43 if (m_numPtBins == 0) {
44 ATH_MSG_FATAL("Histogram number of pt bins invalid");
45 return StatusCode::FAILURE;
46 }
47 for (int i = 0; i <= m_numPtBins; i++) { m_vecPtBins.push_back(atoi(m_hist->GetXaxis()->GetBinLabel(i))); }
48 ATH_MSG_DEBUG("initialize() successful in " << name());
49 return StatusCode::SUCCESS;
50}
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_FATAL(x)
std::string PathResolverFindCalibFile(const std::string &logical_file_name)
std::unique_ptr< TH2 > m_hist
Definition CaloMuonTag.h:59
StatusCode getHist(TFile *file, const std::string &histName, std::unique_ptr< TH2 > &hist)
int atoi(std::string_view str)
Helper functions to unpack numbers decoded in string into integers and doubles The strings are requir...

◆ 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 & ICaloMuonTag::interfaceID ( )
inlinestaticinherited

Definition at line 23 of file ICaloMuonTag.h.

23{return IID_ICaloMuonTag;}
static const InterfaceID IID_ICaloMuonTag("ICaloMuonTag", 1, 0)

◆ interpolate()

double CaloMuonTag::interpolate ( const std::string & cutName,
double pt ) const
private

Definition at line 184 of file CaloMuonTag.cxx.

184 {
185 double ptLow = 0, ptUp = 0, cutLow = 0, cutUp = 0, cutReturn = 0;
186 // MeV-->GeV
187 pt = pt / 1000;
188 int ptBin = getPtBinLow(pt);
189 int cutBin = getCutBin(cutName);
190 if (ptBin < 0 || ptBin > m_numPtBins || cutBin == 0 || cutBin > m_numCuts) ATH_MSG_WARNING("Bin out of bound");
191
192 // Get lowest pt bin
193 if (ptBin < 1) cutReturn = m_hist->GetBinContent(1, cutBin);
194 // Get highest pt bin
195 else if (ptBin == m_numPtBins)
196 cutReturn = m_hist->GetBinContent(m_numPtBins, cutBin);
197 // Interpolate between bins
198 else {
199 ptUp = m_vecPtBins[ptBin + 1];
200 ptLow = m_vecPtBins[ptBin];
201 cutUp = m_hist->GetBinContent(ptBin + 1, cutBin);
202 cutLow = m_hist->GetBinContent(ptBin, cutBin);
203 cutReturn = cutLow + (cutUp - cutLow) * (pt - ptLow) / (ptUp - ptLow);
204 }
205
206 return cutReturn;
207}
#define ATH_MSG_WARNING(x)
int getCutBin(const std::string &cutName) const
int getPtBinLow(double pt) const

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

◆ 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_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_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_hist

std::unique_ptr<TH2> CaloMuonTag::m_hist {nullptr}
private

Definition at line 59 of file CaloMuonTag.h.

59{nullptr};

◆ m_numCuts

int CaloMuonTag::m_numCuts {0}
private

Definition at line 65 of file CaloMuonTag.h.

65{0};

◆ m_numPtBins

int CaloMuonTag::m_numPtBins {0}
private

Definition at line 66 of file CaloMuonTag.h.

66{0};

◆ m_numRejected

std::atomic_int CaloMuonTag::m_numRejected {0}
mutableprivate

Definition at line 69 of file CaloMuonTag.h.

69{0};

◆ m_numTagged

std::atomic_int CaloMuonTag::m_numTagged {0}
mutableprivate

Definition at line 68 of file CaloMuonTag.h.

68{0};

◆ m_tagMode

std::string CaloMuonTag::m_tagMode
private

Definition at line 60 of file CaloMuonTag.h.

◆ m_varHandleArraysDeclared

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

Definition at line 399 of file AthCommonDataStore.h.

◆ m_vecCutNames

std::vector<std::string> CaloMuonTag::m_vecCutNames
private

Definition at line 63 of file CaloMuonTag.h.

◆ m_vecPtBins

std::vector<int> CaloMuonTag::m_vecPtBins
private

Definition at line 64 of file CaloMuonTag.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: