ATLAS Offline Software
Loading...
Searching...
No Matches
TRTHistogramHasNonZeroEntries.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_TRTHISTOGRAMHASNONZEROENTRIES_H
10#define DQM_ALGORITHMS_TRTHISTOGRAMHASNONZEROENTRIES_H
11
12#include "dqm_core/Algorithm.h"
13
14#include <string>
15#include <iosfwd>
16
17namespace dqm_algorithms
18{
19
20class TRTHistogramHasNonZeroEntries: public dqm_core::Algorithm
21{
22public:
24
26 virtual dqm_core::Algorithm *clone();
27 virtual dqm_core::Result *execute(const std::string &, const TObject &, const dqm_core::AlgorithmConfig &);
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_TRTHISTOGRAMHASNONZEROENTRIES_H
virtual dqm_core::Result * execute(const std::string &, const TObject &, const dqm_core::AlgorithmConfig &)