ATLAS Offline Software
PixelOverlay.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 INDETOVERLAY_PIXELOVERLAY_H
6 #define INDETOVERLAY_PIXELOVERLAY_H
7 
10 
12 {
13 public:
14 
15  PixelOverlay(const std::string &name, ISvcLocator *pSvcLocator);
16 
17  virtual StatusCode initialize() override final;
18  virtual StatusCode execute(const EventContext& ctx) const override final;
19 
20 private:
21  SG::ReadHandleKey<PixelRDO_Container> m_bkgInputKey{ this, "BkgInputKey", "Bkg_PixelRDOs", "ReadHandleKey for Background Input PixelRDO_Container" };
22  SG::ReadHandleKey<PixelRDO_Container> m_signalInputKey{ this, "SignalInputKey", "Sig_PixelRDOs", "ReadHandleKey for Signal Input PixelRDO_Container" };
23  SG::WriteHandleKey<PixelRDO_Container> m_outputKey{ this, "OutputKey", "PixelRDOs", "WriteHandleKey for Output PixelRDO_Container" };
24 };
25 
26 #endif // INDETOVERLAY_PIXELOVERLAY_H
PixelOverlay
Definition: PixelOverlay.h:12
SG::ReadHandleKey
Property holding a SG store/key/clid from which a ReadHandle is made.
Definition: StoreGate/StoreGate/ReadHandleKey.h:39
PixelOverlay::m_outputKey
SG::WriteHandleKey< PixelRDO_Container > m_outputKey
Definition: PixelOverlay.h:23
PixelOverlay::initialize
virtual StatusCode initialize() override final
Definition: PixelOverlay.cxx:53
PixelOverlay::m_signalInputKey
SG::ReadHandleKey< PixelRDO_Container > m_signalInputKey
Definition: PixelOverlay.h:22
SG::WriteHandleKey
Property holding a SG store/key/clid from which a WriteHandle is made.
Definition: StoreGate/StoreGate/WriteHandleKey.h:40
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
PixelOverlay::m_bkgInputKey
SG::ReadHandleKey< PixelRDO_Container > m_bkgInputKey
Definition: PixelOverlay.h:21
PixelOverlay::execute
virtual StatusCode execute(const EventContext &ctx) const override final
Definition: PixelOverlay.cxx:68
IDC_OverlayBase.h
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:195
PixelRDO_Container.h
IDC_OverlayBase
Definition: IDC_OverlayBase.h:25
PixelOverlay::PixelOverlay
PixelOverlay(const std::string &name, ISvcLocator *pSvcLocator)
Definition: PixelOverlay.cxx:48