ATLAS Offline Software
Loading...
Searching...
No Matches
MDTChi2.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef DQM_ALGORITHMS_MDTCHI2_H
6#define DQM_ALGORITHMS_MDTCHI2_H
7
8
9
10#include "dqm_core/Algorithm.h"
11#include <string>
12#include <iosfwd>
13
14
15namespace dqm_algorithms {
16
17class MDTChi2 : public dqm_core::Algorithm {
18public:
19
20 MDTChi2();
21
22 virtual ~MDTChi2();
23 virtual dqm_core::Algorithm* clone();
24 virtual dqm_core::Result* execute( const std::string& name, const TObject& object,
25 const dqm_core::AlgorithmConfig& config );
26 using dqm_core::Algorithm::printDescription;
27 virtual void printDescription(std::ostream& out);
28
29private:
30 std::string m_name;
31};
32
33} //namespace dqm_algorithms
34
35#endif // DQM_ALGORITHMS_MDTCHI2_H
virtual void printDescription(std::ostream &out)
Definition MDTChi2.cxx:172
virtual dqm_core::Result * execute(const std::string &name, const TObject &object, const dqm_core::AlgorithmConfig &config)
Definition MDTChi2.cxx:58
virtual dqm_core::Algorithm * clone()
Definition MDTChi2.cxx:51
std::string m_name
Definition MDTChi2.h:30