ATLAS Offline Software
Loading...
Searching...
No Matches
CSCConditionsTestAlgMT.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef CSCConditionsTestAlgMT_H
6#define CSCConditionsTestAlgMT_H
7
8// STL
9#include <sstream>
10#include <string>
11
12// Gaudi
14#include "GaudiKernel/ServiceHandle.h"
15#include "GaudiKernel/StatusCode.h"
16
17// Athena
21
22// Forward declarations
23class ISvcLocator;
24class StatusCode;
25class CscCondDbData;
26
29public:
30 CSCConditionsTestAlgMT(const std::string &name, ISvcLocator *pSvcLocator);
32
33 StatusCode initialize() override;
34 StatusCode execute() override;
35
36private:
37 SG::ReadCondHandleKey<CscCondDbData> m_readKey{this, "ReadKey", "CscCondDbData", "Key of CscCondDbData"};
38
39}; // end of class
40
41#endif
AthAlgorithm(const std::string &name, ISvcLocator *pSvcLocator)
Constructor with parameters:
virtual ~CSCConditionsTestAlgMT()
SG::ReadCondHandleKey< CscCondDbData > m_readKey
StatusCode initialize() override
StatusCode execute() override
CSCConditionsTestAlgMT(const std::string &name, ISvcLocator *pSvcLocator)