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
TrkExtrapolation
TrkExUtils
TrkExUtils
RealLinearEquation.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3
*/
4
6
// RealLinearEquation.h, (c) ATLAS Detector software
8
9
#ifndef TRKEXUTILS_REALLINEAREQUATION_H
10
#define TRKEXUTILS_REALLINEAREQUATION_H
11
12
#include <cmath>
13
#include <utility>
14
15
namespace
Trk
{
16
31
struct
RealLinearEquation
32
{
33
34
double
yOfX
;
35
double
segLength
;
36
37
RealLinearEquation
(
double
px
,
double
py
,
double
k
,
double
xprime)
38
{
39
double
deltax = xprime -
px
;
40
yOfX
=
py
+
k
* (deltax);
41
double
deltay =
yOfX
-
py
;
42
segLength
= sqrt(deltax * deltax + deltay * deltay);
43
}
44
};
45
46
}
// end of namespace
47
48
#endif
49
Trk::py
@ py
Definition:
ParamDefs.h:60
Trk::RealLinearEquation::segLength
double segLength
length of the line segment
Definition:
RealLinearEquation.h:35
Trk::RealLinearEquation
Definition:
RealLinearEquation.h:32
Trk::RealLinearEquation::RealLinearEquation
RealLinearEquation(double px, double py, double k, double xprime)
Definition:
RealLinearEquation.h:37
Trk::px
@ px
Definition:
ParamDefs.h:59
Trk
Ensure that the ATLAS eigen extensions are properly loaded.
Definition:
FakeTrackBuilder.h:9
Trk::RealLinearEquation::yOfX
double yOfX
the result of x
Definition:
RealLinearEquation.h:34
fitman.k
k
Definition:
fitman.py:528
Generated on Fri Mar 28 2025 21:17:23 for ATLAS Offline Software by
1.8.18