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
LArCalorimeter
LArGeoModel
LArGeoHec
LArGeoHec
HECWheelConstruction.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
// HECWheelConstruction.h
6
//
7
// Construct an Atlas HEC Wheel (Front or Rear)
8
//
9
// Oct 2007 M. Fincke
10
//
11
12
#ifndef LARGEOHEC_HECWHEELCONSTRUCTION_H
13
#define LARGEOHEC_HECWHEELCONSTRUCTION_H
14
15
#include <string>
16
#include "GeoModelKernel/GeoFullPhysVol.h"
17
18
19
namespace
LArGeo
20
{
21
22
class
HECWheelConstruction
23
{
24
public
:
25
HECWheelConstruction
(
bool
fullGeo,
const
std::string& wheelType=
"front"
,
bool
threeBoards=
false
,
bool
posZSide=
true
);
26
virtual
~HECWheelConstruction
();
27
28
// Get the envelope containing this detector.
29
GeoIntrusivePtr<GeoFullPhysVol>
GetEnvelope
();
30
31
private
:
32
bool
m_posZSide
;
33
bool
m_threeBoards
;
34
bool
m_frontWheel
;
35
std::string
m_wheelType
;
36
bool
m_fullGeo
;
// true->FULL, false->RECO
37
};
38
39
}
40
#endif // LARGEOHEC_HECWHEELCONSTRUCTION_H
LArGeo::HECWheelConstruction::GetEnvelope
GeoIntrusivePtr< GeoFullPhysVol > GetEnvelope()
Definition:
HECWheelConstruction.cxx:75
LArGeo
Definition:
LArDetectorFactory.h:26
LArGeo::HECWheelConstruction::m_fullGeo
bool m_fullGeo
Definition:
HECWheelConstruction.h:36
LArGeo::HECWheelConstruction::m_frontWheel
bool m_frontWheel
Definition:
HECWheelConstruction.h:34
LArGeo::HECWheelConstruction::m_posZSide
bool m_posZSide
Definition:
HECWheelConstruction.h:32
LArGeo::HECWheelConstruction::m_threeBoards
bool m_threeBoards
Definition:
HECWheelConstruction.h:33
LArGeo::HECWheelConstruction::~HECWheelConstruction
virtual ~HECWheelConstruction()
LArGeo::HECWheelConstruction
Definition:
HECWheelConstruction.h:23
LArGeo::HECWheelConstruction::m_wheelType
std::string m_wheelType
Definition:
HECWheelConstruction.h:35
LArGeo::HECWheelConstruction::HECWheelConstruction
HECWheelConstruction(bool fullGeo, const std::string &wheelType="front", bool threeBoards=false, bool posZSide=true)
Definition:
HECWheelConstruction.cxx:62
Generated on Tue Apr 22 2025 21:11:23 for ATLAS Offline Software by
1.8.18