ATLAS Offline Software
Loading...
Searching...
No Matches
HiveAlgL3.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_ALGL3_H
6#define ATHEXHIVE_ALGL3_H 1
7
12#include "../HiveAlgBase.h"
13
14#include <string>
15
16class HiveAlgL3 : public HiveAlgBase {
17
18public:
19
20 // Standard Algorithm Constructor:
21
22 HiveAlgL3 (const std::string& name, ISvcLocator* pSvcLocator);
24
25 // Define the initialize, execute and finalize methods:
26
27 virtual StatusCode initialize() override;
28 virtual StatusCode execute(const EventContext& ctx) const override;
29
30private:
31 SG::UpdateHandleKey<HiveDataObj> m_udh1{this, "Key_U1", "l1", "update handle"};
32};
33#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)
SG::UpdateHandleKey< HiveDataObj > m_udh1
Definition HiveAlgL3.h:31
virtual StatusCode execute(const EventContext &ctx) const override
Definition HiveAlgL3.cxx:27
virtual StatusCode initialize() override
Definition HiveAlgL3.cxx:19
HiveAlgL3(const std::string &name, ISvcLocator *pSvcLocator)
Definition HiveAlgL3.cxx:11
Property holding a SG store/key/clid from which an UpdateHandle is made.