ATLAS Offline Software
DumpDecisions.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
3 */
4 #ifndef DECISIONHANDLING_DUMPDECISIONS_H
5 #define DECISIONHANDLING_DUMPDECISIONS_H 1
6 
7 // STL includes
8 #include <string>
10 // FrameWork includes
12 
15 {
16 
18  // Public methods:
20  public:
22  DumpDecisions( const std::string& name, ISvcLocator* pSvcLocator );
23 
24  // Athena algorithm's Hooks
25  virtual StatusCode initialize() override;
26  virtual StatusCode execute( const EventContext& ctx ) const override;
27 
28  private:
29 
30  SG::ReadHandleKeyArray<TrigCompositeUtils::DecisionContainer> m_decisionKeys{ this, "Decisions", {}, "Input Decisions to dump" };
31 
32 };
33 
34 
35 #endif //> !DECISIONHANDLING_DUMPDECISIONS_H
TrigCompositeUtils.h
DumpDecisions
Definition: DumpDecisions.h:15
SG::HandleKeyArray
Definition: StoreGate/StoreGate/HandleKeyArray.h:38
DumpDecisions::execute
virtual StatusCode execute(const EventContext &ctx) const override
Definition: DumpDecisions.cxx:33
DumpDecisions::initialize
virtual StatusCode initialize() override
Definition: DumpDecisions.cxx:26
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
DumpDecisions::DumpDecisions
DumpDecisions(const std::string &name, ISvcLocator *pSvcLocator)
Constructor with parameters:
Definition: DumpDecisions.cxx:18
AthReentrantAlgorithm.h
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:192
DumpDecisions::m_decisionKeys
SG::ReadHandleKeyArray< TrigCompositeUtils::DecisionContainer > m_decisionKeys
Definition: DumpDecisions.h:30