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
DataQuality
dqm_algorithms
dqm_algorithms
KurtosisTest.h
Go to the documentation of this file.
1
/*
2
Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3
*/
4
9
#ifndef DQM_ALGORITHMS_KURTOSISTEST_H
10
#define DQM_ALGORITHMS_KURTOSISTEST_H
11
12
#include <dqm_core/Algorithm.h>
13
#include <string>
14
#include <iosfwd>
15
16
namespace
dqm_algorithms
17
{
18
struct
KurtosisTest
:
public
dqm_core::Algorithm
19
{
20
KurtosisTest
(
const
std::string &
name
);
21
22
//overwrites virtual functions
23
KurtosisTest
*
clone
( );
24
dqm_core::Result
*
execute
(
const
std::string & ,
const
TObject & ,
const
dqm_core::AlgorithmConfig & );
25
using
dqm_core::Algorithm::printDescription;
26
void
printDescription
(std::ostream&
out
);
27
bool
CompareKurtosisTest
(
const
std::string&
type
,
double
value
,
double
threshold
);
28
private
:
29
std::string
m_name
;
30
};
31
}
32
33
#endif // DQM_ALGORITHMS_KURTOSISTEST_H
dqm_algorithms::KurtosisTest
Definition:
KurtosisTest.h:19
dqm_algorithms::KurtosisTest::CompareKurtosisTest
bool CompareKurtosisTest(const std::string &type, double value, double threshold)
Definition:
KurtosisTest.cxx:98
python.AthDsoLogger.out
out
Definition:
AthDsoLogger.py:71
athena.value
value
Definition:
athena.py:124
dqm_algorithms::KurtosisTest::printDescription
void printDescription(std::ostream &out)
Definition:
KurtosisTest.cxx:109
dqm_algorithms::KurtosisTest::KurtosisTest
KurtosisTest(const std::string &name)
Definition:
KurtosisTest.cxx:29
python.CaloAddPedShiftConfig.type
type
Definition:
CaloAddPedShiftConfig.py:42
dqm_algorithms::KurtosisTest::execute
dqm_core::Result * execute(const std::string &, const TObject &, const dqm_core::AlgorithmConfig &)
Definition:
KurtosisTest.cxx:43
Result
ICscStripFitter::Result Result
Definition:
CalibCscStripFitter.cxx:13
name
std::string name
Definition:
Control/AthContainers/Root/debug.cxx:240
threshold
Definition:
chainparser.cxx:74
dqm_algorithms
Definition:
AddReference.h:17
dqm_algorithms::KurtosisTest::clone
KurtosisTest * clone()
Definition:
KurtosisTest.cxx:36
dqm_algorithms::KurtosisTest::m_name
std::string m_name
Definition:
KurtosisTest.h:29
Generated on Fri Apr 4 2025 21:13:13 for ATLAS Offline Software by
1.8.18