ATLAS Offline Software
Loading...
Searching...
No Matches
AlgD.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_ALGD_H
6#define ATHEXHIVE_CONDEX_ALGD_H
7
11
14
16
17public:
18 using AthReentrantAlgorithm::AthReentrantAlgorithm;
19
20 virtual StatusCode initialize() override;
21 virtual StatusCode execute(const EventContext& ctx) const override;
22
23private:
24
25 SG::ReadHandleKey<HiveDataObj> m_rdh1 {this, "Key_R1", "a1", "read key 1"};
26
27 SG::ReadCondHandleKey<CondDataObj> m_rch1 {this, "Key_CH1", "X1", "cond read key1"};
28 SG::ReadCondHandleKey<CondDataObj> m_rch2 {this, "Key_CH2", "X2", "cond read key2"};
29
30};
31#endif
Property holding a SG store/key/clid from which a ReadHandle is made.
Definition AlgD.h:15
virtual StatusCode execute(const EventContext &ctx) const override
Definition AlgD.cxx:27
virtual StatusCode initialize() override
Definition AlgD.cxx:11
SG::ReadCondHandleKey< CondDataObj > m_rch2
Definition AlgD.h:28
SG::ReadCondHandleKey< CondDataObj > m_rch1
Definition AlgD.h:27
SG::ReadHandleKey< HiveDataObj > m_rdh1
Definition AlgD.h:25
An algorithm that can be simultaneously executed in multiple threads.
Property holding a SG store/key/clid from which a ReadHandle is made.