ATLAS Offline Software
TrigMissingETHypoTool.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef TrigMissingETHypoTool_H
6 #define TrigMissingETHypoTool_H
7 /********************************************************************
8  *
9  * NAME: TrigMissingETHypoTool.h
10  * PACKAGE: Trigger/TrigHypothesis/TrigMissingETHypo
11  *
12  *
13  *********************************************************************/
14 
15 
20 
22 #include "ITrigMissingETHypoTool.h"
23 
24 class TrigMissingETHypoTool: public extends<AthAlgTool, ITrigMissingETHypoTool> {
25 
26  public:
27 
28  TrigMissingETHypoTool(const std::string& type,
29  const std::string& name,
30  const IInterface* parent);
31  virtual ~TrigMissingETHypoTool();
32  virtual StatusCode initialize() override;
33  virtual StatusCode finalize() override;
34 
35  virtual StatusCode
36  decide(const xAOD::TrigMissingETContainer*, bool& pass) const override;
37  virtual const HLT::Identifier& getId() const override;
38  private:
39 
40  // Identifier is used to keep track of which tool made which decision.
41  // The information is stored in the event store.
43 
44  private:
45 
46  Gaudi::Property<float>
47  m_metThreshold{this, "metThreshold", 50, "MET threshold [GeV]" };
48 
49  // Monitored variables...
50  /*
51  declareMonitoredVariable("Et", m_et);
52  declareMonitoredVariable("Eta", m_eta);
53  declareMonitoredVariable("Phi", m_phi);
54 */
55 
56 
57 };
58 #endif
59 
TrigCompositeUtils.h
TrigMissingETHypoTool::TrigMissingETHypoTool
TrigMissingETHypoTool(const std::string &type, const std::string &name, const IInterface *parent)
Definition: TrigMissingETHypoTool.cxx:16
TrigMissingETHypoTool
Definition: TrigMissingETHypoTool.h:24
TrigMissingETHypoTool::finalize
virtual StatusCode finalize() override
Definition: TrigMissingETHypoTool.cxx:32
TrigMissingETHypoTool::m_decisionId
HLT::Identifier m_decisionId
Definition: TrigMissingETHypoTool.h:48
GenericMonitoringTool.h
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
AthAlgTool.h
TrigMissingETHypoTool::initialize
virtual StatusCode initialize() override
Definition: TrigMissingETHypoTool.cxx:26
test_pyathena.parent
parent
Definition: test_pyathena.py:15
TrigMissingETContainer.h
DataVector
Derived DataVector<T>.
Definition: DataVector.h:581
HLT::Identifier
Definition: TrigCompositeUtils/TrigCompositeUtils/HLTIdentifier.h:20
TrigMissingETHypoTool::getId
virtual const HLT::Identifier & getId() const override
Definition: TrigMissingETHypoTool.cxx:54
TrigMissingETHypoTool::~TrigMissingETHypoTool
virtual ~TrigMissingETHypoTool()
Definition: TrigMissingETHypoTool.cxx:23
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:192
TrigMissingETHypoTool::m_metThreshold
Gaudi::Property< float > m_metThreshold
Definition: TrigMissingETHypoTool.h:53
python.CaloScaleNoiseConfig.type
type
Definition: CaloScaleNoiseConfig.py:78
HLTIdentifier.h
TrigMissingETHypoTool::decide
virtual StatusCode decide(const xAOD::TrigMissingETContainer *, bool &pass) const override
Definition: TrigMissingETHypoTool.cxx:36
ITrigMissingETHypoTool.h