Loading [MathJax]/extensions/MathMenu.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
Jet
JetReclustering
src
AthJetReclusteringAlgo.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef XAODJETRECLUSTERING_ATHJETRECLUSTERINGALGO_H
6
#define XAODJETRECLUSTERING_ATHJETRECLUSTERINGALGO_H 1
7
8
#include "
AthenaBaseComps/AthAlgorithm.h
"
9
#include "GaudiKernel/ToolHandle.h"
//included under assumption you'll want to use some tools! Remove if you don't!
10
11
class
IJetExecuteTool
;
12
13
class
AthJetReclusteringAlgo
:
public
::AthAlgorithm
{
14
public
:
15
AthJetReclusteringAlgo
(
const
std::string&
name
, ISvcLocator* pSvcLocator );
16
virtual
~AthJetReclusteringAlgo
();
17
18
virtual
StatusCode
initialize
();
19
virtual
StatusCode
execute
();
20
virtual
StatusCode
finalize
();
21
22
private
:
23
ToolHandle<IJetExecuteTool>
m_jetRecTool
;
24
};
25
26
#endif //> !XAODJETRECLUSTERING_ATHJETRECLUSTERINGALGO_H
AthJetReclusteringAlgo::initialize
virtual StatusCode initialize()
Definition:
AthJetReclusteringAlgo.cxx:21
IJetExecuteTool
IJetExecuteTool is a dual-use tool interface for generic tools, i.e. those that behave like algorithm...
Definition:
IJetExecuteTool.h:19
AthAlgorithm.h
AthJetReclusteringAlgo::finalize
virtual StatusCode finalize()
Definition:
AthJetReclusteringAlgo.cxx:28
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition:
PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
AthJetReclusteringAlgo::m_jetRecTool
ToolHandle< IJetExecuteTool > m_jetRecTool
Definition:
AthJetReclusteringAlgo.h:23
AthJetReclusteringAlgo::~AthJetReclusteringAlgo
virtual ~AthJetReclusteringAlgo()
AthJetReclusteringAlgo::AthJetReclusteringAlgo
AthJetReclusteringAlgo(const std::string &name, ISvcLocator *pSvcLocator)
Definition:
AthJetReclusteringAlgo.cxx:10
AthAlgorithm
Definition:
AthAlgorithm.h:47
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:240
AthJetReclusteringAlgo::execute
virtual StatusCode execute()
Definition:
AthJetReclusteringAlgo.cxx:34
AthJetReclusteringAlgo
Definition:
AthJetReclusteringAlgo.h:13
Generated on Thu Apr 3 2025 21:07:28 for ATLAS Offline Software by
1.8.18