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
DetectorDescription
AGDD
AGDDModel
AGDDModel
AGDDParameterBag.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef AGDDParameterBag_H
6
#define AGDDParameterBag_H
7
8
class
AGDDParameterBag
{
9
public
:
10
AGDDParameterBag
() {}
11
virtual
~AGDDParameterBag
() {}
12
};
13
14
class
AGDDParameterBagMMTech
:
public
AGDDParameterBag
{
15
public
:
16
double
thickness
;
17
double
pitchSS
;
//small sector
18
double
pitchLS
;
//large sector
19
};
20
21
class
AGDDParameterBagMM
:
public
AGDDParameterBag
{
22
public
:
23
double
largeX
;
24
double
smallX
;
25
double
lengthY
;
26
AGDDParameterBagMMTech
*
TechParameters
;
27
};
28
29
class
AGDDParameterBagsTGCTech
:
public
AGDDParameterBag
{
30
public
:
31
double
thickness
;
32
double
stripPitch
;
//eta
33
double
wirePitch
;
//phi
34
double
stripWidth
;
//eta
35
double
wireWidth
;
//phi
36
};
37
38
class
AGDDParameterBagsTGC
:
public
AGDDParameterBag
{
39
public
:
40
double
largeX
;
41
double
smallX
;
42
double
lengthY
;
43
AGDDParameterBagsTGCTech
*
TechParameters
;
44
};
45
46
#endif
AGDDParameterBagMM::largeX
double largeX
Definition:
AGDDParameterBag.h:23
AGDDParameterBagMMTech::pitchSS
double pitchSS
Definition:
AGDDParameterBag.h:17
AGDDParameterBag
Definition:
AGDDParameterBag.h:8
AGDDParameterBagsTGC
Definition:
AGDDParameterBag.h:38
AGDDParameterBagMMTech
Definition:
AGDDParameterBag.h:14
AGDDParameterBagsTGCTech::stripPitch
double stripPitch
Definition:
AGDDParameterBag.h:32
AGDDParameterBagMM::smallX
double smallX
Definition:
AGDDParameterBag.h:24
AGDDParameterBagMM::lengthY
double lengthY
Definition:
AGDDParameterBag.h:25
AGDDParameterBagsTGCTech
Definition:
AGDDParameterBag.h:29
AGDDParameterBagsTGC::largeX
double largeX
Definition:
AGDDParameterBag.h:40
AGDDParameterBagsTGCTech::wirePitch
double wirePitch
Definition:
AGDDParameterBag.h:33
AGDDParameterBagsTGC::TechParameters
AGDDParameterBagsTGCTech * TechParameters
Definition:
AGDDParameterBag.h:43
AGDDParameterBagsTGCTech::wireWidth
double wireWidth
Definition:
AGDDParameterBag.h:35
AGDDParameterBagsTGC::lengthY
double lengthY
Definition:
AGDDParameterBag.h:42
AGDDParameterBagsTGCTech::thickness
double thickness
Definition:
AGDDParameterBag.h:31
AGDDParameterBag::~AGDDParameterBag
virtual ~AGDDParameterBag()
Definition:
AGDDParameterBag.h:11
AGDDParameterBagMMTech::thickness
double thickness
Definition:
AGDDParameterBag.h:16
AGDDParameterBagsTGC::smallX
double smallX
Definition:
AGDDParameterBag.h:41
AGDDParameterBagMM
Definition:
AGDDParameterBag.h:21
AGDDParameterBagMMTech::pitchLS
double pitchLS
Definition:
AGDDParameterBag.h:18
AGDDParameterBagMM::TechParameters
AGDDParameterBagMMTech * TechParameters
Definition:
AGDDParameterBag.h:26
AGDDParameterBagsTGCTech::stripWidth
double stripWidth
Definition:
AGDDParameterBag.h:34
AGDDParameterBag::AGDDParameterBag
AGDDParameterBag()
Definition:
AGDDParameterBag.h:10
Generated on Sat Mar 15 2025 21:06:56 for ATLAS Offline Software by
1.8.18