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