ATLAS Offline Software
Loading...
Searching...
No Matches
SCT_ConditionsSummaryTestAlg.h
Go to the documentation of this file.
1// -*- C++ -*-
2
3/*
4 Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
5*/
6
15
16#ifndef SCT_ConditionsSummaryTestAlg_H
17#define SCT_ConditionsSummaryTestAlg_H
18
19//Athena
21
23
24//Gaudi
25#include "GaudiKernel/ToolHandle.h"
26
27//STL
28#include <string>
29
32 public:
33 SCT_ConditionsSummaryTestAlg(const std::string &name,ISvcLocator *pSvcLocator) ;
34 virtual ~SCT_ConditionsSummaryTestAlg() = default;
35
36 virtual StatusCode initialize() override;
37 virtual StatusCode execute(const EventContext& ctx) const override;
38 virtual StatusCode finalize() override;
40 virtual bool isClonable() const override { return true; };
41
42 private:
43 ToolHandle<IInDetConditionsTool> m_pSummaryTool{this, "SCT_ConditionsSummaryTool", "SCT_ConditionsSummaryTool", "ConditionsSummaryTool for SCT"};
44}; //end of class
45
46#endif // SCT_ConditionsSummaryTestAlg_H
An algorithm that can be simultaneously executed in multiple threads.
SCT_ConditionsSummaryTestAlg(const std::string &name, ISvcLocator *pSvcLocator)
ToolHandle< IInDetConditionsTool > m_pSummaryTool
virtual StatusCode execute(const EventContext &ctx) const override
virtual ~SCT_ConditionsSummaryTestAlg()=default
virtual StatusCode finalize() override
virtual StatusCode initialize() override
virtual bool isClonable() const override
Make this algorithm clonable.