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
TrigAlgorithms
TrigL2MuonSA
src
MmData.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef TRIGL2MUONSA_MMDATA_H
6
#define TRIGL2MUONSA_MMDATA_H
7
8
namespace
TrigL2MuonSA
{
9
10
// --------------------------------------------------------------------------------
11
// --------------------------------------------------------------------------------
12
13
class
MmHitData
14
{
15
public
:
16
MmHitData
() :
17
eta
(0),
18
phi
(0),
19
r
(0),
20
z
(0),
21
stationEta
(0),
22
stationPhi
(0),
23
stationName
(0),
24
ResidualR
(999.),
25
ResidualPhi
(999.),
26
isOutlier
(0),
27
layerNumber
(999)
28
{};
29
30
public
:
31
double
eta
;
32
double
phi
;
33
double
r
;
34
double
z
;
35
int
stationEta
;
36
int
stationPhi
;
37
int
stationName
;
38
double
ResidualR
;
39
double
ResidualPhi
;
40
int
isOutlier
;
41
unsigned
int
layerNumber
;
42
};
43
44
// --------------------------------------------------------------------------------
45
// --------------------------------------------------------------------------------
46
47
typedef
std::vector<MmHitData>
MmHits
;
48
49
// --------------------------------------------------------------------------------
50
// --------------------------------------------------------------------------------
51
52
}
53
54
#endif // TRIGL2MUONSA_MMDATA_H
TrigL2MuonSA::MmHitData::isOutlier
int isOutlier
Definition:
MmData.h:40
TrigL2MuonSA::MmHitData::layerNumber
unsigned int layerNumber
Definition:
MmData.h:41
TrigL2MuonSA::MmHitData::eta
double eta
Definition:
MmData.h:28
TrigL2MuonSA::MmHitData::phi
double phi
Definition:
MmData.h:32
TrigL2MuonSA::MmHitData::stationName
int stationName
Definition:
MmData.h:37
TrigL2MuonSA::MmHitData::MmHitData
MmHitData()
Definition:
MmData.h:16
TrigL2MuonSA::MmHitData::ResidualR
double ResidualR
Definition:
MmData.h:38
TrigL2MuonSA::MmHitData::ResidualPhi
double ResidualPhi
Definition:
MmData.h:39
TrigL2MuonSA::MmHitData::r
double r
Definition:
MmData.h:33
TrigL2MuonSA::MmHitData::stationPhi
int stationPhi
Definition:
MmData.h:36
TrigL2MuonSA::MmHitData
Definition:
MmData.h:14
TrigL2MuonSA::MmHits
std::vector< MmHitData > MmHits
Definition:
MmData.h:47
TrigL2MuonSA::MmHitData::z
double z
Definition:
MmData.h:34
TrigL2MuonSA
Definition:
AlignmentBarrelLUT.h:13
TrigL2MuonSA::MmHitData::stationEta
int stationEta
Definition:
MmData.h:35
Generated on Wed Apr 2 2025 21:14:55 for ATLAS Offline Software by
1.8.18