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
sTGC.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_H
6
#define sTGC_H
7
8
#include "
MuonGeoModel/DetectorElement.h
"
9
10
#include <vector>
11
12
class
GeoFullPhysVol;
13
14
namespace
MuonGM
{
15
16
class
Cutout;
17
class
Component
;
18
class
sTGCComponent;
19
20
class
sTGC
:
public
DetectorElement
{
21
22
public
:
23
double
width
{0.};
24
double
length
{0.};
25
double
thickness
{0.};
26
double
longWidth
{0.};
// for trapezoidal layers
27
double
yCutout
{0.};
// for Hexagonal layer
28
double
yCutoutCathode
{0.};
// for Hexagonal layer
29
int
index
{0};
30
31
sTGC
(
Component
*
s
);
32
GeoFullPhysVol *
build
(
StoredMaterialManager
& matManager,
33
int
minimalgeo);
34
GeoFullPhysVol *
build
(
StoredMaterialManager
& matManager,
35
int
minimalgeo,
int
cutoutson,
36
const
std::vector<Cutout *>&);
37
virtual
void
print
()
const override
;
38
39
private
:
40
sTGCComponent
*
m_component
{
nullptr
};
41
};
42
43
}
// namespace MuonGM
44
45
#endif
MuonGM::sTGC::longWidth
double longWidth
Definition:
sTGC.h:26
DetectorElement.h
MuonGM
Ensure that the Athena extensions are properly loaded.
Definition:
GeoMuonHits.h:27
MuonGM::sTGC
Definition:
sTGC.h:20
python.SystemOfUnits.s
int s
Definition:
SystemOfUnits.py:131
index
Definition:
index.py:1
MuonGM::sTGC::width
double width
Definition:
sTGC.h:23
MuonGM::sTGC::build
GeoFullPhysVol * build(StoredMaterialManager &matManager, int minimalgeo)
Definition:
sTGC.cxx:52
MuonGM::sTGCComponent
Definition:
sTGCComponent.h:15
MuonGM::DetectorElement
Definition:
DetectorElement.h:15
MuonGM::sTGC::print
virtual void print() const override
Definition:
sTGC.cxx:257
MuonGM::Component
Definition:
Component.h:11
MuonGM::sTGC::length
double length
Definition:
sTGC.h:24
MuonGM::sTGC::sTGC
sTGC(Component *s)
Definition:
sTGC.cxx:40
MuonGM::sTGC::m_component
sTGCComponent * m_component
Definition:
sTGC.h:40
lwtDev::Component
Component
Definition:
NNLayerConfig.h:25
StoredMaterialManager
This class holds one or more material managers and makes them storeable, under StoreGate.
Definition:
StoredMaterialManager.h:28
MuonGM::sTGC::yCutout
double yCutout
Definition:
sTGC.h:27
MuonGM::sTGC::yCutoutCathode
double yCutoutCathode
Definition:
sTGC.h:28
MuonGM::sTGC::thickness
double thickness
Definition:
sTGC.h:25
Generated on Wed Apr 16 2025 21:19:06 for ATLAS Offline Software by
1.8.18