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
LArHV
LArHV
FCALHVModule.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef LARHV_FCALHVMODULE_H
6
#define LARHV_FCALHVMODULE_H
7
8
class
FCALHVManager
;
9
class
FCALHVLine
;
10
19
class
FCALHVModule
20
{
21
public
:
22
FCALHVModule
(
const
FCALHVManager
*
manager
23
,
unsigned
int
iSide
24
,
unsigned
int
iSector
25
,
unsigned
int
iSampling);
26
~FCALHVModule
();
27
28
// Side Index (0=Negative, 1=Positive)
29
unsigned
int
getSideIndex
()
const
;
30
31
unsigned
int
getSamplingIndex
()
const
;
32
unsigned
int
getSectorIndex
()
const
;
33
34
static
unsigned
int
getNumHVLines
() ;
35
36
const
FCALHVLine
&
getHVLine
(
unsigned
int
iLine)
const
;
37
38
const
FCALHVManager
&
getManager
()
const
;
39
40
private
:
41
FCALHVModule
(
const
FCALHVModule
& right);
42
FCALHVModule
&
operator=
(
const
FCALHVModule
& right);
43
44
class
Clockwork
;
45
Clockwork
*
m_c
;
46
};
47
48
#endif
FCALHVModule::operator=
FCALHVModule & operator=(const FCALHVModule &right)
FCALHVModule::getSamplingIndex
unsigned int getSamplingIndex() const
Definition:
FCALHVModule.cxx:57
FCALHVModule::m_c
Clockwork * m_c
Definition:
FCALHVModule.h:44
FCALHVModule::getSideIndex
unsigned int getSideIndex() const
Definition:
FCALHVModule.cxx:52
FCALHVLine
Definition:
FCALHVLine.h:15
FCALHVModule::getNumHVLines
static unsigned int getNumHVLines()
Definition:
FCALHVModule.cxx:67
FCALHVModule::Clockwork
Definition:
FCALHVModule.cxx:11
FCALHVModule::~FCALHVModule
~FCALHVModule()
Definition:
FCALHVModule.cxx:47
FCALHVModule::FCALHVModule
FCALHVModule(const FCALHVManager *manager, unsigned int iSide, unsigned int iSector, unsigned int iSampling)
Definition:
FCALHVModule.cxx:39
FCALHVModule::getSectorIndex
unsigned int getSectorIndex() const
Definition:
FCALHVModule.cxx:62
FCALHVModule::FCALHVModule
FCALHVModule(const FCALHVModule &right)
FCALHVModule::getHVLine
const FCALHVLine & getHVLine(unsigned int iLine) const
Definition:
FCALHVModule.cxx:72
FCALHVModule::getManager
const FCALHVManager & getManager() const
Definition:
FCALHVModule.cxx:83
FCALHVModule
Describes one HV Module within the FCAL.
Definition:
FCALHVModule.h:20
python.Logging.manager
manager
Definition:
PhysicsAnalysis/D3PDTools/AnaAlgorithm/python/Logging.py:92
FCALHVManager
This class provides direct access to information on the HV electrodes within the barrels....
Definition:
FCALHVManager.h:35
Generated on Thu Mar 13 2025 21:10:40 for ATLAS Offline Software by
1.8.18