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
MuonAGDDDescription
MuonAGDDDescription
MuonAGDDDescription/MuonAGDDDescription/sTGC_Technology.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef sTGC_Technology_H
6
#define sTGC_Technology_H
7
8
#include "
GeoPrimitives/GeoPrimitives.h
"
10
#include "
AGDDKernel/AGDDTechnology.h
"
11
#include <vector>
12
namespace
MuonGM
{
13
14
// Description class to build sTGC chambers
15
16
class
sTGC_Technology
:
public
AGDDTechnology
{
17
public
:
18
double
thickness
{0.};
19
int
nlayers
{0};
20
double
gasThickness
{0.};
21
double
pcbThickness
{0.};
// Included for Backwards Compatibility
22
double
pcbThickness150
{0.};
23
double
pcbThickness200
{0.};
24
double
coverThickness
{0.};
25
double
f4Thickness
{0.};
26
double
f5Thickness
{0.};
27
double
f6Thickness
{0.};
28
29
30
31
int
geoLevel
{0};
32
33
// inner structure parameters (to be defined)
34
35
// constructor
36
inline
sTGC_Technology
(
const
std::string&
s
,
37
AGDDDetectorStore
&
ds
);
38
inline
double
Thickness
()
const
;
39
};
40
41
sTGC_Technology::sTGC_Technology
(
const
std::string&
s
,
42
AGDDDetectorStore
&
ds
):
AGDDTechnology
(
s
,
ds
)
43
{
44
}
45
46
double
sTGC_Technology::Thickness
()
const
47
{
48
//thickness=nlayers*(gasThickness+pcbThickness) + pcbThickness;
49
return
thickness
;
50
}
51
52
}
// namespace MuonGM
53
54
#endif
checkxAOD.ds
ds
Definition:
Tools/PyUtils/bin/checkxAOD.py:260
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
AGDDTechnology.h
MuonGM::sTGC_Technology::geoLevel
int geoLevel
Definition:
MuonAGDDDescription/MuonAGDDDescription/sTGC_Technology.h:31
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
Definition:
MuonAGDDDescription/MuonAGDDDescription/sTGC_Technology.h:16
GeoPrimitives.h
MuonGM::sTGC_Technology::Thickness
double Thickness() const
Definition:
MuonAGDDDescription/MuonAGDDDescription/sTGC_Technology.h:46
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
AGDDDetectorStore
Definition:
AGDDDetectorStore.h:18
AGDDTechnology
Definition:
AGDDTechnology.h:15
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
Generated on Sat Jan 11 2025 21:18:21 for ATLAS Offline Software by
1.8.18