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
TestBeam
TBTPCnv
TBTPCnv
TBTrack_p1.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
// -------------------------------------------------------------------
6
// Persistent representation of TBEvent/TBTrack
7
// See: https://twiki.cern.ch/twiki/bin/view/Atlas/TransientPersistentSeparation#TP_converters_for_component_type
8
// Author: Iftach Sadeh (iftach.sadeh@NOSPAMTODAYcern.ch) , February 2010
9
// -------------------------------------------------------------------
10
#ifndef TBTRACK_P1_H
11
#define TBTRACK_P1_H
12
13
14
class
TBTrack_p1
15
{
16
17
public
:
18
19
// number of hits used for reconstruction
20
int
m_hitNumberU
,
m_hitNumberV
;
21
22
// Residuals between detector hit and fitted hit (in detector local coordonates)
23
std::vector<double>
m_residualu
,
m_residualv
;
24
25
// track parameters
26
double
m_chi2
,
m_chi2u
,
m_chi2v
;
27
double
m_angle
;
// angle between track and Z TestBeam axe
28
double
m_uslope
,
m_vslope
;
// slopes with respect to Z TestBeam axe
29
double
m_uintercept
,
m_vintercept
;
30
31
// extrapoled hit position at cryostat (reconstruction coordonates);
32
double
m_cryou
,
m_cryov
,
m_cryow
;
33
};
34
35
36
#endif
TBTrack_p1::m_cryov
double m_cryov
Definition:
TBTrack_p1.h:32
TBTrack_p1::m_residualv
std::vector< double > m_residualv
Definition:
TBTrack_p1.h:23
TBTrack_p1::m_hitNumberV
int m_hitNumberV
Definition:
TBTrack_p1.h:20
TBTrack_p1::m_uslope
double m_uslope
Definition:
TBTrack_p1.h:28
TBTrack_p1::m_cryow
double m_cryow
Definition:
TBTrack_p1.h:32
TBTrack_p1::m_residualu
std::vector< double > m_residualu
Definition:
TBTrack_p1.h:23
TBTrack_p1::m_angle
double m_angle
Definition:
TBTrack_p1.h:27
TBTrack_p1::m_hitNumberU
int m_hitNumberU
Definition:
TBTrack_p1.h:20
TBTrack_p1::m_vintercept
double m_vintercept
Definition:
TBTrack_p1.h:29
TBTrack_p1::m_chi2u
double m_chi2u
Definition:
TBTrack_p1.h:26
TBTrack_p1::m_vslope
double m_vslope
Definition:
TBTrack_p1.h:28
TBTrack_p1::m_uintercept
double m_uintercept
Definition:
TBTrack_p1.h:29
TBTrack_p1
Definition:
TBTrack_p1.h:15
TBTrack_p1::m_chi2
double m_chi2
Definition:
TBTrack_p1.h:26
TBTrack_p1::m_chi2v
double m_chi2v
Definition:
TBTrack_p1.h:26
TBTrack_p1::m_cryou
double m_cryou
Definition:
TBTrack_p1.h:32
Generated on Tue Apr 8 2025 21:19:44 for ATLAS Offline Software by
1.8.18