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
EventShapes
EventShapeTools
src
EventDensityAthAlg.cxx
Go to the documentation of this file.
1
3
/*
4
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
5
*/
6
7
// EventDensityAthAlg.cxx
8
// Implementation file for class EventDensityAthAlg
9
// Author: S.Binet<binet@cern.ch>
11
12
// EventShapeTools includes
13
#include "
EventShapeTools/EventDensityAthAlg.h
"
14
15
// Athena Algorithm's Hooks
17
StatusCode
EventDensityAthAlg::initialize
()
18
{
19
ATH_MSG_INFO
(
"Initializing "
<<
name
() <<
"..."
);
20
21
ATH_CHECK
(
m_densityTool
.retrieve() );
22
return
StatusCode::SUCCESS;
23
}
24
25
StatusCode
EventDensityAthAlg::finalize
()
26
{
27
return
StatusCode::SUCCESS;
28
}
29
30
StatusCode
EventDensityAthAlg::execute
(
const
EventContext&
/*ctx*/
)
const
31
{
32
ATH_MSG_DEBUG
(
"Executing "
<<
name
() <<
"..."
);
33
StatusCode
sc
=
m_densityTool
->fillEventShape();
34
if
(!
sc
.isSuccess() ) {
35
ATH_MSG_ERROR
(
" Error while computing density with tool "
<<
m_densityTool
->name() );
36
return
StatusCode::RECOVERABLE;
37
}
38
return
StatusCode::SUCCESS;
39
}
40
41
42
ATH_MSG_INFO
#define ATH_MSG_INFO(x)
Definition:
AthMsgStreamMacros.h:31
EventDensityAthAlg.h
AthenaPoolTestRead.sc
sc
Definition:
AthenaPoolTestRead.py:27
EventDensityAthAlg::m_densityTool
ToolHandle< IEventShapeTool > m_densityTool
Definition:
EventDensityAthAlg.h:40
ATH_MSG_ERROR
#define ATH_MSG_ERROR(x)
Definition:
AthMsgStreamMacros.h:33
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
ATH_CHECK
#define ATH_CHECK
Definition:
AthCheckMacros.h:40
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:228
EventDensityAthAlg::finalize
virtual StatusCode finalize() override
Definition:
EventDensityAthAlg.cxx:25
EventDensityAthAlg::initialize
virtual StatusCode initialize() override
Definition:
EventDensityAthAlg.cxx:17
EventDensityAthAlg::execute
virtual StatusCode execute(const EventContext &) const override
Definition:
EventDensityAthAlg.cxx:30
Generated on Sat Mar 15 2025 21:10:27 for ATLAS Offline Software by
1.8.18