ATLAS Offline Software
CopySCT_ClusterContainer.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef OVERLAYCOPYALGS_COPYSCTCLUSTERCONTAINER_H
6 #define OVERLAYCOPYALGS_COPYSCTCLUSTERCONTAINER_H
7 
10 
11 class SCT_ID;
12 
14 {
15 public:
16 
17  CopySCT_ClusterContainer(const std::string &name, ISvcLocator *pSvcLocator);
18 
19  virtual StatusCode initialize() override;
20  virtual StatusCode execute(const EventContext& ctx) const override;
21 
22 private:
23  SG::ReadHandleKey<InDet::SCT_ClusterContainer> m_inputKey{ this, "InputKey", "", "ReadHandleKey for Pileup SCT_ClusterContainer" };
24  SG::WriteHandleKey<InDet::SCT_ClusterContainer> m_outputKey{ this, "OutputKey", "", "WriteHandleKey for Output SCT_ClusterContainer" };
25 
26  const SCT_ID* m_idHelper = nullptr;
27 
28 };
29 
30 #endif // OVERLAYCOPYALGS_COPYSCTCLUSTERCONTAINER_H
CopySCT_ClusterContainer::m_outputKey
SG::WriteHandleKey< InDet::SCT_ClusterContainer > m_outputKey
Definition: CopySCT_ClusterContainer.h:24
CopySCT_ClusterContainer::execute
virtual StatusCode execute(const EventContext &ctx) const override
Definition: CopySCT_ClusterContainer.cxx:28
SG::ReadHandleKey< InDet::SCT_ClusterContainer >
AthReentrantAlgorithm
An algorithm that can be simultaneously executed in multiple threads.
Definition: AthReentrantAlgorithm.h:83
SG::WriteHandleKey< InDet::SCT_ClusterContainer >
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
CopySCT_ClusterContainer::initialize
virtual StatusCode initialize() override
Definition: CopySCT_ClusterContainer.cxx:13
CopySCT_ClusterContainer
Definition: CopySCT_ClusterContainer.h:14
AthReentrantAlgorithm.h
CopySCT_ClusterContainer::m_inputKey
SG::ReadHandleKey< InDet::SCT_ClusterContainer > m_inputKey
Definition: CopySCT_ClusterContainer.h:23
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:195
CopySCT_ClusterContainer::CopySCT_ClusterContainer
CopySCT_ClusterContainer(const std::string &name, ISvcLocator *pSvcLocator)
Definition: CopySCT_ClusterContainer.cxx:10
SCT_ID
Definition: SCT_ID.h:68
SCT_ClusterContainer.h
CopySCT_ClusterContainer::m_idHelper
const SCT_ID * m_idHelper
Definition: CopySCT_ClusterContainer.h:26