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
InDetConditions
PixelConditionsData
PixelConditionsData
PixelDCSTempData.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
3
*/
11
#ifndef PIXELDCSTEMPDATA_H
12
#define PIXELDCSTEMPDATA_H
13
14
#include "
PixelConditionsData/SingleConditionsDatum.h
"
15
16
#include "
AthenaKernel/CLASS_DEF.h
"
17
18
#include "
AthenaKernel/CondCont.h
"
19
class
PixelDCSTempData
{
20
public
:
21
void
setTemperature
(
int
chanNum
,
float
value
){
m_impl
.
setValue
(
chanNum
,
value
);}
22
float
getTemperature
(
int
chanNum
)
const
{
return
m_impl
.
getValue
(
chanNum
);}
23
private
:
24
//class template parameters: lo limit, hi limit, default, invalid
25
SingleConditionsDatum
<
float
, -1000.f, 1000.f, -7.f, -7.f>
m_impl
;
26
};
27
28
CLASS_DEF
(
PixelDCSTempData
, 345932822 , 1 )
29
30
CONDCONT_DEF
(
PixelDCSTempData
, 578988322 );
31
32
#endif
CondCont.h
Hold mappings of ranges to condition objects.
SingleConditionsDatum.h
Class for single value per channel, with defaults, limits, and invalid value defined.
SingleConditionsDatum
Definition:
SingleConditionsDatum.h:19
athena.value
value
Definition:
athena.py:124
PixelDCSTempData
Definition:
PixelDCSTempData.h:19
PixelDCSTempData::m_impl
SingleConditionsDatum< float, -1000.f, 1000.f, -7.f, -7.f > m_impl
Definition:
PixelDCSTempData.h:25
SingleConditionsDatum::setValue
void setValue(int chanNum, T value)
Definition:
SingleConditionsDatum.h:24
checkCoolLatestUpdate.chanNum
chanNum
Definition:
checkCoolLatestUpdate.py:27
PixelDCSTempData::setTemperature
void setTemperature(int chanNum, float value)
Definition:
PixelDCSTempData.h:21
CONDCONT_DEF
CONDCONT_DEF(PixelDCSTempData, 578988322)
PixelDCSTempData::getTemperature
float getTemperature(int chanNum) const
Definition:
PixelDCSTempData.h:22
CLASS_DEF
#define CLASS_DEF(NAME, CID, VERSION)
associate a clid and a version to a type eg
Definition:
Control/AthenaKernel/AthenaKernel/CLASS_DEF.h:67
SingleConditionsDatum::getValue
T getValue(const int chanNum) const
Definition:
SingleConditionsDatum.h:29
CLASS_DEF.h
macros to associate a CLID to a type
python.LArMinBiasAlgConfig.float
float
Definition:
LArMinBiasAlgConfig.py:65
Generated on Tue May 13 2025 21:15:56 for ATLAS Offline Software by
1.8.18