ATLAS Offline Software
Loading...
Searching...
No Matches
HiveAlgL1.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef ATHEXHIVE_ALGL1_H
6#define ATHEXHIVE_ALGL1_H 1
7
11#include "../HiveAlgBase.h"
12
13#include <string>
14
15class HiveAlgL1 : public HiveAlgBase {
16
17public:
18
19 // Standard Algorithm Constructor:
20
21 HiveAlgL1 (const std::string& name, ISvcLocator* pSvcLocator);
22 ~HiveAlgL1();
23
24 // Define the initialize, execute and finalize methods:
25
26 StatusCode initialize();
27 StatusCode execute();
28 StatusCode finalize();
29
30private:
31
32 SG::ReadHandleKey<HiveDataObj> m_rdh1{this, "Key_R1", "a2", "read key"};
33 SG::WriteHandleKey<HiveDataObj> m_wrh1{this, "Key_W1", "l1", "write key"};
34
35};
36#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.
Property holding a SG store/key/clid from which a WriteHandle is made.
HiveAlgBase(const std::string &name, ISvcLocator *pSvcLocator)
StatusCode execute()
Definition HiveAlgL1.cxx:32
SG::WriteHandleKey< HiveDataObj > m_wrh1
Definition HiveAlgL1.h:33
StatusCode finalize()
Definition HiveAlgL1.cxx:27
SG::ReadHandleKey< HiveDataObj > m_rdh1
Definition HiveAlgL1.h:32
HiveAlgL1(const std::string &name, ISvcLocator *pSvcLocator)
Definition HiveAlgL1.cxx:11
StatusCode initialize()
Definition HiveAlgL1.cxx:18
Property holding a SG store/key/clid from which a ReadHandle is made.
Property holding a SG store/key/clid from which a WriteHandle is made.