ATLAS Offline Software
Loading...
Searching...
No Matches
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
12#include "Gaudi/Parsers/Factory.h"
13
17class PEBInfoWriterAlg : public HypoBase {
18public:
20 PEBInfoWriterAlg(const std::string& name, ISvcLocator* svcLoc);
22 virtual ~PEBInfoWriterAlg();
23
24 // ------------------------- AthReentrantAlgorithm methods -------------------
25 virtual StatusCode initialize() override;
26 virtual StatusCode finalize() override;
27 virtual StatusCode execute(const EventContext& eventContext) const override;
28
29private:
30 ToolHandleArray<PEBInfoWriterToolBase> m_hypoTools {this, "HypoTools", {}, "Tools to create the PEB Info"};
31 SG::ReadHandleKey<xAOD::EventInfo> m_eventInfoKey {this,"EventInfo","EventInfo","input data key"};
32 Gaudi::Property<std::vector<uint8_t> > m_matchTriggerType {this, "MatchTriggerType", {}, "L1 trigger type to match"};
33};
34
35#endif // TrigPartialEventBuilding_PEBInfoWriterAlg_h
Property holding a SG store/key/clid from which a ReadHandle is made.
HypoBase(const std::string &name, ISvcLocator *pSvcLocator)
constructor, to be called by sub-class constructors
Definition HypoBase.cxx:12
virtual ~PEBInfoWriterAlg()
Standard destructor.
SG::ReadHandleKey< xAOD::EventInfo > m_eventInfoKey
Gaudi::Property< std::vector< uint8_t > > m_matchTriggerType
ToolHandleArray< PEBInfoWriterToolBase > m_hypoTools
virtual StatusCode execute(const EventContext &eventContext) const override
virtual StatusCode finalize() override
PEBInfoWriterAlg(const std::string &name, ISvcLocator *svcLoc)
Standard constructor.
virtual StatusCode initialize() override
Property holding a SG store/key/clid from which a ReadHandle is made.