ATLAS Offline Software
HIClusterCopier.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 // HIClusterCopier.h
6 
7 #ifndef __HIJETREC_HICLUSTERCOPIER_H__
8 #define __HIJETREC_HICLUSTERCOPIER_H__
9 
15 
16 class CaloCellContainer;
17 
19 {
20 
21 public:
22 
23  HIClusterCopier(const std::string& name, ISvcLocator* pSvcLocator);
25 
26  virtual StatusCode initialize();
27  virtual StatusCode execute(const EventContext &ctx) const;
28  virtual StatusCode finalize();
29 
30 private:
32  SG::ReadHandleKey<xAOD::CaloClusterContainer> m_inputKey { this, "InputContainerKey" , "HIClusters" , "Input Container Key" };
34  SG::WriteHandleKey<xAOD::CaloClusterContainer> m_outputKey { this, "OutputContainerKey" , "DFHIClusters" , "Output Container Key"};
35 
36 };
37 #endif
ReadHandleKey.h
Property holding a SG store/key/clid from which a ReadHandle is made.
HIClusterCopier::m_inputKey
SG::ReadHandleKey< xAOD::CaloClusterContainer > m_inputKey
Name of input CaloClusterContainer, e.g HIClusters.
Definition: HIClusterCopier.h:32
HIClusterCopier::finalize
virtual StatusCode finalize()
Definition: HIClusterCopier.cxx:56
SG::ReadHandleKey< xAOD::CaloClusterContainer >
CaloClusterAuxContainer.h
AthReentrantAlgorithm
An algorithm that can be simultaneously executed in multiple threads.
Definition: AthReentrantAlgorithm.h:74
HIClusterCopier::m_outputKey
SG::WriteHandleKey< xAOD::CaloClusterContainer > m_outputKey
Name of output CaloClusterContainer, e.g. DFHIClusters.
Definition: HIClusterCopier.h:34
SG::WriteHandleKey< xAOD::CaloClusterContainer >
HIClusterCopier::initialize
virtual StatusCode initialize()
Definition: HIClusterCopier.cxx:16
HIClusterCopier::~HIClusterCopier
~HIClusterCopier()
Definition: HIClusterCopier.h:24
HIClusterCopier
Definition: HIClusterCopier.h:19
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
AthReentrantAlgorithm.h
WriteHandleKey.h
Property holding a SG store/key/clid from which a WriteHandle is made.
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:240
CaloCellContainer
Container class for CaloCell.
Definition: CaloCellContainer.h:55
HIClusterCopier::execute
virtual StatusCode execute(const EventContext &ctx) const
Definition: HIClusterCopier.cxx:25
CaloClusterContainer.h
HIClusterCopier::HIClusterCopier
HIClusterCopier(const std::string &name, ISvcLocator *pSvcLocator)
Definition: HIClusterCopier.cxx:11