ATLAS Offline Software
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 
10 #include "AthExHive/HiveDataObj.h"
11 #include "../HiveAlgBase.h"
12 
13 #include <string>
14 
15 class HiveAlgL1 : public HiveAlgBase {
16 
17 public:
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 
29 
30 private:
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
ReadHandleKey.h
Property holding a SG store/key/clid from which a ReadHandle is made.
HiveDataObj.h
SG::ReadHandleKey< HiveDataObj >
HiveAlgL1::initialize
StatusCode initialize()
Definition: HiveAlgL1.cxx:18
HiveAlgL1::HiveAlgL1
HiveAlgL1(const std::string &name, ISvcLocator *pSvcLocator)
Definition: HiveAlgL1.cxx:11
SG::WriteHandleKey< HiveDataObj >
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
HiveAlgBase
Definition: HiveAlgBase.h:26
WriteHandleKey.h
Property holding a SG store/key/clid from which a WriteHandle is made.
HiveAlgL1::finalize
StatusCode finalize()
Definition: HiveAlgL1.cxx:27
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:195
HiveAlgL1
Definition: HiveAlgL1.h:15
HiveAlgL1::execute
StatusCode execute()
Definition: HiveAlgL1.cxx:32
HiveAlgL1::m_rdh1
SG::ReadHandleKey< HiveDataObj > m_rdh1
Definition: HiveAlgL1.h:32
HiveAlgL1::~HiveAlgL1
~HiveAlgL1()
Definition: HiveAlgL1.cxx:16
HiveAlgL1::m_wrh1
SG::WriteHandleKey< HiveDataObj > m_wrh1
Definition: HiveAlgL1.h:33