Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
CondAlgY.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_CONDALGY_H
6 #define ATHEXHIVE_CONDEX_CONDALGY_H
7 
9 #include "StoreGate/ReadHandle.h"
11 
12 #include "AthExHive/CondDataObjY.h"
14 
15 class CondAlgY : public AthAlgorithm {
16 
17 public:
18 
19  CondAlgY (const std::string& name, ISvcLocator* pSvcLocator);
20  virtual ~CondAlgY() = default;
21 
22  virtual StatusCode initialize() override;
23  virtual StatusCode execute() override;
24 
25 private:
26 
27  SG::WriteCondHandleKey<CondDataObjY> m_wch1 {this, "Key_CH1", "Y1", "cond handle key 1"};
28  SG::WriteCondHandleKey<CondDataObjY> m_wch2 {this, "Key_CH2", "Y2", "cond handle key 2"};
29 
30  Gaudi::Property<std::string> m_dbk1 {this, "Key_DB1", "Y1", "explicit dbKey for cond handle 1"};
31  Gaudi::Property<std::string> m_dbk2 {this, "Key_DB2", "Y2", "explicit dbKey for cond handle 2"};
32 
33  ServiceHandle<IASCIICondDbSvc> m_cds{this, "ASCIICondDbSvc", "ASCIICondDbSvc", "Handle to the ASCII CondDb service"};
34 
35 };
36 
37 #endif
IASCIICondDbSvc.h
CondAlgY::CondAlgY
CondAlgY(const std::string &name, ISvcLocator *pSvcLocator)
Definition: CondAlgY.cxx:11
WriteCondHandleKey.h
CondAlgY
Definition: CondAlgY.h:15
CondAlgY::execute
virtual StatusCode execute() override
Definition: CondAlgY.cxx:31
CondAlgY::initialize
virtual StatusCode initialize() override
Definition: CondAlgY.cxx:17
CondAlgY::m_dbk1
Gaudi::Property< std::string > m_dbk1
Definition: CondAlgY.h:30
AthAlgorithm.h
CondAlgY::m_cds
ServiceHandle< IASCIICondDbSvc > m_cds
Definition: CondAlgY.h:33
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
CondAlgY::m_wch2
SG::WriteCondHandleKey< CondDataObjY > m_wch2
Definition: CondAlgY.h:28
AthAlgorithm
Definition: AthAlgorithm.h:47
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:240
CondDataObjY.h
CondAlgY::~CondAlgY
virtual ~CondAlgY()=default
SG::WriteCondHandleKey< CondDataObjY >
ReadHandle.h
Handle class for reading from StoreGate.
CondAlgY::m_wch1
SG::WriteCondHandleKey< CondDataObjY > m_wch1
Definition: CondAlgY.h:27
CondAlgY::m_dbk2
Gaudi::Property< std::string > m_dbk2
Definition: CondAlgY.h:31
ServiceHandle< IASCIICondDbSvc >