ATLAS Offline Software
Loading...
Searching...
No Matches
Trig::TrigEgammaMatchingToolTest Class Reference

#include <TrigEgammaMatchingToolTest.h>

Inheritance diagram for Trig::TrigEgammaMatchingToolTest:
Collaboration diagram for Trig::TrigEgammaMatchingToolTest:

Public Member Functions

 TrigEgammaMatchingToolTest (const std::string &name, ISvcLocator *pSvcLocator)
 Constructor with parameters:
 ~TrigEgammaMatchingToolTest ()
 Destructor:
StatusCode initialize ()
 Athena algorithm's Hooks.
StatusCode execute ()
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

 TrigEgammaMatchingToolTest ()
 Default constructor:
void match (const std::string &, const xAOD::Egamma *)
Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
 specialization for handling Gaudi::Property<SG::VarHandleKey>

Private Attributes

ToolHandle< Trig::TrigDecisionToolm_trigdec
ToolHandle< ITrigEgammaMatchingToolm_matchTool
std::vector< std::string > m_triggerList
std::vector< std::string > m_cmbTriggerList
std::map< std::string, int > m_counterBits
std::map< std::string, int > m_counterCmbMatchBits
std::map< std::string, int > m_counterMatch1Bits
std::map< std::string, int > m_counterMatch2Bits
std::map< std::string, int > m_counterMatch3Bits
std::map< std::string, int > m_counterMatch4Bits
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 23 of file TrigEgammaMatchingToolTest.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

◆ TrigEgammaMatchingToolTest() [1/2]

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

Constructor with parameters:

Definition at line 13 of file TrigEgammaMatchingToolTest.cxx.

16 : ::AthAlgorithm( name, pSvcLocator ),
17 m_trigdec("Trig::TrigDecisionTool/TrigDecisionTool"),
18 m_matchTool("Trig::TrigEgammaMatchingTool/TrigEgammaMatchingTool",this)
19 //m_matchTool2("TriggerMatchingTool/MatchingTool",this)
20 {
21 declareProperty("TrigEgammaMatchingTool",m_matchTool);
22 //declareProperty("TriggerMatchingTool",m_matchTool2);
23 declareProperty("TriggerList",m_triggerList);
24 declareProperty("CombinedTriggerList",m_cmbTriggerList);
25 }
AthAlgorithm()
Default constructor:
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T, V, H > &t)
ToolHandle< ITrigEgammaMatchingTool > m_matchTool
std::vector< std::string > m_cmbTriggerList
ToolHandle< Trig::TrigDecisionTool > m_trigdec

◆ ~TrigEgammaMatchingToolTest()

Trig::TrigEgammaMatchingToolTest::~TrigEgammaMatchingToolTest ( )

Destructor:

Definition at line 29 of file TrigEgammaMatchingToolTest.cxx.

29{ }

◆ TrigEgammaMatchingToolTest() [2/2]

Trig::TrigEgammaMatchingToolTest::TrigEgammaMatchingToolTest ( )
private

Default constructor:

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 }

◆ 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 Trig::TrigEgammaMatchingToolTest::execute ( )

Definition at line 102 of file TrigEgammaMatchingToolTest.cxx.

102 {
103 ATH_MSG_INFO ("Executing " << name() << "...");
104 ATH_MSG_VERBOSE( "L1: " << m_trigdec->isPassed( "L1_.*" )
105 << ", L2: " << m_trigdec->isPassed( "L2_.*" )
106 << ", EF: " << m_trigdec->isPassed( "EF_.*" )
107 << ", HLT: " << m_trigdec->isPassed( "HLT_.*" ) );
108 auto chainGroups = m_trigdec->getChainGroup("HLT_e.*");
109
110 for(auto &trig : chainGroups->getListOfTriggers()) {
111 if(m_trigdec->isPassed(trig))
112 ATH_MSG_VERBOSE("Passed: " << trig);
113 m_counterBits[trig]+=m_trigdec->isPassed(trig);
114 }
115
116 //Check Containers
117
118 const xAOD::ElectronContainer *offElectrons = 0;
119 const xAOD::TauJetContainer *taus = 0;
120 const xAOD::MuonContainer *muons = 0;
121 if ( (evtStore()->retrieve(offElectrons,"Electrons")).isFailure() ){
122 ATH_MSG_DEBUG("Failed to retrieve offline Electrons ");
123 }
124 if ( (evtStore()->retrieve(taus,"")).isFailure() ){
125 ATH_MSG_DEBUG("Failed to retrieve offline Taus ");
126 }
127 if ( (evtStore()->retrieve(muons,"Muons")).isFailure() ){
128 ATH_MSG_DEBUG("Failed to retrieve offline Muons ");
129 }
130 if(offElectrons) ATH_MSG_INFO("Offline Electron container size " << offElectrons->size());
131 if(muons) ATH_MSG_INFO("Offline Muon container size " << muons->size());
132 if(taus) ATH_MSG_INFO("Offline Tau container size " << taus->size());
133 for(const auto &trigger : m_triggerList){
134 if(!offElectrons) continue;
135 for(const auto eg : *offElectrons){
136 match(trigger,eg);
137 } //End loop of offline electrons
138 } // End loop over trigger list
139
140 // Test combined triggers with generic tool
141 /*for(const auto &trigger : m_cmbTriggerList){
142 std::vector<const xAOD::IParticle *> reco;
143
144 for(const auto& eg : *offElectrons){
145 // e-e
146 for(const auto& eg2 : *offElectrons){
147 if(eg==eg2) continue;
148 reco.clear();
149 reco.push_back(eg);
150 reco.push_back(eg2);
151 if(m_matchTool2->match(reco,trigger)){
152 ATH_MSG_DEBUG("REGTEST::Passed combined matching method for " << trigger);
153 m_counterCmbMatchBits[trigger]++;
154 }
155 else ATH_MSG_DEBUG("REGTEST::Failed combined method for " << trigger);
156
157 }
158 // e-mu
159 if(muons){
160 for(const auto& mu : *muons){
161 reco.clear();
162 reco.push_back(eg);
163 reco.push_back(mu);
164 if(m_matchTool2->match(reco,trigger)) {
165 ATH_MSG_DEBUG("REGTEST::Passed combined matching method for " << trigger);
166 m_counterCmbMatchBits[trigger]++;
167 }
168 else ATH_MSG_DEBUG("REGTEST::Failed combined method for " << trigger);
169
170 }
171 }
172 // e-tau
173 if(taus){
174 for(const auto& tau : *taus){
175 reco.clear();
176 reco.push_back(eg);
177 reco.push_back(tau);
178 if(m_matchTool2->match(reco,trigger)){
179 ATH_MSG_DEBUG("REGTEST::Passed combined matching method for " << trigger);
180 m_counterCmbMatchBits[trigger]++;
181 }
182 else ATH_MSG_DEBUG("REGTEST::Failed combined method for " << trigger);
183
184 }
185 }
186 }
187 }*/
188
189
190 return StatusCode::SUCCESS;
191 } // End execute
#define ATH_MSG_INFO(x)
#define ATH_MSG_VERBOSE(x)
#define ATH_MSG_DEBUG(x)
static Double_t taus
size_type size() const noexcept
Returns the number of elements in the collection.
void match(const std::string &, const xAOD::Egamma *)
std::map< std::string, int > m_counterBits
retrieve(aClass, aKey=None)
Definition PyKernel.py:110
ElectronContainer_v1 ElectronContainer
Definition of the current "electron container version".
TauJetContainer_v3 TauJetContainer
Definition of the current "taujet container version".
MuonContainer_v1 MuonContainer
Definition of the current "Muon container 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 Trig::TrigEgammaMatchingToolTest::finalize ( )

Definition at line 45 of file TrigEgammaMatchingToolTest.cxx.

45 {
46 ATH_MSG_INFO ("Finalizing " << name() << "...");
47 for (auto iter = m_counterBits.begin(); iter != m_counterBits.end(); iter++) {
48 ATH_MSG_DEBUG(iter->first << " == " << iter->second);
49 }
50 for (auto iter = m_counterMatch3Bits.begin(); iter != m_counterMatch3Bits.end(); iter++) {
51 ATH_MSG_INFO("REGTEST: " << iter->first << " " << iter->second << " " << m_counterMatch2Bits[iter->first] << " " << m_counterMatch1Bits[iter->first] << " Generic match " << m_counterMatch4Bits[iter->first]);
52 }
53 for (auto iter = m_counterCmbMatchBits.begin(); iter != m_counterCmbMatchBits.end(); iter++) {
54 ATH_MSG_INFO("REGTEST: " << iter->first << " == " << iter->second);
55 }
56
57 return StatusCode::SUCCESS;
58 }
std::map< std::string, int > m_counterCmbMatchBits
std::map< std::string, int > m_counterMatch3Bits
std::map< std::string, int > m_counterMatch4Bits
std::map< std::string, int > m_counterMatch2Bits
std::map< std::string, int > m_counterMatch1Bits

◆ initialize()

StatusCode Trig::TrigEgammaMatchingToolTest::initialize ( )

Athena algorithm's Hooks.

Definition at line 33 of file TrigEgammaMatchingToolTest.cxx.

33 {
34 ATH_MSG_INFO("Initializing " << name() << "...");
35 ATH_MSG_INFO("Retrieving tools...");
36 if ( (m_trigdec.retrieve()).isFailure() ){
37 ATH_MSG_ERROR("Could not retrieve Trigger Decision Tool! Can't work");
38 return StatusCode::FAILURE;
39 }
40 return StatusCode::SUCCESS;
41 }
#define ATH_MSG_ERROR(x)

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

◆ match()

void Trig::TrigEgammaMatchingToolTest::match ( const std::string & trigger,
const xAOD::Egamma * eg )
private

Definition at line 62 of file TrigEgammaMatchingToolTest.cxx.

62 {
63
64
65 if (eg) {
66 if(m_matchTool->match(eg,trigger)){
67 ATH_MSG_DEBUG("REGTEST:: Method 1 Matched Electron with tool for " << trigger);
68 m_counterMatch1Bits[trigger]++;
69 }
70 else ATH_MSG_DEBUG("REGTEST::Fails method 1 " << trigger);
71#ifdef XAOD_ANALYSIS
72 const HLT::TriggerElement *finalFC;
73 if(m_matchTool->match(eg,trigger,finalFC)){
74 ATH_MSG_DEBUG("REGTEST:: Method 2 Matched Electron with tool for " << trigger);
75 if ( finalFC != NULL ){
76 if ( (m_trigdec->ancestor<xAOD::ElectronContainer>(finalFC)).te() != NULL ){
77 if( (m_trigdec->ancestor<xAOD::ElectronContainer>(finalFC)).te()->getActiveState()){
78 ATH_MSG_DEBUG("REGTEST::Passed Matching method 2 for " << trigger);
79 m_counterMatch2Bits[trigger]++;
80 }
81 else ATH_MSG_DEBUG("REGTEST::Fails method 2");
82 }
83 }
84 }
85#endif
86 if(m_matchTool->matchHLT(eg,trigger)){
87 ATH_MSG_DEBUG("REGTEST:: Method 3 Matched Electron with tool for " << trigger);
88 m_counterMatch3Bits[trigger]++;
89 }
90 else ATH_MSG_DEBUG("REGTEST::Fails method 3");
91 /*std::vector<const xAOD::IParticle *> reco;
92 reco.push_back(eg);
93 if(m_matchTool2->match(reco,trigger)){
94 ATH_MSG_DEBUG("REGTEST:: Generic Matched Electron with tool for " << trigger);
95 m_counterMatch4Bits[trigger]++;
96 }
97 else ATH_MSG_DEBUG("REGTEST::Fails generic tool");*/
98 }
99 else ATH_MSG_DEBUG("REGTEST: eg pointer null!");
100 }

◆ 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}
#define ATH_MSG_WARNING(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_cmbTriggerList

std::vector<std::string> Trig::TrigEgammaMatchingToolTest::m_cmbTriggerList
private

Definition at line 51 of file TrigEgammaMatchingToolTest.h.

◆ m_counterBits

std::map<std::string,int> Trig::TrigEgammaMatchingToolTest::m_counterBits
private

Definition at line 52 of file TrigEgammaMatchingToolTest.h.

◆ m_counterCmbMatchBits

std::map<std::string,int> Trig::TrigEgammaMatchingToolTest::m_counterCmbMatchBits
private

Definition at line 53 of file TrigEgammaMatchingToolTest.h.

◆ m_counterMatch1Bits

std::map<std::string,int> Trig::TrigEgammaMatchingToolTest::m_counterMatch1Bits
private

Definition at line 54 of file TrigEgammaMatchingToolTest.h.

◆ m_counterMatch2Bits

std::map<std::string,int> Trig::TrigEgammaMatchingToolTest::m_counterMatch2Bits
private

Definition at line 55 of file TrigEgammaMatchingToolTest.h.

◆ m_counterMatch3Bits

std::map<std::string,int> Trig::TrigEgammaMatchingToolTest::m_counterMatch3Bits
private

Definition at line 56 of file TrigEgammaMatchingToolTest.h.

◆ m_counterMatch4Bits

std::map<std::string,int> Trig::TrigEgammaMatchingToolTest::m_counterMatch4Bits
private

Definition at line 57 of file TrigEgammaMatchingToolTest.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_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_matchTool

ToolHandle<ITrigEgammaMatchingTool> Trig::TrigEgammaMatchingToolTest::m_matchTool
private

Definition at line 46 of file TrigEgammaMatchingToolTest.h.

◆ m_trigdec

ToolHandle<Trig::TrigDecisionTool> Trig::TrigEgammaMatchingToolTest::m_trigdec
private

Definition at line 45 of file TrigEgammaMatchingToolTest.h.

◆ m_triggerList

std::vector<std::string> Trig::TrigEgammaMatchingToolTest::m_triggerList
private

Definition at line 50 of file TrigEgammaMatchingToolTest.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: