ATLAS Offline Software
Loading...
Searching...
No Matches
AlgC.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_ALGC_H
6#define ATHEXHIVE_CONDEX_ALGC_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", "a2", "read key 1"};
26
27 SG::ReadCondHandleKey<CondDataObj> m_rch {this, "Key_CH", "X1", "cond read key"};
28
29};
30#endif
Property holding a SG store/key/clid from which a ReadHandle is made.
Definition AlgC.h:15
SG::ReadHandleKey< HiveDataObj > m_rdh1
Definition AlgC.h:25
SG::ReadCondHandleKey< CondDataObj > m_rch
Definition AlgC.h:27
virtual StatusCode initialize() override
Definition AlgC.cxx:11
virtual StatusCode execute(const EventContext &ctx) const override
Definition AlgC.cxx:26
An algorithm that can be simultaneously executed in multiple threads.
Property holding a SG store/key/clid from which a ReadHandle is made.