Loading [MathJax]/jax/output/SVG/config.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
AlgE.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef ATHEXHIVE_CONDEX_ALGE_H
6 #define ATHEXHIVE_CONDEX_ALGE_H
7 
11 
12 #include "AthExHive/HiveDataObj.h"
13 #include "AthExHive/CondDataObj.h"
14 #include "AthExHive/CondDataObjY.h"
15 #include "AthExHive/CondDataObjZ.h"
16 
17 class AlgE : public AthAlgorithm {
18 
19 public:
20 
21  AlgE (const std::string& name, ISvcLocator* pSvcLocator);
22  virtual ~AlgE() = default;
23 
24  virtual bool isClonable() const override { return true; }
25 
26  virtual StatusCode initialize() override;
27  virtual StatusCode execute() override;
28 
29 private:
30 
31  SG::ReadHandleKey<HiveDataObj> m_rdh1 {this, "Key_R1", "a1", "read key 1"};
32 
33  SG::ReadCondHandleKey<CondDataObj> m_rch1 {this, "Key_CH1", "X2", "cond read key1"};
34  SG::ReadCondHandleKey<CondDataObjY> m_rch2 {this, "Key_CH2", "Y1", "cond read key2"};
35  SG::ReadCondHandleKey<CondDataObjY> m_rch3 {this, "Key_CH3", "Y2", "cond read key3"};
36 
37  SG::ReadCondHandleKey<CondDataObjZ> m_rch4 {this, "Key_CH4", "Z1", "cond read key4"};
38 
39 
40 };
41 #endif
ReadHandleKey.h
Property holding a SG store/key/clid from which a ReadHandle is made.
HiveDataObj.h
AlgE::m_rch2
SG::ReadCondHandleKey< CondDataObjY > m_rch2
Definition: AlgE.h:34
CondDataObj.h
SG::ReadHandleKey< HiveDataObj >
AlgE::isClonable
virtual bool isClonable() const override
Definition: AlgE.h:24
AlgE::m_rch4
SG::ReadCondHandleKey< CondDataObjZ > m_rch4
Definition: AlgE.h:37
AthAlgorithm.h
AlgE::AlgE
AlgE(const std::string &name, ISvcLocator *pSvcLocator)
Definition: AlgE.cxx:9
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
AlgE::m_rch1
SG::ReadCondHandleKey< CondDataObj > m_rch1
Definition: AlgE.h:33
AlgE
Definition: AlgE.h:17
CondDataObjZ.h
AthAlgorithm
Definition: AthAlgorithm.h:47
ReadCondHandleKey.h
AlgE::execute
virtual StatusCode execute() override
Definition: AlgE.cxx:37
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:240
CondDataObjY.h
AlgE::~AlgE
virtual ~AlgE()=default
SG::ReadCondHandleKey< CondDataObj >
AlgE::m_rdh1
SG::ReadHandleKey< HiveDataObj > m_rdh1
Definition: AlgE.h:31
AlgE::m_rch3
SG::ReadCondHandleKey< CondDataObjY > m_rch3
Definition: AlgE.h:35
AlgE::initialize
virtual StatusCode initialize() override
Definition: AlgE.cxx:17