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
InnerDetector
InDetValidation
InDetPhysValMonitoring
src
InDetBasicPlot.cxx
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
3
*/
4
11
#include "
InDetPhysValMonitoringUtilities.h
"
12
13
#include "
InDetBasicPlot.h
"
14
#include <cmath>
15
using namespace
IDPVM
;
16
17
InDetBasicPlot::InDetBasicPlot
(
InDetPlotBase
* pParent,
const
std::string&
sDir
) :
18
InDetPlotBase
(pParent,
sDir
)
19
{
20
21
//nop
22
23
}
24
25
void
26
InDetBasicPlot::initializePlots
() {
27
28
// book(m_my_histo, "my_histo");
29
// book(m_my_second_histo, "my_second_histo");
30
31
}
32
33
void
34
InDetBasicPlot::fill
(
const
xAOD::TruthParticle
&
/*particle*/
) {
35
36
// fillHisto(m_my_histo, particle.eta());
37
38
}
39
40
void
41
InDetBasicPlot::fill
(
const
xAOD::TrackParticle
&
/*particle*/
) {
42
43
// fillHisto(m_my_second_histo, particle.phi());
44
45
}
46
47
void
48
InDetBasicPlot::finalizePlots
() {
49
50
// nop
51
52
}
IDPVM
Class to retrieve associated truth from a track, implementing a cached response.
Definition:
InDetPhysValMonitoringTool.h:55
InDetBasicPlot::initializePlots
void initializePlots()
Definition:
InDetBasicPlot.cxx:26
python.copyTCTOutput.sDir
sDir
Definition:
copyTCTOutput.py:60
InDetPhysValMonitoringUtilities.h
InDetPlotBase
Mixin class to give extra capabilities to plots such as ATH_MSG and an easier booking interface,...
Definition:
InDetPlotBase.h:33
InDetBasicPlot.h
xAOD::TruthParticle_v1
Class describing a truth particle in the MC record.
Definition:
TruthParticle_v1.h:37
InDetBasicPlot::fill
void fill(const xAOD::TrackParticle &particle)
Definition:
InDetBasicPlot.cxx:41
xAOD::TrackParticle_v1
Class describing a TrackParticle.
Definition:
TrackParticle_v1.h:43
InDetBasicPlot::finalizePlots
void finalizePlots()
Definition:
InDetBasicPlot.cxx:48
InDetBasicPlot::InDetBasicPlot
InDetBasicPlot(InDetPlotBase *pParent, const std::string &dirName)
Definition:
InDetBasicPlot.cxx:17
Generated on Sat Jan 11 2025 21:11:26 for ATLAS Offline Software by
1.8.18