ATLAS Offline Software
Loading...
Searching...
No Matches
AlgE.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2026 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
18
19public:
20 using AthReentrantAlgorithm::AthReentrantAlgorithm;
21
22 virtual StatusCode initialize() override;
23 virtual StatusCode execute(const EventContext& ctx) const override;
24
25private:
26
27 SG::ReadHandleKey<HiveDataObj> m_rdh1 {this, "Key_R1", "a1", "read key 1"};
28
29 SG::ReadCondHandleKey<CondDataObj> m_rch1 {this, "Key_CH1", "X2", "cond read key1"};
30 SG::ReadCondHandleKey<CondDataObjY> m_rch2 {this, "Key_CH2", "Y1", "cond read key2"};
31 SG::ReadCondHandleKey<CondDataObjY> m_rch3 {this, "Key_CH3", "Y2", "cond read key3"};
32
33 SG::ReadCondHandleKey<CondDataObjZ> m_rch4 {this, "Key_CH4", "Z1", "cond read key4"};
34
35
36};
37#endif
Property holding a SG store/key/clid from which a ReadHandle is made.
Definition AlgE.h:17
SG::ReadCondHandleKey< CondDataObjY > m_rch3
Definition AlgE.h:31
virtual StatusCode initialize() override
Definition AlgE.cxx:11
virtual StatusCode execute(const EventContext &ctx) const override
Definition AlgE.cxx:31
SG::ReadHandleKey< HiveDataObj > m_rdh1
Definition AlgE.h:27
SG::ReadCondHandleKey< CondDataObj > m_rch1
Definition AlgE.h:29
SG::ReadCondHandleKey< CondDataObjY > m_rch2
Definition AlgE.h:30
SG::ReadCondHandleKey< CondDataObjZ > m_rch4
Definition AlgE.h:33
An algorithm that can be simultaneously executed in multiple threads.
Property holding a SG store/key/clid from which a ReadHandle is made.