ATLAS Offline Software
TrigTRTHTHhypoAlg.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3 */
4 #ifndef TRIGTRTHTHHYPOALG_H
5 #define TRIGTRTHTHHYPOALG_H 1
6 
7 #include <string>
8 
9 #include "GaudiKernel/StatusCode.h"
13 
14 #include "ITrigTRTHTHhypoTool.h"
15 
21 class TrigTRTHTHhypoAlg : public ::HypoBase {
22  public:
23 
24  TrigTRTHTHhypoAlg( const std::string& name, ISvcLocator* pSvcLocator );
25 
26  virtual StatusCode initialize() override;
27  virtual StatusCode execute( const EventContext& context ) const override;
28 
29  private:
30  ToolHandleArray< ITrigTRTHTHhypoTool > m_hypoTools { this, "HypoTools", {}, "Hypo tools" };
31 
32  SG::ReadHandleKey< xAOD::TrigRNNOutputContainer > m_trigRNNOutputKey { this, "RNNOutputName", "RNNOutput", "output RNN container name " };
33 };
34 
35 #endif
TrigTRTHTHhypoAlg::TrigTRTHTHhypoAlg
TrigTRTHTHhypoAlg(const std::string &name, ISvcLocator *pSvcLocator)
Definition: TrigTRTHTHhypoAlg.cxx:13
SG::ReadHandleKey
Property holding a SG store/key/clid from which a ReadHandle is made.
Definition: StoreGate/StoreGate/ReadHandleKey.h:39
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
TrigRNNOutput.h
TrigTRTHTHhypoAlg
TrigTRTHTHhypoAlg passes depending on the number of TRT hits found by the TrigTRTHTHCounter fex.
Definition: TrigTRTHTHhypoAlg.h:21
ITrigTRTHTHhypoTool.h
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
TrigRNNOutputContainer.h
TrigTRTHTHhypoAlg::m_trigRNNOutputKey
SG::ReadHandleKey< xAOD::TrigRNNOutputContainer > m_trigRNNOutputKey
Definition: TrigTRTHTHhypoAlg.h:32
HypoBase.h
TrigTRTHTHhypoAlg::initialize
virtual StatusCode initialize() override
Definition: TrigTRTHTHhypoAlg.cxx:17
TrigTRTHTHhypoAlg::execute
virtual StatusCode execute(const EventContext &context) const override
Definition: TrigTRTHTHhypoAlg.cxx:29
TrigTRTHTHhypoAlg::m_hypoTools
ToolHandleArray< ITrigTRTHTHhypoTool > m_hypoTools
Definition: TrigTRTHTHhypoAlg.h:30