Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
AlgB.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef ATHEXHIVE_CONDEX_ALGB_H
6 #define ATHEXHIVE_CONDEX_ALGB_H
7 
11 #include "AthExHive/HiveDataObj.h"
12 
13 class AlgB : public AthAlgorithm {
14 
15 public:
16 
17  AlgB (const std::string& name, ISvcLocator* pSvcLocator);
18  virtual ~AlgB() = default;
19 
20  virtual bool isClonable() const override { return true; }
21 
22  virtual StatusCode initialize() override;
23  virtual StatusCode execute() override;
24 
25 private:
26 
27  SG::ReadHandleKey<HiveDataObj> m_rdh1 {this, "Key_R1", "a1", "read key 1"};
28  SG::WriteHandleKey<HiveDataObj> m_wrh1 {this, "Key_W1", "a3", "write key 1"};
29 
30 };
31 #endif
ReadHandleKey.h
Property holding a SG store/key/clid from which a ReadHandle is made.
AlgB::m_wrh1
SG::WriteHandleKey< HiveDataObj > m_wrh1
Definition: AlgB.h:28
HiveDataObj.h
AlgB::execute
virtual StatusCode execute() override
Definition: AlgB.cxx:26
SG::ReadHandleKey< HiveDataObj >
AthAlgorithm.h
SG::WriteHandleKey< HiveDataObj >
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
AthAlgorithm
Definition: AthAlgorithm.h:47
WriteHandleKey.h
Property holding a SG store/key/clid from which a WriteHandle is made.
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:240
AlgB::m_rdh1
SG::ReadHandleKey< HiveDataObj > m_rdh1
Definition: AlgB.h:27
AlgB::initialize
virtual StatusCode initialize() override
Definition: AlgB.cxx:17
AlgB::AlgB
AlgB(const std::string &name, ISvcLocator *pSvcLocator)
Definition: AlgB.cxx:11
AlgB
Definition: AlgB.h:13
AlgB::isClonable
virtual bool isClonable() const override
Definition: AlgB.h:20
AlgB::~AlgB
virtual ~AlgB()=default