ATLAS Offline Software
MuonFeatureCnvAlg.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:$
8 #ifndef xAODTrigMuonCNV_MuonFeatureCnvAlg_H
9 #define xAODTrigMuonCNV_MuonFeatureCnvAlg_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 
29 
30  public:
32  MuonFeatureCnvAlg( const std::string& name, ISvcLocator* svcLoc );
33 
35  virtual StatusCode initialize();
37  virtual StatusCode execute();
38 
39  private:
41  std::string m_mfName;
42  std::string m_mfdName;
44  std::string m_xaodName;
45 
47  ToolHandle< IMuonFeatureCnvTool > m_converterTool;
48 
49  }; // class MuonFeatureCnvAlg
50 
51 } // namespace xAODMaker
52 
53 #endif // xAODTrigMuonCNV_MuonFeatureCnvAlg_H
xAODMaker::MuonFeatureCnvAlg::m_xaodName
std::string m_xaodName
StoreGate key for the output container.
Definition: MuonFeatureCnvAlg.h:44
xAODMaker::MuonFeatureCnvAlg::m_mfName
std::string m_mfName
StoreGate key of the input container.
Definition: MuonFeatureCnvAlg.h:41
xAODMaker::MuonFeatureCnvAlg::m_converterTool
ToolHandle< IMuonFeatureCnvTool > m_converterTool
Handle to the converter tool.
Definition: MuonFeatureCnvAlg.h:47
xAODMaker
Definition: StoreGateSvc.h:72
xAODMaker::MuonFeatureCnvAlg::MuonFeatureCnvAlg
MuonFeatureCnvAlg(const std::string &name, ISvcLocator *svcLoc)
Regular Algorithm constructor.
Definition: MuonFeatureCnvAlg.cxx:24
AthAlgorithm.h
IMuonFeatureCnvTool.h
xAODMaker::MuonFeatureCnvAlg::execute
virtual StatusCode execute()
Function executing the algorithm.
Definition: MuonFeatureCnvAlg.cxx:50
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
xAODMaker::MuonFeatureCnvAlg::initialize
virtual StatusCode initialize()
Function initialising the algorithm.
Definition: MuonFeatureCnvAlg.cxx:34
AthAlgorithm
Definition: AthAlgorithm.h:47
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:195
xAODMaker::MuonFeatureCnvAlg::m_mfdName
std::string m_mfdName
Definition: MuonFeatureCnvAlg.h:42
xAODMaker::MuonFeatureCnvAlg
Algorithm for creating xAOD::L2StandAloneMuonContainer from an AOD.
Definition: MuonFeatureCnvAlg.h:28