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
LArDSPThresholdsComplete.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 <limits>
6
#include "
LArRawConditions/LArDSPThresholdsComplete.h
"
7
8
9
//The default thresholds should be very high (eg. never go over threshold)
10
//We have to keep in mind that the data is casted to an int somewhere down the chain.
11
//This number shoudl we very high but can be safely casted to an int.
12
const
float
LArDSPThresholdsP::m_default
=
std::numeric_limits<int>::max
()*0.99;
13
14
15
void
LArDSPThresholdsComplete::set
(
const
HWIdentifier
chid,
16
const
float
tQThr,
const
float
samplesThr,
17
const
float
trigSumThr) {
18
LArDSPThresholdsP
data
(
tQThr
,
samplesThr
,
trigSumThr
);
19
this->
setPdata
(chid,
data
,0);
20
}
data
char data[hepevt_bytes_allocation_ATLAS]
Definition:
HepEvt.cxx:11
LArConditionsContainer< LArDSPThresholdsP >::setPdata
void setPdata(const HWIdentifier id, const LArDSPThresholdsP &payload, unsigned int gain=0)
put payload in persistent data
max
constexpr double max()
Definition:
ap_fixedTest.cxx:33
HWIdentifier
Definition:
HWIdentifier.h:13
LArDSPThresholdsComplete::samplesThr
float samplesThr(const HWIdentifier chid) const
Definition:
LArDSPThresholdsComplete.h:27
LArDSPThresholdsP
Definition:
LArDSPThresholdsP.h:9
LArDSPThresholdsP::m_default
static const float m_default
Definition:
LArDSPThresholdsP.h:34
LArDSPThresholdsComplete.h
A LArRawConditionsContainer holding thresholds used by the DSP.
LArDSPThresholdsComplete::trigSumThr
float trigSumThr(const HWIdentifier chid) const
Definition:
LArDSPThresholdsComplete.h:28
LArDSPThresholdsComplete::tQThr
float tQThr(const HWIdentifier chid) const
Definition:
LArDSPThresholdsComplete.h:26
LArDSPThresholdsComplete::set
void set(const HWIdentifier chid, const float tQThr, const float samplesThr, const float trigSumThr)
Definition:
LArDSPThresholdsComplete.cxx:15
Generated on Thu Apr 3 2025 21:13:50 for ATLAS Offline Software by
1.8.18