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
w
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
TrkExTools
TrkExTools
ParametersNextVolume.h
Go to the documentation of this file.
1
2
#ifndef TRKEXTOOLS_ParametersNextVolume_H
3
#define TRKEXTOOLS_ParametersNextVolume_H
4
5
#include "
TrkGeometry/TrackingVolume.h
"
//for BoundarySurfaceFace
6
#include "
ExtrUniquePtrHolder.h
"
7
#include "
TrkParameters/TrackParameters.h
"
8
9
10
namespace
Trk
{
11
class
TrackingGeometry;
12
13
struct
ParametersNextVolume
{
14
16
const
TrackingVolume
*
nextVolume
;
17
Trk::TrackParameters
*
nextParameters
;
18
Trk::TrackParameters
*
navParameters
;
19
BoundarySurfaceFace
exitFace
;
20
21
ParametersNextVolume
()
22
:
nextVolume
(nullptr)
23
,
nextParameters
(nullptr)
24
,
navParameters
(nullptr)
25
,
exitFace
(
undefinedFace
){
26
}
27
29
void
boundaryInformation
(
const
TrackingVolume
* tvol,
30
Trk::TrackParameters
* nextPars,
31
Trk::TrackParameters
* navPars,
32
BoundarySurfaceFace
face =
undefinedFace
){
33
nextVolume
= tvol;
34
nextParameters
= nextPars;
35
navParameters
= navPars;
36
exitFace
= face;
37
}
39
void
resetBoundaryInformation
(){
40
nextVolume
=
nullptr
;
41
exitFace
=
undefinedFace
;
42
nextParameters
=
nullptr
;
43
navParameters
=
nullptr
;
44
}
45
};
46
}
47
#endif
TrackParameters.h
Trk::ParametersNextVolume::ParametersNextVolume
ParametersNextVolume()
update the boundaryInformation
Definition:
ParametersNextVolume.h:21
Trk::ParametersNextVolume::nextParameters
Trk::TrackParameters * nextParameters
Definition:
ParametersNextVolume.h:17
Trk::ParametersNextVolume::resetBoundaryInformation
void resetBoundaryInformation()
Definition:
ParametersNextVolume.h:39
ExtrUniquePtrHolder.h
Trk::ParametersNextVolume::nextVolume
const TrackingVolume * nextVolume
< the members
Definition:
ParametersNextVolume.h:16
Trk::BoundarySurfaceFace
BoundarySurfaceFace
Definition:
BoundarySurfaceFace.h:31
Trk::ParametersNextVolume::navParameters
Trk::TrackParameters * navParameters
Definition:
ParametersNextVolume.h:18
Trk::ParametersNextVolume::boundaryInformation
void boundaryInformation(const TrackingVolume *tvol, Trk::TrackParameters *nextPars, Trk::TrackParameters *navPars, BoundarySurfaceFace face=undefinedFace)
reset the boundary information by invalidating it
Definition:
ParametersNextVolume.h:29
Trk::ParametersNextVolume
Definition:
ParametersNextVolume.h:13
Trk::ParametersBase
Definition:
ParametersBase.h:55
Trk
Ensure that the ATLAS eigen extensions are properly loaded.
Definition:
FakeTrackBuilder.h:9
TrackingVolume.h
Trk::undefinedFace
@ undefinedFace
Definition:
BoundarySurfaceFace.h:59
Trk::TrackingVolume
Definition:
TrackingVolume.h:119
Trk::ParametersNextVolume::exitFace
BoundarySurfaceFace exitFace
Definition:
ParametersNextVolume.h:19
Generated on Sun Jun 1 2025 21:15:34 for ATLAS Offline Software by
1.8.18