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
w
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
InnerDetector
InDetDetDescr
SCT_GeoModel
src
SCT_Dogleg.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
//
6
// 14th Aug 2005 S.Mima modified.
7
//
8
#ifndef SCT_GEOMODEL_SCT_DOGLEG_H
9
#define SCT_GEOMODEL_SCT_DOGLEG_H
10
11
#include "
SCT_ComponentFactory.h
"
12
13
#include <string>
14
15
class
GeoMaterial;
16
class
GeoVPhysVol;
17
18
19
class
SCT_Dogleg
:
public
SCT_SharedComponentFactory
20
21
{
22
23
public
:
24
SCT_Dogleg
(
const
std::string &
name
,
25
InDetDD::SCT_DetectorManager
* detectorManager,
26
SCT_GeometryManager
* geometryManager,
27
SCT_MaterialManager
* materials);
28
29
public
:
30
const
GeoMaterial *
material
()
const
{
return
m_material
;}
31
double
thickness
()
const
{
return
m_thickness
;}
32
double
width
()
const
{
return
m_width
;}
33
double
length
()
const
{
return
m_length
;}
34
35
private
:
36
void
getParameters
();
37
virtual
GeoVPhysVol *
build
();
38
39
const
GeoMaterial *
m_material
=
nullptr
;
40
double
m_thickness
= 0.0;
41
double
m_width
= 0.0;
42
double
m_length
= 0.0;
43
44
};
45
46
#endif // SCT_GEOMODEL_SCT_DOGLEG_H
SCT_MaterialManager
Definition:
SCT_MaterialManager.h:21
InDetDD::SCT_DetectorManager
Definition:
SCT_DetectorManager.h:49
SCT_Dogleg::getParameters
void getParameters()
Definition:
SCT_Dogleg.cxx:33
SCT_Dogleg::width
double width() const
Definition:
SCT_Dogleg.h:32
SCT_Dogleg::material
const GeoMaterial * material() const
Definition:
SCT_Dogleg.h:30
SCT_Dogleg::m_material
const GeoMaterial * m_material
Definition:
SCT_Dogleg.h:39
SCT_Dogleg::m_thickness
double m_thickness
Definition:
SCT_Dogleg.h:40
SCT_ComponentFactory.h
SCT_Dogleg::m_length
double m_length
Definition:
SCT_Dogleg.h:42
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:240
SCT_Dogleg::length
double length() const
Definition:
SCT_Dogleg.h:33
SCT_Dogleg::thickness
double thickness() const
Definition:
SCT_Dogleg.h:31
SCT_Dogleg::SCT_Dogleg
SCT_Dogleg(const std::string &name, InDetDD::SCT_DetectorManager *detectorManager, SCT_GeometryManager *geometryManager, SCT_MaterialManager *materials)
Definition:
SCT_Dogleg.cxx:21
SCT_SharedComponentFactory
Definition:
SCT_ComponentFactory.h:56
SCT_Dogleg::m_width
double m_width
Definition:
SCT_Dogleg.h:41
SCT_Dogleg::build
virtual GeoVPhysVol * build()
Definition:
SCT_Dogleg.cxx:44
SCT_GeometryManager
Definition:
SCT_GeometryManager.h:25
SCT_Dogleg
Definition:
SCT_Dogleg.h:21
Generated on Sat May 24 2025 21:17:14 for ATLAS Offline Software by
1.8.18