ATLAS Offline Software
Loading...
Searching...
No Matches
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
16
17class AlgE : public AthAlgorithm {
18
19public:
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
29private:
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
Property holding a SG store/key/clid from which a ReadHandle is made.
SG::ReadCondHandleKey< CondDataObjY > m_rch3
Definition AlgE.h:35
virtual StatusCode initialize() override
Definition AlgE.cxx:17
virtual ~AlgE()=default
virtual StatusCode execute() override
Definition AlgE.cxx:37
AlgE(const std::string &name, ISvcLocator *pSvcLocator)
Definition AlgE.cxx:9
SG::ReadHandleKey< HiveDataObj > m_rdh1
Definition AlgE.h:31
SG::ReadCondHandleKey< CondDataObj > m_rch1
Definition AlgE.h:33
SG::ReadCondHandleKey< CondDataObjY > m_rch2
Definition AlgE.h:34
SG::ReadCondHandleKey< CondDataObjZ > m_rch4
Definition AlgE.h:37
virtual bool isClonable() const override
Definition AlgE.h:24
AthAlgorithm(const std::string &name, ISvcLocator *pSvcLocator)
Constructor with parameters:
Property holding a SG store/key/clid from which a ReadHandle is made.