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
Reconstruction
MET
METReconstruction
src
METRecoAlg.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
// METRecoAlg.h
6
7
#ifndef METRecoAlg_H
8
#define METRecoAlg_H
9
10
#include "
AthenaBaseComps/AthReentrantAlgorithm.h
"
11
#include "GaudiKernel/ToolHandle.h"
12
13
class
IMETRecoTool
;
14
15
namespace
met
{
16
class
METRecoAlg
:
public
AthReentrantAlgorithm
{
17
18
public
:
19
21
METRecoAlg
(
const
std::string&
name
, ISvcLocator* pSvcLocator);
22
24
~METRecoAlg
();
25
27
virtual
StatusCode
initialize
()
override
;
28
virtual
StatusCode
execute
(
const
EventContext& ctx)
const override
;
29
virtual
StatusCode
finalize
()
override
;
30
31
private
:
32
34
METRecoAlg
();
35
36
private
:
37
39
ToolHandleArray<IMETRecoTool>
m_recotools
;
40
41
};
42
43
}
44
45
#endif
met::METRecoAlg::METRecoAlg
METRecoAlg()
Default constructor:
AthReentrantAlgorithm
An algorithm that can be simultaneously executed in multiple threads.
Definition:
AthReentrantAlgorithm.h:74
IMETRecoTool
Definition:
IMETRecoTool.h:23
met::METRecoAlg
Definition:
METRecoAlg.h:16
met
Definition:
IMETSignificance.h:24
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
met::METRecoAlg::execute
virtual StatusCode execute(const EventContext &ctx) const override
Definition:
METRecoAlg.cxx:47
AthReentrantAlgorithm.h
met::METRecoAlg::finalize
virtual StatusCode finalize() override
Definition:
METRecoAlg.cxx:40
met::METRecoAlg::initialize
virtual StatusCode initialize() override
Athena algorithm's Hooks.
Definition:
METRecoAlg.cxx:30
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:240
met::METRecoAlg::~METRecoAlg
~METRecoAlg()
Destructor:
met::METRecoAlg::m_recotools
ToolHandleArray< IMETRecoTool > m_recotools
Athena configured tools.
Definition:
METRecoAlg.h:39
Generated on Sun May 4 2025 21:13:40 for ATLAS Offline Software by
1.8.18