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.cxx
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
// ********************************************************************
6
//
7
// NAME: TrigMissingETHypoTool.cxx
8
// PACKAGE: Trigger/TrigHypothesis/TrigMissingET
9
//
10
//
11
// ********************************************************************
12
13
#include "
TrigMissingETHypoTool.h
"
14
15
16
TrigMissingETHypoTool::TrigMissingETHypoTool
(
const
std::string&
type
,
17
const
std::string&
name
,
18
const
IInterface*
parent
):
19
base_class(
type
,
name
,
parent
),
20
m_decisionId(
HLT
::
Identifier
::fromToolName(
name
)) {}
21
22
23
TrigMissingETHypoTool::~TrigMissingETHypoTool
() {}
24
25
26
StatusCode
TrigMissingETHypoTool::initialize
() {
27
ATH_MSG_DEBUG
(
"Initializing TrigMissingETHypoTool"
);
28
ATH_MSG_DEBUG
(
"MET threshold set to "
<<
m_metThreshold
);
29
return
StatusCode::SUCCESS;
30
}
31
32
StatusCode
TrigMissingETHypoTool::finalize
() {
33
return
StatusCode::SUCCESS;
34
}
35
36
StatusCode
TrigMissingETHypoTool::decide
(
const
xAOD::TrigMissingETContainer
* metContainer,
bool
& pass)
const
37
{
38
ATH_MSG_DEBUG
(
"Executing decide() of "
<<
name
());
39
float
ex = (*metContainer)[0]->ex();
40
float
ey = (*metContainer)[0]->ey();
41
float
met
= std::hypot(ex,ey)/1000.;
42
pass =
met
>
m_metThreshold
;
43
44
ATH_MSG_VERBOSE
(
"in "
<<
name
() <<
": MET = "
<<
met
);
45
if
(pass)
46
ATH_MSG_VERBOSE
(
"Event passes the "
<<
m_metThreshold
<<
" GeV cut"
);
47
else
48
ATH_MSG_VERBOSE
(
"Event fails the "
<<
m_metThreshold
<<
" GeV cut"
);
49
50
return
StatusCode::SUCCESS;
51
52
}
53
54
const
HLT::Identifier
&
TrigMissingETHypoTool::getId
()
const
{
55
return
m_decisionId
;
56
}
57
TrigMissingETHypoTool::TrigMissingETHypoTool
TrigMissingETHypoTool(const std::string &type, const std::string &name, const IInterface *parent)
Definition:
TrigMissingETHypoTool.cxx:16
ATH_MSG_VERBOSE
#define ATH_MSG_VERBOSE(x)
Definition:
AthMsgStreamMacros.h:28
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
met
Definition:
IMETSignificance.h:24
HLT
It used to be useful piece of code for replacing actual SG with other store of similar functionality ...
Definition:
HLTResultReader.h:26
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
ATH_MSG_DEBUG
#define ATH_MSG_DEBUG(x)
Definition:
AthMsgStreamMacros.h:29
TrigMissingETHypoTool::initialize
virtual StatusCode initialize() override
Definition:
TrigMissingETHypoTool.cxx:26
test_pyathena.parent
parent
Definition:
test_pyathena.py:15
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
TrigMissingETHypoTool.h
TrigMissingETHypoTool::decide
virtual StatusCode decide(const xAOD::TrigMissingETContainer *, bool &pass) const override
Definition:
TrigMissingETHypoTool.cxx:36
Identifier
Definition:
IdentifierFieldParser.cxx:14
Generated on Wed Apr 2 2025 21:21:31 for ATLAS Offline Software by
1.8.18