ATLAS Offline Software
TrigCaloClusterCnvAlg.h
Go to the documentation of this file.
1 // Dear emacs, this is -*- c++ -*-
2 
3 /*
4  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
5 */
6 
7 // $Id: TrigCaloClusterCnvAlg.h 592334 2014-04-10 11:01:56Z krasznaa $
8 #ifndef XAODTRIGCALOCNV_TRIGCALOCLUSTERCNVALG_H
9 #define XAODTRIGCALOCNV_TRIGCALOCLUSTERCNVALG_H
10 
11 // System include(s):
12 #include <string>
13 
14 // Gaudi/Athena include(s):
16 #include "GaudiKernel/ToolHandle.h"
17 
18 // Local include(s):
20 
21 namespace xAODMaker {
22 
35 
36  public:
38  TrigCaloClusterCnvAlg( const std::string& name, ISvcLocator* svcLoc );
39 
41  virtual StatusCode initialize();
43  virtual StatusCode execute();
44 
45  private:
47  std::string m_aodKey;
49  std::string m_xaodKey;
50 
52  ToolHandle< ITrigCaloClusterCnvTool > m_cnvTool;
53 
54  }; // class TrigCaloClusterCnvAlg
55 
56 } // namespace xAODMaker
57 
58 #endif // XAODTRIGCALOCNV_TRIGCALOCLUSTERCNVALG_H
xAODMaker::TrigCaloClusterCnvAlg::m_xaodKey
std::string m_xaodKey
StoreGate key for the output container.
Definition: TrigCaloClusterCnvAlg.h:49
xAODMaker
Definition: StoreGateSvc.h:72
xAODMaker::TrigCaloClusterCnvAlg::execute
virtual StatusCode execute()
Function executing the algorithm.
Definition: TrigCaloClusterCnvAlg.cxx:44
AthAlgorithm.h
xAODMaker::TrigCaloClusterCnvAlg::TrigCaloClusterCnvAlg
TrigCaloClusterCnvAlg(const std::string &name, ISvcLocator *svcLoc)
Regular Algorithm constructor.
Definition: TrigCaloClusterCnvAlg.cxx:20
xAODMaker::TrigCaloClusterCnvAlg
Algorithm for creating xAOD::TrigCaloCluster from an AOD.
Definition: TrigCaloClusterCnvAlg.h:34
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
xAODMaker::TrigCaloClusterCnvAlg::m_aodKey
std::string m_aodKey
StoreGate key of the input container.
Definition: TrigCaloClusterCnvAlg.h:47
AthAlgorithm
Definition: AthAlgorithm.h:47
ITrigCaloClusterCnvTool.h
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:195
xAODMaker::TrigCaloClusterCnvAlg::initialize
virtual StatusCode initialize()
Function initialising the algorithm.
Definition: TrigCaloClusterCnvAlg.cxx:30
xAODMaker::TrigCaloClusterCnvAlg::m_cnvTool
ToolHandle< ITrigCaloClusterCnvTool > m_cnvTool
Handle to the converter tool.
Definition: TrigCaloClusterCnvAlg.h:52