ATLAS Offline Software
Loading...
Searching...
No Matches
ITkPixelTranslatorAlg.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef ITKPIXELTRANSLATORALG_H
6#define ITKPIXELTRANSLATORALG_H
7
14
15
17{
18 public:
19
20 ITkPixelTranslatorAlg(const std::string &name, ISvcLocator *pSvcLocator):AthReentrantAlgorithm(name, pSvcLocator){};
21
22 virtual StatusCode initialize() override;
23
24 virtual StatusCode execute(const EventContext& ctx) const override;
25
26 private:
27
28 SG::ReadHandleKey<PixelRDO_Container> m_pixelRDOKey{this, "PixelRDOKey", "ITkPixelRDOs", "StoreGate Key of Pixel RDOs"};
29 SG::WriteHandleKey<ITkPixelRDO_Container> m_itkPixelRDOKey{this, "ITkPixelRDOKey", "ITkPixelRDOs", "StoreGate Key of ITk Pixel RDOs"};
30 const PixelID* m_pixelId = 0;
31};
32
33#endif
34
This is an Identifier helper class for the Pixel subdetector.
Property holding a SG store/key/clid from which a ReadHandle is made.
Property holding a SG store/key/clid from which a WriteHandle is made.
An algorithm that can be simultaneously executed in multiple threads.
SG::WriteHandleKey< ITkPixelRDO_Container > m_itkPixelRDOKey
virtual StatusCode execute(const EventContext &ctx) const override
utility to translate InDet RDO into ITk RDO and record it back to SG
ITkPixelTranslatorAlg(const std::string &name, ISvcLocator *pSvcLocator)
virtual StatusCode initialize() override
SG::ReadHandleKey< PixelRDO_Container > m_pixelRDOKey
This is an Identifier helper class for the Pixel subdetector.
Definition PixelID.h:67
Property holding a SG store/key/clid from which a ReadHandle is made.
Property holding a SG store/key/clid from which a WriteHandle is made.