ATLAS Offline Software
Loading...
Searching...
No Matches
HiveAlgF.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3*/
4
10
11#ifndef ATHEXHIVE_ALGF_H
12#define ATHEXHIVE_ALGF_H 1
13
14#include "HiveAlgBase.h"
17
18#include <string>
19
20class HiveAlgF : public HiveAlgBase {
21
22public:
23
24 // Standard Algorithm Constructor:
25
26 HiveAlgF (const std::string& name, ISvcLocator* pSvcLocator);
28
29 // Define the initialize and execute methods:
30
31 virtual StatusCode initialize() override;
32 virtual StatusCode execute() override;
33
34private:
35
36 SG::ReadHandleKey<HiveDataObj> m_rdh1{this, "Key_R1", "c2", "Read key 1"};
37 SG::ReadHandleKey<HiveDataObj> m_rdh2{this, "Key_R2", "e1", "Read key 2"};
38 SG::ReadHandleKey<HiveDataObj> m_rdh3{this, "Key_R3", "d1", "Read key 3"};
39 SG::ReadHandleKey<HiveDataObj> m_rdh4{this, "Key_R4", "C1", "Read key 4"};
40 SG::ReadHandleKey<HiveDataObj> m_rdh5{this, "Key_R5", "b1", "Read key 5"};
41 SG::ReadHandleKey<HiveDataObj> m_rdh6{this, "Key_R6", "a1", "Read key 6"};
42
43};
44#endif
Base class for AthExHive example Algs to provide functionality to sleep for a certain amount of time,...
Property holding a SG store/key/clid from which a ReadHandle is made.
HiveAlgBase(const std::string &name, ISvcLocator *pSvcLocator)
SG::ReadHandleKey< HiveDataObj > m_rdh2
Definition HiveAlgF.h:37
SG::ReadHandleKey< HiveDataObj > m_rdh1
Definition HiveAlgF.h:36
SG::ReadHandleKey< HiveDataObj > m_rdh5
Definition HiveAlgF.h:40
SG::ReadHandleKey< HiveDataObj > m_rdh6
Definition HiveAlgF.h:41
SG::ReadHandleKey< HiveDataObj > m_rdh3
Definition HiveAlgF.h:38
SG::ReadHandleKey< HiveDataObj > m_rdh4
Definition HiveAlgF.h:39
virtual StatusCode execute() override
Definition HiveAlgF.cxx:32
HiveAlgF(const std::string &name, ISvcLocator *pSvcLocator)
Definition HiveAlgF.cxx:7
virtual StatusCode initialize() override
Definition HiveAlgF.cxx:17
Property holding a SG store/key/clid from which a ReadHandle is made.