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
LArRawConditions
LArDSPThresholdsP.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3
*/
4
5
#ifndef LARDSPTHRESHOLDSP_H
6
#define LARDSPTHRESHOLDSP_H
7
8
9
class
LArDSPThresholdsP
{
10
11
public
:
12
LArDSPThresholdsP
() :
m_tQThr
(
m_default
),
m_samplesThr
(
m_default
),
m_trigSumThr
(
m_default
) {};
13
14
LArDSPThresholdsP
(
const
float
tQThr
,
const
float
samplesThr
,
const
float
trigSumThr
) :
15
m_tQThr
(
tQThr
),
m_samplesThr
(
samplesThr
),
m_trigSumThr
(
trigSumThr
) {};
16
17
void
set
(
const
float
tQThr
,
const
float
samplesThr
,
const
float
trigSumThr
) {
18
m_tQThr
=
tQThr
;
19
m_samplesThr
=
samplesThr
;
20
m_trigSumThr
=
trigSumThr
;
21
}
22
23
float
tQThr
()
const
{
return
m_tQThr
; };
24
float
samplesThr
()
const
{
return
m_samplesThr
; };
25
float
trigSumThr
()
const
{
return
m_trigSumThr
; };
26
27
static
float
getDefault
() {
return
m_default
; };
28
29
private
:
30
float
m_tQThr
;
31
float
m_samplesThr
;
32
float
m_trigSumThr
;
33
34
const
static
float
m_default
;
35
36
};
37
38
#endif
LArDSPThresholdsP::samplesThr
float samplesThr() const
Definition:
LArDSPThresholdsP.h:24
LArDSPThresholdsP::m_tQThr
float m_tQThr
Definition:
LArDSPThresholdsP.h:27
LArDSPThresholdsP
Definition:
LArDSPThresholdsP.h:9
LArDSPThresholdsP::m_default
static const float m_default
Definition:
LArDSPThresholdsP.h:34
LArDSPThresholdsP::trigSumThr
float trigSumThr() const
Definition:
LArDSPThresholdsP.h:25
LArDSPThresholdsP::m_samplesThr
float m_samplesThr
Definition:
LArDSPThresholdsP.h:31
LArDSPThresholdsP::LArDSPThresholdsP
LArDSPThresholdsP()
Definition:
LArDSPThresholdsP.h:12
LArDSPThresholdsP::LArDSPThresholdsP
LArDSPThresholdsP(const float tQThr, const float samplesThr, const float trigSumThr)
Definition:
LArDSPThresholdsP.h:14
LArDSPThresholdsP::m_trigSumThr
float m_trigSumThr
Definition:
LArDSPThresholdsP.h:32
LArDSPThresholdsP::tQThr
float tQThr() const
Definition:
LArDSPThresholdsP.h:23
LArDSPThresholdsP::getDefault
static float getDefault()
Definition:
LArDSPThresholdsP.h:27
LArDSPThresholdsP::set
void set(const float tQThr, const float samplesThr, const float trigSumThr)
Definition:
LArDSPThresholdsP.h:17
Generated on Tue Apr 15 2025 21:13:51 for ATLAS Offline Software by
1.8.18