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
TgcData.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_TGCDATA_H
6
#define TRIGL2MUONSA_TGCDATA_H
7
8
namespace
TrigL2MuonSA
{
9
10
// --------------------------------------------------------------------------------
11
// --------------------------------------------------------------------------------
12
13
class
TgcHitData
14
{
15
public
:
16
TgcHitData
() :
17
eta
(0),
18
phi
(0),
19
r
(0),
20
z
(0),
21
width
(0),
22
sta
(0),
23
isStrip
(false),
24
bcTag
(0),
25
inRoad
(false)
26
{};
27
28
public
:
29
double
eta
;
30
double
phi
;
31
double
r
;
32
double
z
;
33
double
width
;
34
int
sta
;
35
bool
isStrip
;
36
int
bcTag
;
37
bool
inRoad
;
38
};
39
40
// --------------------------------------------------------------------------------
41
// --------------------------------------------------------------------------------
42
43
typedef
std::vector<TgcHitData>
TgcHits
;
44
45
// --------------------------------------------------------------------------------
46
// --------------------------------------------------------------------------------
47
48
}
49
50
#endif // TRIGL2MUONSA_TGCDATA_H
TrigL2MuonSA::TgcHitData::sta
int sta
Definition:
TgcData.h:34
TrigL2MuonSA::TgcHitData::phi
double phi
Definition:
TgcData.h:30
TrigL2MuonSA::TgcHits
std::vector< TgcHitData > TgcHits
Definition:
TgcData.h:43
TrigL2MuonSA::TgcHitData::isStrip
bool isStrip
Definition:
TgcData.h:35
TrigL2MuonSA::TgcHitData
Definition:
TgcData.h:14
TrigL2MuonSA::TgcHitData::width
double width
Definition:
TgcData.h:33
TrigL2MuonSA::TgcHitData::r
double r
Definition:
TgcData.h:31
TrigL2MuonSA::TgcHitData::z
double z
Definition:
TgcData.h:32
TrigL2MuonSA::TgcHitData::bcTag
int bcTag
Definition:
TgcData.h:36
TrigL2MuonSA::TgcHitData::TgcHitData
TgcHitData()
Definition:
TgcData.h:16
TrigL2MuonSA::TgcHitData::eta
double eta
Definition:
TgcData.h:26
TrigL2MuonSA::TgcHitData::inRoad
bool inRoad
Definition:
TgcData.h:37
TrigL2MuonSA
Definition:
AlignmentBarrelLUT.h:13
Generated on Wed Apr 2 2025 21:19:44 for ATLAS Offline Software by
1.8.18