ATLAS Offline Software
Loading...
Searching...
No Matches
MDTTubeCheck.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_MDTTUBECHECK_H
6#define DQM_ALGORITHMS_MDTTUBECHECK_H
7
8
9
10#include "dqm_core/Algorithm.h"
11#include <string>
12#include <iosfwd>
13
14class TF1;
15class TH1;
16class TAxis;
17
18namespace dqm_algorithms {
19
20class MDTTubeCheck : public dqm_core::Algorithm {
21public:
22
24
25 virtual ~MDTTubeCheck();
26 virtual dqm_core::Algorithm* clone();
27 virtual dqm_core::Result* execute( const std::string& name, const TObject& object,
28 const dqm_core::AlgorithmConfig& config );
29 using dqm_core::Algorithm::printDescription;
30 virtual void printDescription(std::ostream& out);
31
32private:
33 std::string m_name;
34};
35
36} //namespace dqm_algorithms
37
38#endif // DQM_ALGORITHMS_MDTTUBECHECK_H
virtual void printDescription(std::ostream &out)
virtual dqm_core::Result * execute(const std::string &name, const TObject &object, const dqm_core::AlgorithmConfig &config)
virtual dqm_core::Algorithm * clone()