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
MdtRegion.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef TRIGL2MUONSA_MDTREGION_H
6
#define TRIGL2MUONSA_MDTREGION_H
7
8
namespace
TrigL2MuonSA
{
9
10
// --------------------------------------------------------------------------------
11
// --------------------------------------------------------------------------------
12
13
class
MdtRegion
14
{
15
public
:
16
MdtRegion
() {
Clear
(); };
17
18
void
Clear
()
19
{
20
for
(
int
i
=0;
i
<11;
i
++) {
21
for
(
int
j=0; j<2; j++) {
22
zMin
[
i
][j] = 0;
23
zMax
[
i
][j] = 0;
24
rMin
[
i
][j] = 0;
25
rMax
[
i
][j] = 0;
26
etaMin
[
i
][j] = 0;
27
etaMax
[
i
][j] = 0;
28
phiMin
[
i
][j] = 0;
29
phiMax
[
i
][j] = 0;
30
for
(
int
k
=0;
k
<2;
k
++)
chamberType
[
i
][j][
k
] = 0;
31
}
32
}
33
};
34
35
public
:
36
double
zMin
[11][2];
37
double
zMax
[11][2];
38
double
rMin
[11][2];
39
double
rMax
[11][2];
40
double
etaMin
[11][2];
41
double
etaMax
[11][2];
42
double
phiMin
[11][2];
43
double
phiMax
[11][2];
44
int
chamberType
[11][2][2];
45
};
46
47
// --------------------------------------------------------------------------------
48
// --------------------------------------------------------------------------------
49
}
50
51
#endif
TrigL2MuonSA::MdtRegion::rMin
double rMin[11][2]
Definition:
MdtRegion.h:38
TrigL2MuonSA::MdtRegion::zMin
double zMin[11][2]
Definition:
MdtRegion.h:33
TrigL2MuonSA::MdtRegion::zMax
double zMax[11][2]
Definition:
MdtRegion.h:37
TrigL2MuonSA::MdtRegion::Clear
void Clear()
Definition:
MdtRegion.h:18
TrigL2MuonSA::MdtRegion::chamberType
int chamberType[11][2][2]
Definition:
MdtRegion.h:44
TrigL2MuonSA::MdtRegion
Definition:
MdtRegion.h:14
lumiFormat.i
int i
Definition:
lumiFormat.py:85
TrigL2MuonSA::MdtRegion::etaMin
double etaMin[11][2]
Definition:
MdtRegion.h:40
TrigL2MuonSA::MdtRegion::phiMax
double phiMax[11][2]
Definition:
MdtRegion.h:43
TrigL2MuonSA::MdtRegion::MdtRegion
MdtRegion()
Definition:
MdtRegion.h:16
TrigL2MuonSA::MdtRegion::etaMax
double etaMax[11][2]
Definition:
MdtRegion.h:41
TrigL2MuonSA::MdtRegion::rMax
double rMax[11][2]
Definition:
MdtRegion.h:39
fitman.k
k
Definition:
fitman.py:528
TrigL2MuonSA::MdtRegion::phiMin
double phiMin[11][2]
Definition:
MdtRegion.h:42
TrigL2MuonSA
Definition:
AlignmentBarrelLUT.h:13
Generated on Mon Apr 14 2025 21:14:45 for ATLAS Offline Software by
1.8.18