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
TrigHypothesis
TrigAFPHypo
src
AFPProtonTransportParam.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef TRIGAFPHYPO_AFPPROTONTRANSPORTPARAM_H
6
#define TRIGAFPHYPO_AFPPROTONTRANSPORTPARAM_H
7
8
#include "
AFPProtonTransportPolynomial.h
"
9
#include <memory>
10
17
class
AFPProtonTransportParam
{
18
public
:
22
23
AFPProtonTransportParam
(
double
beam_energy
, std::unique_ptr<AFPProtonTransportPolynomial> poly_array[8]);
25
~AFPProtonTransportParam
() =
default
;
26
28
double
evaluate
(
double
x0,
double
y0,
double
z0
,
double
sx
,
double
sy
,
double
E
)
const
;
29
30
private
:
32
double
m_energy
;
34
std::unique_ptr<AFPProtonTransportPolynomial>
m_polynomial
[8];
35
};
36
37
#endif
fitman.sy
sy
Definition:
fitman.py:524
python.compressB64.sx
string sx
Definition:
compressB64.py:96
AFPProtonTransportParam::evaluate
double evaluate(double x0, double y0, double z0, double sx, double sy, double E) const
This function evaluates value of the parameterization given a certain polynomial. It takes as argumen...
Definition:
AFPProtonTransportParam.cxx:14
AFPProtonTransportPolynomial.h
AFPProtonTransportParam::AFPProtonTransportParam
AFPProtonTransportParam(double beam_energy, std::unique_ptr< AFPProtonTransportPolynomial > poly_array[8])
Constructor which sets m_energy and m_polynomial.
Definition:
AFPProtonTransportParam.cxx:9
trigbs_createHLTBSTestFile.beam_energy
beam_energy
Definition:
trigbs_createHLTBSTestFile.py:124
TRT::Track::z0
@ z0
Definition:
InnerDetector/InDetCalibEvent/TRT_CalibData/TRT_CalibData/TrackInfo.h:63
AFPProtonTransportParam
Class for the parameterization used by the proton transport tool.
Definition:
AFPProtonTransportParam.h:17
AFPProtonTransportParam::m_polynomial
std::unique_ptr< AFPProtonTransportPolynomial > m_polynomial[8]
Object of the AFPProtonTransportPolynomial class used for the position calculations.
Definition:
AFPProtonTransportParam.h:34
VP1PartSpect::E
@ E
Definition:
VP1PartSpectFlags.h:21
AFPProtonTransportParam::m_energy
double m_energy
Nominal beam energy.
Definition:
AFPProtonTransportParam.h:32
AFPProtonTransportParam::~AFPProtonTransportParam
~AFPProtonTransportParam()=default
Destructor of the class.
Generated on Wed Apr 2 2025 21:06:59 for ATLAS Offline Software by
1.8.18