ATLAS Offline Software
Loading...
Searching...
No Matches
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
8
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
16namespace dqm_algorithms
17{
18 struct KurtosisTest : public dqm_core::Algorithm
19 {
20 KurtosisTest(const std::string & name);
21
22 //overwrites virtual functions
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_core::Result * execute(const std::string &, const TObject &, const dqm_core::AlgorithmConfig &)
bool CompareKurtosisTest(const std::string &type, double value, double threshold)
KurtosisTest(const std::string &name)
void printDescription(std::ostream &out)