ATLAS Offline Software
Loading...
Searching...
No Matches
HiveAlgL2.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_ALGL2_H
6#define ATHEXHIVE_ALGL2_H 1
7
12#include "../HiveAlgBase.h"
13
14#include <string>
15
16class HiveAlgL2 : public HiveAlgBase {
17
18public:
19
20 // Standard Algorithm Constructor:
21
22 HiveAlgL2 (const std::string& name, ISvcLocator* pSvcLocator);
23 ~HiveAlgL2();
24
25 // Define the initialize, execute and finalize methods:
26
27 StatusCode initialize();
28 StatusCode execute();
29 StatusCode finalize();
30
31private:
32
33 SG::ReadHandleKey<HiveDataObj> m_rdh1{this, "Key_R1", "l1", "read key"};
34
36
37
38};
39#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.
Property holding a SG store/key/clid from which an UpdateHandle is made.
HiveAlgBase(const std::string &name, ISvcLocator *pSvcLocator)
HiveAlgL2(const std::string &name, ISvcLocator *pSvcLocator)
Definition HiveAlgL2.cxx:11
StatusCode finalize()
Definition HiveAlgL2.cxx:32
SG::UpdateHandleKey< HiveDataObj > m_udh1
Definition HiveAlgL2.h:35
SG::ReadHandleKey< HiveDataObj > m_rdh1
Definition HiveAlgL2.h:33
StatusCode initialize()
Definition HiveAlgL2.cxx:23
StatusCode execute()
Definition HiveAlgL2.cxx:37
Property holding a SG store/key/clid from which a ReadHandle is made.
Property holding a SG store/key/clid from which an UpdateHandle is made.