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
MuonSpectrometer
MuonDetDescr
MuonGeoModel
MuonGeoModel
MuonGeoModel/MuonGeoModel/sTGC_Technology.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 sTGC_Technology_H
6
#define sTGC_Technology_H
7
8
#include "
MuonGeoModel/Technology.h
"
9
10
#include <vector>
11
namespace
MuonGM
{
12
13
// Description class to build sTGC chambers
14
15
class
sTGC_Technology :
public
Technology {
16
public
:
17
double
thickness
{0.};
18
int
nlayers
{0};
19
double
gasThickness
{0.};
20
double
pcbThickness
{0.};
21
double
pcbThickness150
{0.};
22
double
pcbThickness200
{0.};
23
double
coverThickness
{0.};
24
double
f4Thickness
{0.};
25
double
f5Thickness
{0.};
26
double
f6Thickness
{0.};
27
28
int
geoLevel
{0};
29
30
// inner structure parameters (to be defined)
31
32
// constructor
33
inline
sTGC_Technology
(std::string
s
);
34
inline
double
Thickness
()
const
;
35
};
36
37
sTGC_Technology::sTGC_Technology
(std::string
s
)
38
:
Technology
(
s
){}
39
40
double
sTGC_Technology::Thickness
()
const
{
41
// thickness=nlayers*(gasThickness+pcbThickness) + pcbThickness;
42
return
thickness
;
43
}
44
45
}
// namespace MuonGM
46
47
#endif
MuonGM
Ensure that the Athena extensions are properly loaded.
Definition:
GeoMuonHits.h:27
python.SystemOfUnits.s
int s
Definition:
SystemOfUnits.py:131
MuonGM::sTGC_Technology::pcbThickness200
double pcbThickness200
Definition:
MuonAGDDDescription/MuonAGDDDescription/sTGC_Technology.h:23
MuonGM::sTGC_Technology::sTGC_Technology
sTGC_Technology(const std::string &s, AGDDDetectorStore &ds)
Definition:
MuonAGDDDescription/MuonAGDDDescription/sTGC_Technology.h:41
MuonGM::sTGC_Technology::geoLevel
int geoLevel
Definition:
MuonAGDDDescription/MuonAGDDDescription/sTGC_Technology.h:31
MuonGM::Technology
Definition:
Technology.h:15
MuonGM::sTGC_Technology::f5Thickness
double f5Thickness
Definition:
MuonAGDDDescription/MuonAGDDDescription/sTGC_Technology.h:26
MuonGM::sTGC_Technology::thickness
double thickness
Definition:
MuonAGDDDescription/MuonAGDDDescription/sTGC_Technology.h:18
MuonGM::sTGC_Technology::Thickness
double Thickness() const
MuonGM::sTGC_Technology::nlayers
int nlayers
Definition:
MuonAGDDDescription/MuonAGDDDescription/sTGC_Technology.h:19
MuonGM::sTGC_Technology::f6Thickness
double f6Thickness
Definition:
MuonAGDDDescription/MuonAGDDDescription/sTGC_Technology.h:27
MuonGM::sTGC_Technology::f4Thickness
double f4Thickness
Definition:
MuonAGDDDescription/MuonAGDDDescription/sTGC_Technology.h:25
MuonGM::sTGC_Technology::coverThickness
double coverThickness
Definition:
MuonAGDDDescription/MuonAGDDDescription/sTGC_Technology.h:24
MuonGM::sTGC_Technology::gasThickness
double gasThickness
Definition:
MuonAGDDDescription/MuonAGDDDescription/sTGC_Technology.h:20
MuonGM::sTGC_Technology::pcbThickness150
double pcbThickness150
Definition:
MuonAGDDDescription/MuonAGDDDescription/sTGC_Technology.h:22
MuonGM::sTGC_Technology::pcbThickness
double pcbThickness
Definition:
MuonAGDDDescription/MuonAGDDDescription/sTGC_Technology.h:21
Technology.h
Generated on Mon Mar 24 2025 21:18:56 for ATLAS Offline Software by
1.8.18