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
TrigMissingETHypoAlg.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
3
*/
4
#ifndef TRIGMISSINGETHYPO_TRIGMISSINGETHYPOALG_H
5
#define TRIGMISSINGETHYPO_TRIGMISSINGETHYPOALG_H
6
7
#include <string>
8
9
#include "
AthenaBaseComps/AthReentrantAlgorithm.h
"
10
#include "
DecisionHandling/HypoBase.h
"
11
#include "
AthenaMonitoringKernel/GenericMonitoringTool.h
"
12
13
14
#include "
ITrigMissingETHypoTool.h
"
15
#include "
xAODTrigMissingET/TrigMissingETContainer.h
"
16
21
class
TrigMissingETHypoAlg
:
public
::HypoBase
{
22
public
:
23
24
TrigMissingETHypoAlg
(
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
31
// TODO: Consider taking muonContainer etc in case they are needed in future.
32
StatusCode
decide
(
const
xAOD::TrigMissingETContainer
* metContainer,
33
TrigCompositeUtils::DecisionContainer
* newDecisions,
34
const
TrigCompositeUtils::DecisionContainer
* oldDecisions,
35
const
EventContext& context
36
)
const
;
37
38
ToolHandleArray<ITrigMissingETHypoTool>
m_hypoTools
{
39
this
,
"HypoTools"
, {},
"Hypo tools"
};
40
41
SG::ReadHandleKey< xAOD::TrigMissingETContainer >
m_metKey
{
42
this
,
"METContainerKey"
,
"HLT_MET"
,
"MET Container name"
};
43
44
ToolHandle<GenericMonitoringTool>
m_monTool
{
this
,
"MonTool"
,
""
,
"Monitoring tool"
};
45
46
};
47
48
#endif
49
TrigMissingETHypoAlg::m_hypoTools
ToolHandleArray< ITrigMissingETHypoTool > m_hypoTools
Definition:
TrigMissingETHypoAlg.h:38
TrigMissingETHypoAlg::m_monTool
ToolHandle< GenericMonitoringTool > m_monTool
Definition:
TrigMissingETHypoAlg.h:44
TrigMissingETHypoAlg
Implements MET selection for the HLT framework.
Definition:
TrigMissingETHypoAlg.h:21
SG::ReadHandleKey
Property holding a SG store/key/clid from which a ReadHandle is made.
Definition:
StoreGate/StoreGate/ReadHandleKey.h:39
GenericMonitoringTool.h
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
TrigMissingETHypoAlg::TrigMissingETHypoAlg
TrigMissingETHypoAlg(const std::string &name, ISvcLocator *pSvcLocator)
Definition:
TrigMissingETHypoAlg.cxx:13
TrigMissingETContainer.h
DataVector
Derived DataVector<T>.
Definition:
DataVector.h:794
AthReentrantAlgorithm.h
TrigMissingETHypoAlg::initialize
virtual StatusCode initialize() override
Definition:
TrigMissingETHypoAlg.cxx:18
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:240
HypoBase
Hypothesis algorithms take the output of reco algorithms and the decision from the preceeding InputMa...
Definition:
HypoBase.h:13
TrigMissingETHypoAlg::m_metKey
SG::ReadHandleKey< xAOD::TrigMissingETContainer > m_metKey
Definition:
TrigMissingETHypoAlg.h:41
TrigMissingETHypoAlg::decide
StatusCode decide(const xAOD::TrigMissingETContainer *metContainer, TrigCompositeUtils::DecisionContainer *newDecisions, const TrigCompositeUtils::DecisionContainer *oldDecisions, const EventContext &context) const
Definition:
TrigMissingETHypoAlg.cxx:62
HypoBase.h
TrigMissingETHypoAlg::execute
virtual StatusCode execute(const EventContext &context) const override
Definition:
TrigMissingETHypoAlg.cxx:25
ITrigMissingETHypoTool.h
Generated on Wed Apr 2 2025 21:21:31 for ATLAS Offline Software by
1.8.18