ATLAS Offline Software
PEBInfoWriterAlg.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef TrigPartialEventBuilding_PEBInfoWriterAlg_h
6 #define TrigPartialEventBuilding_PEBInfoWriterAlg_h
7 
10 
14 class PEBInfoWriterAlg : public HypoBase {
15 public:
17  PEBInfoWriterAlg(const std::string& name, ISvcLocator* svcLoc);
19  virtual ~PEBInfoWriterAlg();
20 
21  // ------------------------- AthReentrantAlgorithm methods -------------------
22  virtual StatusCode initialize() override;
23  virtual StatusCode finalize() override;
24  virtual StatusCode execute(const EventContext& eventContext) const override;
25 
26 private:
27  ToolHandleArray<PEBInfoWriterToolBase> m_hypoTools {this, "HypoTools", {}, "Tools to create the PEB Info"};
28 };
29 
30 #endif // TrigPartialEventBuilding_PEBInfoWriterAlg_h
PEBInfoWriterAlg
Pass-through hypo algorithm writing decisions with attached partial event building information.
Definition: PEBInfoWriterAlg.h:14
PEBInfoWriterAlg::initialize
virtual StatusCode initialize() override
Definition: PEBInfoWriterAlg.cxx:37
PEBInfoWriterAlg::finalize
virtual StatusCode finalize() override
Definition: PEBInfoWriterAlg.cxx:45
PEBInfoWriterToolBase.h
PEBInfoWriterAlg::PEBInfoWriterAlg
PEBInfoWriterAlg(const std::string &name, ISvcLocator *svcLoc)
Standard constructor.
Definition: PEBInfoWriterAlg.cxx:28
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:195
HypoBase
Hypothesis algorithms take the output of reco algorithms and the decision from the preceeding InputMa...
Definition: HypoBase.h:13
PEBInfoWriterAlg::~PEBInfoWriterAlg
virtual ~PEBInfoWriterAlg()
Standard destructor.
Definition: PEBInfoWriterAlg.cxx:33
PEBInfoWriterAlg::execute
virtual StatusCode execute(const EventContext &eventContext) const override
Definition: PEBInfoWriterAlg.cxx:52
HypoBase.h
PEBInfoWriterAlg::m_hypoTools
ToolHandleArray< PEBInfoWriterToolBase > m_hypoTools
Definition: PEBInfoWriterAlg.h:27