Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Properties
Related Functions
:
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
v
w
x
z
Files
File List
File Members
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
v
x
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
GitLab
LXR
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
Trigger
TrigHypothesis
TrigMissingETHypo
src
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
16
#include "
TrigCompositeUtils/HLTIdentifier.h
"
17
#include "
AthenaBaseComps/AthAlgTool.h
"
18
#include "
TrigCompositeUtils/TrigCompositeUtils.h
"
19
#include "
AthenaMonitoringKernel/GenericMonitoringTool.h
"
20
21
#include "
xAODTrigMissingET/TrigMissingETContainer.h
"
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.
42
HLT::Identifier
m_decisionId
;
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
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
python.CaloAddPedShiftConfig.type
type
Definition:
CaloAddPedShiftConfig.py:42
TrigMissingETHypoTool::m_decisionId
HLT::Identifier m_decisionId
Definition:
TrigMissingETHypoTool.h:48
TrigCompositeUtils.h
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:794
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:240
TrigMissingETHypoTool::m_metThreshold
Gaudi::Property< float > m_metThreshold
Definition:
TrigMissingETHypoTool.h:53
HLTIdentifier.h
TrigMissingETHypoTool::decide
virtual StatusCode decide(const xAOD::TrigMissingETContainer *, bool &pass) const override
Definition:
TrigMissingETHypoTool.cxx:36
ITrigMissingETHypoTool.h
Generated on Sat Apr 5 2025 21:21:07 for ATLAS Offline Software by
1.8.18