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
LArRawConditions
src
LArPedestalMC.cxx
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#include "
LArRawConditions/LArPedestalMC.h
"
6
7
#include <iostream>
8
using namespace
std ;
9
10
LArPedestalMC::LArPedestalMC
() {}
11
12
LArPedestalMC::~LArPedestalMC
() {}
13
14
/* Fill transient object in ATHENA *****************************************
15
*/
16
void
LArPedestalMC::set
(
const
std::vector<float>& vPedestal,
17
const
std::vector<float>& vPedestalRMS )
18
{
19
m_vPedestal = vPedestal;
20
m_vPedestalRMS = vPedestalRMS;
21
22
}
23
24
25
/* retrieve Pedestal ******************************************************
26
*/
27
float
LArPedestalMC::pedestal
(
const
HWIdentifier&
/*CellID*/
,
int
/*gain*/
)
const
28
{
29
if
(!m_vPedestal.empty())
return
m_vPedestal[0];
30
else
return
LArElecCalib::ERRORCODE
;
31
}
32
33
float
LArPedestalMC::pedestalRMS
(
const
HWIdentifier&
/*CellID*/
,
int
/*gain*/
)
const
34
{
35
36
if
(!m_vPedestalRMS.empty())
return
m_vPedestalRMS[0];
37
else
return
LArElecCalib::ERRORCODE
;
38
39
}
LArPedestalMC::LArPedestalMC
LArPedestalMC()
Definition:
LArPedestalMC.cxx:10
LArPedestalMC::pedestal
float pedestal(const HWIdentifier &CellID, int gain) const
Definition:
LArPedestalMC.cxx:27
LArPedestalMC.h
LArPedestalMC::pedestalRMS
float pedestalRMS(const HWIdentifier &CellID, int gain) const
access to RMS of Pedestal index by Identifier, and gain setting
Definition:
LArPedestalMC.cxx:33
LArElecCalib::ERRORCODE
@ ERRORCODE
Definition:
LArCalibErrorCode.h:17
LArPedestalMC::~LArPedestalMC
virtual ~LArPedestalMC()
Definition:
LArPedestalMC.cxx:12
LArPedestalMC::set
void set(const std::vector< float > &vPedestal, const std::vector< float > &vPedestalRMS)
Definition:
LArPedestalMC.cxx:16
Generated on Thu Apr 3 2025 21:14:02 for ATLAS Offline Software by
1.8.18