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
Trigger
TrigAccel
TrigCudaFitter
src
TrigAccel/TrigCudaFitter/src/TrackFitter.h
Go to the documentation of this file.
1
// Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
2
#ifndef __TRACK_FITTER_H__
3
#define __TRACK_FITTER_H__
4
5
class
RecTrack
;
6
class
DkfTrack
;
7
class
TrkPlanarSurface
;
8
class
TrkTrackState
;
9
10
class
TrackFitter
11
{
12
public
:
13
TrackFitter
(
void
);
14
virtual
~TrackFitter
(
void
);
15
16
virtual
DkfTrack
*
fit
(
const
RecTrack
*);
17
18
protected
:
19
virtual
TrkTrackState
*
extrapolate
(
TrkTrackState
* pTS,
TrkPlanarSurface
* pSB,
TrkPlanarSurface
* pSE,
double
J[5][5],
double
&
path
);
20
void
matrixInversion5x5
(
double
a
[5][5]);
21
virtual
DkfTrack
*
createDkfTrack
(
const
RecTrack
* inputTrack);
22
23
double
m_startB
[3]{};
24
double
m_endB
[3]{};
25
std::vector<int>
m_reMapVector
;
26
};
27
28
#endif
athena.path
path
python interpreter configuration --------------------------------------—
Definition:
athena.py:128
TrackFitter::m_endB
double m_endB[3]
Definition:
TrigAccel/TrigCudaFitter/src/TrackFitter.h:24
TrackFitter::matrixInversion5x5
void matrixInversion5x5(double a[5][5])
TrkTrackState
Definition:
Trigger/TrigAccel/TrigCudaFitter/src/TrkTrackState.h:17
TrackFitter
Definition:
EFTracking/FPGATrackSim/FPGATrackSimAlgorithms/FPGATrackSimAlgorithms/TrackFitter.h:26
TrackFitter::extrapolate
virtual TrkTrackState * extrapolate(TrkTrackState *pTS, TrkPlanarSurface *pSB, TrkPlanarSurface *pSE, double J[5][5], double &path)
TrackFitter::m_reMapVector
std::vector< int > m_reMapVector
Definition:
TrigAccel/TrigCudaFitter/src/TrackFitter.h:25
TrackFitter::createDkfTrack
virtual DkfTrack * createDkfTrack(const RecTrack *inputTrack)
TrkPlanarSurface
Definition:
Trigger/TrigAccel/TrigCudaFitter/src/TrkPlanarSurface.h:15
TrackFitter::~TrackFitter
virtual ~TrackFitter(void)
TrackFitter::m_startB
double m_startB[3]
Definition:
TrigAccel/TrigCudaFitter/src/TrackFitter.h:23
DkfTrack
Definition:
DkfTrack.h:13
TrackFitter::fit
virtual DkfTrack * fit(const RecTrack *)
a
TList * a
Definition:
liststreamerinfos.cxx:10
RecTrack
Definition:
RecTrack.h:12
TrackFitter::TrackFitter
TrackFitter(void)
Generated on Fri Apr 4 2025 21:20:49 for ATLAS Offline Software by
1.8.18