ATLAS Offline Software
Loading...
Searching...
No Matches
SCT_RODVetoTestAlg.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_RODVetoTestAlg_H
17#define SCT_RODVetoTestAlg_H
18
19//Athena
21
22//Gaudi
24#include "GaudiKernel/ToolHandle.h"
25
26//STL
27#include <string>
28
31 public:
32 SCT_RODVetoTestAlg(const std::string &name,ISvcLocator *pSvcLocator);
33 virtual ~SCT_RODVetoTestAlg() = default;
34
35 virtual StatusCode initialize() override;
36 virtual StatusCode execute(const EventContext& ctx) const override;
37 virtual StatusCode finalize() override;
39 virtual bool isClonable() const override { return true; };
40
41 private:
42 ToolHandle<ISCT_ConditionsTool> m_pRODVetoTool{this, "SCT_RODVetoTool", "SCT_RODVetoTool", "Tool to retrieve bad modules due to vetoed RODs"};
43}; //end of class
44
45#endif // SCT_RODVetoTestAlg_H
header file for baseclass of SCT conditions tools
An algorithm that can be simultaneously executed in multiple threads.
virtual StatusCode execute(const EventContext &ctx) const override
virtual ~SCT_RODVetoTestAlg()=default
ToolHandle< ISCT_ConditionsTool > m_pRODVetoTool
virtual bool isClonable() const override
Make this algorithm clonable.
virtual StatusCode finalize() override
virtual StatusCode initialize() override
SCT_RODVetoTestAlg(const std::string &name, ISvcLocator *pSvcLocator)