ATLAS Offline Software
TauJetReaderAlg.h
Go to the documentation of this file.
1 // Dear emacs, this is -*- c++ -*-
2 
3 /*
4  Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
5 */
6 
7 // $Id: TauJetReaderAlg.h 632174 2014-11-29 15:23:36Z krasznaa $
8 #ifndef XAODTAUCNV_TAUJETREADERALG_H
9 #define XAODTAUCNV_TAUJETREADERALG_H
10 
11 // Gaudi/Athena include(s):
14 
15 namespace xAODMaker {
16 
28 
29  public:
31  TauJetReaderAlg( const std::string& name, ISvcLocator* svcLoc );
32 
34  virtual StatusCode initialize();
36  virtual StatusCode execute();
37 
38  private:
40  Gaudi::Property<std::string> m_sgKey{this, "SGKey", "TauRecContainer", "StoreGate key of the container to test"};
41 
42  }; // class TauJetReaderAlg
43 
44 } // namespace xAODMaker
45 
46 #endif // XAODTAUCNV_TAUJETREADERALG_H
xAODMaker::TauJetReaderAlg
Simple algorithm testing the reading of xAOD::TauJetContainer.
Definition: TauJetReaderAlg.h:27
PropertyWrapper.h
xAODMaker
Definition: StoreGateSvc.h:70
xAODMaker::TauJetReaderAlg::execute
virtual StatusCode execute()
Function executing the algorithm.
Definition: TauJetReaderAlg.cxx:30
AthAlgorithm.h
xAODMaker::TauJetReaderAlg::m_sgKey
Gaudi::Property< std::string > m_sgKey
The StoreGate key of the container to be tested.
Definition: TauJetReaderAlg.h:40
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
xAODMaker::TauJetReaderAlg::initialize
virtual StatusCode initialize()
Function initialising the algorithm.
Definition: TauJetReaderAlg.cxx:20
AthAlgorithm
Definition: AthAlgorithm.h:47
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:240
xAODMaker::TauJetReaderAlg::TauJetReaderAlg
TauJetReaderAlg(const std::string &name, ISvcLocator *svcLoc)
Regular Algorithm constructor.
Definition: TauJetReaderAlg.cxx:15