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
Tracking
TrkValidation
TrkValHistUtils
TrkValHistUtils
DefParamPullPlots.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
#ifndef TRKVALHISTUTILS_DEFPARAMPULLPLOTS_H
6
#define TRKVALHISTUTILS_DEFPARAMPULLPLOTS_H
7
8
#include "
PlotBase.h
"
9
#include "
xAODTracking/TrackParticle.h
"
10
#include "
xAODTruth/TruthParticle.h
"
11
12
namespace
Trk
{
13
14
class
DefParamPullPlots
:
public
PlotBase
{
15
public
:
16
DefParamPullPlots
(
PlotBase
*pParent,
const
std::string&
sDir
,
const
std::string& sType=
""
):
PlotBase
(pParent,
sDir
),
m_sType
(sType){
init
();}
17
void
fill
(
const
xAOD::TrackParticle
& trkprt,
const
xAOD::TruthParticle
& truthprt,
float
weight
=1.0);
18
19
TH1*
Pull_d0
;
20
TH1*
Pull_z0
;
21
TH1*
Pull_theta
;
22
TH1*
Pull_phi
;
23
TH1*
Pull_qOverP
;
24
25
TH2*
Pull_d0_vs_pt
;
26
TH2*
Pull_z0_vs_pt
;
27
TH2*
Pull_theta_vs_pt
;
28
TH2*
Pull_phi_vs_pt
;
29
TH2*
Pull_qOverP_vs_pt
;
30
31
private
:
32
std::string
m_sType
;
33
void
init
();
34
void
initializePlots
();
35
};
36
37
}
38
#endif
Trk::DefParamPullPlots::Pull_d0
TH1 * Pull_d0
Definition:
DefParamPullPlots.h:19
Trk::DefParamPullPlots::Pull_phi
TH1 * Pull_phi
Definition:
DefParamPullPlots.h:22
PlotBase
Definition:
PlotBase.h:34
python.copyTCTOutput.sDir
sDir
Definition:
copyTCTOutput.py:60
Trk::DefParamPullPlots::Pull_d0_vs_pt
TH2 * Pull_d0_vs_pt
Definition:
DefParamPullPlots.h:25
Trk::DefParamPullPlots::Pull_qOverP_vs_pt
TH2 * Pull_qOverP_vs_pt
Definition:
DefParamPullPlots.h:29
dqt_zlumi_pandas.weight
int weight
Definition:
dqt_zlumi_pandas.py:189
Trk::DefParamPullPlots::Pull_theta_vs_pt
TH2 * Pull_theta_vs_pt
Definition:
DefParamPullPlots.h:27
Trk::DefParamPullPlots::fill
void fill(const xAOD::TrackParticle &trkprt, const xAOD::TruthParticle &truthprt, float weight=1.0)
Definition:
DefParamPullPlots.cxx:56
Trk::DefParamPullPlots::init
void init()
Definition:
DefParamPullPlots.cxx:12
xAOD::TruthParticle_v1
Class describing a truth particle in the MC record.
Definition:
TruthParticle_v1.h:37
Trk::DefParamPullPlots::initializePlots
void initializePlots()
Definition:
DefParamPullPlots.cxx:27
Trk::DefParamPullPlots::DefParamPullPlots
DefParamPullPlots(PlotBase *pParent, const std::string &sDir, const std::string &sType="")
Definition:
DefParamPullPlots.h:16
Trk
Ensure that the ATLAS eigen extensions are properly loaded.
Definition:
FakeTrackBuilder.h:9
TrackParticle.h
Trk::DefParamPullPlots::Pull_z0
TH1 * Pull_z0
Definition:
DefParamPullPlots.h:20
Trk::DefParamPullPlots::m_sType
std::string m_sType
Definition:
DefParamPullPlots.h:32
Trk::DefParamPullPlots::Pull_theta
TH1 * Pull_theta
Definition:
DefParamPullPlots.h:21
Trk::DefParamPullPlots::Pull_z0_vs_pt
TH2 * Pull_z0_vs_pt
Definition:
DefParamPullPlots.h:26
xAOD::TrackParticle_v1
Class describing a TrackParticle.
Definition:
TrackParticle_v1.h:43
Trk::DefParamPullPlots::Pull_qOverP
TH1 * Pull_qOverP
Definition:
DefParamPullPlots.h:23
TruthParticle.h
PlotBase.h
Trk::DefParamPullPlots
Definition:
DefParamPullPlots.h:14
Trk::DefParamPullPlots::Pull_phi_vs_pt
TH2 * Pull_phi_vs_pt
Definition:
DefParamPullPlots.h:28
Generated on Sun Mar 16 2025 21:09:30 for ATLAS Offline Software by
1.8.18