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
TrigT1
TrigGepPerf
src
GepMETAlg.h
Go to the documentation of this file.
1
/*
2
* Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef TRIGL0GEPPERF_GEPMISSINGETALG_K
6
#define TRIGL0GEPPERF_GEPMISSINGETALG_K
7
8
#include "
AthenaBaseComps/AthReentrantAlgorithm.h
"
9
#include "
xAODTrigger/EnergySumRoI.h
"
10
#include "
xAODCaloEvent/CaloClusterContainer.h
"
11
12
class
GepMETAlg
:
public
::AthReentrantAlgorithm
{
13
public
:
14
GepMETAlg
(
const
std::string&
name
, ISvcLocator* pSvcLocator );
15
virtual
~GepMETAlg
();
16
17
virtual
StatusCode
initialize
();
18
virtual
StatusCode
execute
(
const
EventContext&)
const
;
19
virtual
StatusCode
finalize
();
20
private
:
21
22
SG::ReadHandleKey< xAOD::CaloClusterContainer>
m_caloClustersKey
{
23
this
,
"caloClustersKey"
,
""
,
"key to read in a CaloCluster constainer"
};
24
25
SG::WriteHandleKey<xAOD::EnergySumRoI>
m_outputMETKey
{
26
this
,
"outputMETKey"
,
""
,
"key to write out a MET object"
};
27
28
};
29
30
#endif //> !TRIGL0GEPPERF_MISSINGETGEP_H
GepMETAlg::m_caloClustersKey
SG::ReadHandleKey< xAOD::CaloClusterContainer > m_caloClustersKey
Definition:
GepMETAlg.h:22
GepMETAlg::~GepMETAlg
virtual ~GepMETAlg()
Definition:
GepMETAlg.cxx:13
GepMETAlg::GepMETAlg
GepMETAlg(const std::string &name, ISvcLocator *pSvcLocator)
Definition:
GepMETAlg.cxx:8
SG::ReadHandleKey< xAOD::CaloClusterContainer >
AthReentrantAlgorithm
An algorithm that can be simultaneously executed in multiple threads.
Definition:
AthReentrantAlgorithm.h:74
GepMETAlg::initialize
virtual StatusCode initialize()
Definition:
GepMETAlg.cxx:16
SG::WriteHandleKey
Property holding a SG store/key/clid from which a WriteHandle is made.
Definition:
StoreGate/StoreGate/WriteHandleKey.h:40
GepMETAlg
Definition:
GepMETAlg.h:12
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
GepMETAlg::finalize
virtual StatusCode finalize()
Definition:
GepMETAlg.cxx:24
GepMETAlg::m_outputMETKey
SG::WriteHandleKey< xAOD::EnergySumRoI > m_outputMETKey
Definition:
GepMETAlg.h:25
AthReentrantAlgorithm.h
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:240
GepMETAlg::execute
virtual StatusCode execute(const EventContext &) const
Definition:
GepMETAlg.cxx:29
CaloClusterContainer.h
EnergySumRoI.h
Generated on Sun May 4 2025 21:10:05 for ATLAS Offline Software by
1.8.18