ATLAS Offline Software
AFP_VertexReco.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef AFP_VERTEXRECO_h
6 #define AFP_VERTEXRECO_h
7 
8 
9 
11 #include "GaudiKernel/ToolHandle.h"
12 
14 
15 
17 {
18  public:
19  AFP_VertexReco(const std::string& name, ISvcLocator* pSvcLocator);
20  virtual ~AFP_VertexReco() override;
21 
22  virtual StatusCode initialize() override;
23  virtual StatusCode execute(const EventContext &ctx) const override;
24 
25  private:
27  ToolHandle<IAFP_VertexRecoTool> m_recoToolHandle {this, "recoTool", "", "AFP vertex reco tool"};
28 };
29 
30 #endif
IAFP_VertexRecoTool.h
Header file for interface IAFP_VertexRecoTool.
AFP_VertexReco::execute
virtual StatusCode execute(const EventContext &ctx) const override
Definition: AFP_VertexReco.cxx:35
AFP_VertexReco
Definition: AFP_VertexReco.py:1
AthReentrantAlgorithm
An algorithm that can be simultaneously executed in multiple threads.
Definition: AthReentrantAlgorithm.h:83
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
AFP_VertexReco::initialize
virtual StatusCode initialize() override
Definition: AFP_VertexReco.cxx:19
AthReentrantAlgorithm.h
AFP_VertexReco::AFP_VertexReco
AFP_VertexReco(const std::string &name, ISvcLocator *pSvcLocator)
Definition: AFP_VertexReco.cxx:8
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:221
AFP_VertexReco::m_recoToolHandle
ToolHandle< IAFP_VertexRecoTool > m_recoToolHandle
Tool that does the vertex reconstruction.
Definition: AFP_VertexReco.h:27
AFP_VertexReco::~AFP_VertexReco
virtual ~AFP_VertexReco() override
Definition: AFP_VertexReco.cxx:14