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
LArReadoutGeometry
src
FCALTube.cxx
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#include "
LArReadoutGeometry/FCALTube.h
"
6
7
// Constructor
8
FCALTube::FCALTube
(
const
FCALTile
*
tile
9
,
const
FCALHVLine
& hvLine
10
,
double
x
11
,
double
y
)
12
: m_tile(
tile
)
13
, m_hvLine(hvLine)
14
, m_x(
x
)
15
, m_y(
y
)
16
{
17
}
18
19
// Destructor
20
FCALTube::~FCALTube
() =
default
;
21
22
// Get the tube position (x)
23
double
FCALTube::getXLocal
()
const
{
24
return
m_x
;
25
}
26
27
// Get the tube position (y)
28
double
FCALTube::getYLocal
()
const
{
29
return
m_y
;
30
}
31
32
// Get the tile
33
const
FCALTile
*
FCALTube::getTile
()
const
{
34
return
m_tile
;
35
}
36
37
// Get the High Voltage Line
38
const
FCALHVLine
&
FCALTube::getHVLine
()
const
{
39
return
m_hvLine
;
40
}
FCALTube::m_x
double m_x
Definition:
FCALTube.h:49
FCALTube::m_hvLine
const FCALHVLine & m_hvLine
Definition:
FCALTube.h:48
FCALTube::m_tile
const FCALTile * m_tile
Definition:
FCALTube.h:47
FCALTube::getTile
const FCALTile * getTile() const
Definition:
FCALTube.cxx:33
x
#define x
ReadCellNoiseFromCool.tile
tile
Definition:
ReadCellNoiseFromCool.py:92
FCALTile
A tile of the forward calorimeter readout geometry.
Definition:
FCALTile.h:27
FCALHVLine
Definition:
FCALHVLine.h:15
FCALTube.h
FCALTube::getHVLine
const FCALHVLine & getHVLine() const
Definition:
FCALTube.cxx:38
FCALTube::~FCALTube
virtual ~FCALTube()
FCALTube::getXLocal
double getXLocal() const
Definition:
FCALTube.cxx:23
FCALTube::getYLocal
double getYLocal() const
Definition:
FCALTube.cxx:28
y
#define y
FCALTube::m_y
double m_y
Definition:
FCALTube.h:50
FCALTube::FCALTube
FCALTube(const FCALTile *tile, const FCALHVLine &line, double x, double y)
Definition:
FCALTube.cxx:8
Generated on Fri Mar 21 2025 21:10:41 for ATLAS Offline Software by
1.8.18