ATLAS Offline Software
Loading...
Searching...
No Matches
ForceIDConditionsAlg.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef FORCEIDCONDITIONSALG_H
6#define FORCEIDCONDITIONSALG_H
7
12
14 public:
15 ForceIDConditionsAlg(const std::string& name, ISvcLocator* pSvcLocator)
16 : AthReentrantAlgorithm(name, pSvcLocator) {};
18
19 virtual StatusCode initialize() override;
20
21 virtual StatusCode execute(const EventContext&) const override { return StatusCode::SUCCESS; };
22
23 protected:
24 SG::ReadCondHandleKey<InDetDD::SiDetectorElementCollection> m_pixelDetEleCollKey{this, "PixelDetEleCollKey", "PixelDetectorElementCollection", "Key of SiDetectorElementCollection for Pixel"};
25 SG::ReadCondHandleKey<InDetDD::SiDetectorElementCollection> m_SCTDetEleCollKey{this, "SCTDetEleCollKey", "SCT_DetectorElementCollection", "Key of SiDetectorElementCollection for SCT"};
26 SG::ReadCondHandleKey<InDetDD::TRT_DetElementContainer> m_trtDetEleContKey{this, "TRTDetEleContKey", "TRT_DetElementContainer", "Key of TRT_DetElementContainer"};
27
28};
29
30#endif
An algorithm that can be simultaneously executed in multiple threads.
virtual StatusCode initialize() override
SG::ReadCondHandleKey< InDetDD::SiDetectorElementCollection > m_pixelDetEleCollKey
SG::ReadCondHandleKey< InDetDD::TRT_DetElementContainer > m_trtDetEleContKey
SG::ReadCondHandleKey< InDetDD::SiDetectorElementCollection > m_SCTDetEleCollKey
virtual StatusCode execute(const EventContext &) const override
ForceIDConditionsAlg(const std::string &name, ISvcLocator *pSvcLocator)