ATLAS Offline Software
TrigJetTLAHypoAlg.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 
6 #ifndef TrigHLTJetHypo_TrigJetTLAHypoAlg_H
7 #define TrigHLTJetHypo_TrigJetTLAHypoAlg_H
8 
9 #include <string>
10 
11 #include "TrigJetTLAHypoAlg.h"
13 #include "xAODJet/JetContainer.h"
14 
16 
17 #include "TrigJetTLAHypoTool.h"
18 #include "TrigBtagTLATool.h"
19 
31 class TrigJetTLAHypoAlg : public ::HypoBase {
32  public:
33 
34  TrigJetTLAHypoAlg( const std::string& name, ISvcLocator* pSvcLocator );
35 
36  virtual StatusCode initialize() override;
37  virtual StatusCode execute( const EventContext& context ) const override;
38 
39  private:
40 
41  ToolHandleArray<TrigJetTLAHypoTool> m_hypoTools {
42  this, "HypoTools", {}, "Hypo tools"};
43 
45  this, "TLAOutputName", "TLAOutputName", "TLA jet container key"};
46 
47  Gaudi::Property<bool> m_attach_btag{this, "AttachBtag", true, "Use BtagJetTool to attach btag information to TLA jets."};
48  ToolHandle<TrigBtagTLATool> m_btag_record_tool { this, "BtagJetTool", "BtagJetTool", "Btag jet tool"};
49 
50 };
51 
52 #endif
TrigBtagTLATool.h
TrigJetTLAHypoAlg::execute
virtual StatusCode execute(const EventContext &context) const override
Definition: TrigJetTLAHypoAlg.cxx:33
TrigJetTLAHypoAlg::m_TLAjetsKey
SG::WriteHandleKey< xAOD::JetContainer > m_TLAjetsKey
Definition: TrigJetTLAHypoAlg.h:44
TrigJetTLAHypoAlg.h
TrigJetTLAHypoAlg::initialize
virtual StatusCode initialize() override
Definition: TrigJetTLAHypoAlg.cxx:25
SG::WriteHandleKey
Property holding a SG store/key/clid from which a WriteHandle is made.
Definition: StoreGate/StoreGate/WriteHandleKey.h:40
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
AthReentrantAlgorithm.h
TrigJetTLAHypoAlg::TrigJetTLAHypoAlg
TrigJetTLAHypoAlg(const std::string &name, ISvcLocator *pSvcLocator)
Definition: TrigJetTLAHypoAlg.cxx:18
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
TrigJetTLAHypoAlg::m_hypoTools
ToolHandleArray< TrigJetTLAHypoTool > m_hypoTools
Definition: TrigJetTLAHypoAlg.h:41
TrigJetTLAHypoAlg
HypoAlg for TLA algorithm.
Definition: TrigJetTLAHypoAlg.h:31
JetContainer.h
TrigJetTLAHypoTool.h
HypoBase.h
TrigJetTLAHypoAlg::m_attach_btag
Gaudi::Property< bool > m_attach_btag
Definition: TrigJetTLAHypoAlg.h:47
TrigJetTLAHypoAlg::m_btag_record_tool
ToolHandle< TrigBtagTLATool > m_btag_record_tool
Definition: TrigJetTLAHypoAlg.h:48