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
TrkEvent
TrkEventPrimitives
src
FitQuality.cxx
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3
*/
4
6
// FitQuality.cxx (c) ATLAS Detector software
8
9
#include "
TrkEventPrimitives/FitQuality.h
"
10
#include "GaudiKernel/MsgStream.h"
11
#include <string>
12
#include <ostream>
13
15
MsgStream&
Trk::operator <<
( MsgStream& sl,
const
Trk::FitQualityImpl
& fq)
16
{
17
std::streamsize
ss
= sl.precision();
18
sl << std::setiosflags(std::ios::fixed)<< std::setprecision(3);
19
sl <<
"FitQuality: \t"
20
<<
"("
<<fq.
chiSquared
()<<
", \t"
<<fq.
numberDoF
()<<
")\t"
21
<<
"(chi^2, ndf)"
;
22
sl.precision (
ss
); sl<<std::resetiosflags(std::ios::fixed);
23
return
sl;
24
}
25
26
std::ostream&
Trk::operator <<
( std::ostream& sl,
const
Trk::FitQualityImpl
& fq)
27
{
28
std::streamsize
ss
= sl.precision();
29
sl << std::setiosflags(std::ios::fixed)<< std::setprecision(3);
30
sl <<
"FitQuality: \t"
31
<<
"("
<<fq.
chiSquared
()<<
", \t"
<<fq.
numberDoF
()<<
")\t"
32
<<
"(chi^2, ndf)"
;
33
sl.precision (
ss
); sl<<std::resetiosflags(std::ios::fixed);
34
return
sl;
35
}
36
PowhegControl_ttHplus_NLO.ss
ss
Definition:
PowhegControl_ttHplus_NLO.py:83
Trk::FitQualityImpl::chiSquared
double chiSquared() const
returns the of the overall track fit
Definition:
FitQuality.h:56
Trk::FitQualityImpl::numberDoF
int numberDoF() const
returns the number of degrees of freedom of the overall track or vertex fit as integer
Definition:
FitQuality.h:60
Trk::FitQualityImpl
simple/trivial Implemenation class for fit the fit quality. It holds the same payload as FitQuality_p...
Definition:
FitQuality.h:32
Trk::operator<<
MsgStream & operator<<(MsgStream &sl, const AlignModule &alignModule)
overload of << operator for MsgStream for debug output
Definition:
AlignModule.cxx:204
FitQuality.h
Generated on Tue May 6 2025 21:09:47 for ATLAS Offline Software by
1.8.18