Loading [MathJax]/jax/output/SVG/config.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
CondAlgZ.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_CONDALGZ_H
6 #define ATHEXHIVE_CONDEX_CONDALGZ_H
7 
9 #include "StoreGate/ReadHandle.h"
12 
13 #include "AthExHive/CondDataObj.h"
14 #include "AthExHive/CondDataObjY.h"
15 #include "AthExHive/CondDataObjZ.h"
16 
18 
19 class CondAlgZ : public AthAlgorithm {
20 
21 public:
22 
23  CondAlgZ (const std::string& name, ISvcLocator* pSvcLocator);
24  virtual ~CondAlgZ() = default;
25 
26  virtual StatusCode initialize() override;
27  virtual StatusCode execute() override;
28 
29 private:
30 
31  SG::ReadCondHandleKey<CondDataObj> m_rchk1 {this, "Key_RCH1", "X2", "read cond handle key 1"};
32  SG::ReadCondHandleKey<CondDataObjY> m_rchk2 {this, "Key_RCH2", "Y1", "read cond handle key 2"};
33  SG::ReadCondHandleKey<CondDataObjY> m_rchk3 {this, "Key_RCH3", "Y2", "read cond handle key 3"};
34 
35  SG::WriteCondHandleKey<CondDataObjZ> m_wch {this, "Key_WCH", "Z1", "write cond handle key"};
36 };
37 
38 #endif
CondAlgZ::m_wch
SG::WriteCondHandleKey< CondDataObjZ > m_wch
Definition: CondAlgZ.h:35
CondAlgZ
Definition: CondAlgZ.h:19
WriteCondHandleKey.h
CondAlgZ::~CondAlgZ
virtual ~CondAlgZ()=default
CondDataObj.h
CondAlgZ::m_rchk2
SG::ReadCondHandleKey< CondDataObjY > m_rchk2
Definition: CondAlgZ.h:32
CondAlgZ::initialize
virtual StatusCode initialize() override
Definition: CondAlgZ.cxx:15
AthAlgorithm.h
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
CondAlgZ::CondAlgZ
CondAlgZ(const std::string &name, ISvcLocator *pSvcLocator)
Definition: CondAlgZ.cxx:9
CondAlgZ::m_rchk3
SG::ReadCondHandleKey< CondDataObjY > m_rchk3
Definition: CondAlgZ.h:33
CondAlgZ::execute
virtual StatusCode execute() override
Definition: CondAlgZ.cxx:27
CondDataObjZ.h
AthAlgorithm
Definition: AthAlgorithm.h:47
ReadCondHandleKey.h
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:240
CondDataObjY.h
EventInfo.h
SG::ReadCondHandleKey< CondDataObj >
CondAlgZ::m_rchk1
SG::ReadCondHandleKey< CondDataObj > m_rchk1
Definition: CondAlgZ.h:31
SG::WriteCondHandleKey< CondDataObjZ >
ReadHandle.h
Handle class for reading from StoreGate.