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/MM_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 MM_Technology_H
6
#define MM_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 MicroMegas chambers
15
16
class
MM_Technology
:
public
AGDDTechnology
{
17
public
:
18
double
thickness
{0.};
19
int
nlayers
{0};
20
double
gasThickness
{0.};
21
double
pcbThickness
{0.};
22
double
roThickness
{0.};
23
double
f1Thickness
{0.};
24
double
f2Thickness
{0.};
25
double
f3Thickness
{0.};
26
27
int
geoLevel
{0};
28
29
30
// inner structure parameters (to be defined)
31
32
// constructor
33
inline
MM_Technology
(
const
std::string&
s
,
34
AGDDDetectorStore
&
ds
);
35
inline
double
Thickness
()
const
;
36
};
37
38
MM_Technology::MM_Technology
(
const
std::string&
s
,
39
AGDDDetectorStore
&
ds
):
AGDDTechnology
(
s
,
ds
){}
40
41
42
double
MM_Technology::Thickness
()
const
43
{
44
//thickness=nlayers*(gasThickness+pcbThickness) + 2.*pcbThickness;
45
return
thickness
;
46
}
47
48
}
// namespace MuonGM
49
50
#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
AGDDTechnology.h
MuonGM::MM_Technology
Definition:
MuonAGDDDescription/MuonAGDDDescription/MM_Technology.h:16
MuonGM::MM_Technology::thickness
double thickness
Definition:
MuonAGDDDescription/MuonAGDDDescription/MM_Technology.h:18
MuonGM::MM_Technology::roThickness
double roThickness
Definition:
MuonAGDDDescription/MuonAGDDDescription/MM_Technology.h:22
MuonGM::MM_Technology::f3Thickness
double f3Thickness
Definition:
MuonAGDDDescription/MuonAGDDDescription/MM_Technology.h:25
GeoPrimitives.h
MuonGM::MM_Technology::nlayers
int nlayers
Definition:
MuonAGDDDescription/MuonAGDDDescription/MM_Technology.h:19
MuonGM::MM_Technology::geoLevel
int geoLevel
Definition:
MuonAGDDDescription/MuonAGDDDescription/MM_Technology.h:27
MuonGM::MM_Technology::Thickness
double Thickness() const
Definition:
MuonAGDDDescription/MuonAGDDDescription/MM_Technology.h:42
MuonGM::MM_Technology::MM_Technology
MM_Technology(const std::string &s, AGDDDetectorStore &ds)
Definition:
MuonAGDDDescription/MuonAGDDDescription/MM_Technology.h:38
MuonGM::MM_Technology::pcbThickness
double pcbThickness
Definition:
MuonAGDDDescription/MuonAGDDDescription/MM_Technology.h:21
AGDDDetectorStore
Definition:
AGDDDetectorStore.h:18
AGDDTechnology
Definition:
AGDDTechnology.h:15
MuonGM::MM_Technology::f2Thickness
double f2Thickness
Definition:
MuonAGDDDescription/MuonAGDDDescription/MM_Technology.h:24
MuonGM::MM_Technology::f1Thickness
double f1Thickness
Definition:
MuonAGDDDescription/MuonAGDDDescription/MM_Technology.h:23
MuonGM::MM_Technology::gasThickness
double gasThickness
Definition:
MuonAGDDDescription/MuonAGDDDescription/MM_Technology.h:20
Generated on Sat Mar 15 2025 21:14:55 for ATLAS Offline Software by
1.8.18