ATLAS Offline Software
Loading...
Searching...
No Matches
Chi2Test.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_CHI2TEST_H
10#define DQM_ALGORITHMS_CHI2TEST_H
11
12#include <dqm_core/Algorithm.h>
13#include <string>
14#include <iosfwd>
15
16namespace dqm_algorithms
17{
18 struct Chi2Test : public dqm_core::Algorithm
19 {
20 Chi2Test( const std::string & name );
21
22 Chi2Test * clone( );
23 dqm_core::Result * execute( const std::string & , const TObject & , const dqm_core::AlgorithmConfig & );
24 using dqm_core::Algorithm::printDescription;
25 void printDescription(std::ostream& out);
26 private:
27 std::string m_name;
28 std::string m_option;
29 };
30}
31
32#endif // DQM_ALGORITHMS_CHI2TEST_H
Chi2Test(const std::string &name)
Definition Chi2Test.cxx:27
dqm_core::Result * execute(const std::string &, const TObject &, const dqm_core::AlgorithmConfig &)
Definition Chi2Test.cxx:41
void printDescription(std::ostream &out)
Definition Chi2Test.cxx:194