ATLAS Offline Software
Loading...
Searching...
No Matches
CheckMean.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_CHECKMEAN_H
6#define DQM_ALGORITHMS_CHECKMEAN_H
7
8
9
10#include "dqm_core/Algorithm.h"
11#include <string>
12#include <iosfwd>
13
14namespace dqm_algorithms {
15
16class CheckMean : public dqm_core::Algorithm {
17public:
18
19 CheckMean();
20
21 virtual ~CheckMean();
22 virtual dqm_core::Algorithm* clone();
23 virtual dqm_core::Result* execute( const std::string& name, const TObject& data,
24 const dqm_core::AlgorithmConfig& config );
25 using dqm_core::Algorithm::printDescription;
26 virtual void printDescription(std::ostream& out);
27
28protected:
29
30 virtual double getWarningLimit( const dqm_core::AlgorithmConfig& config, std::string limitName );
31 virtual double getErrorLimit( const dqm_core::AlgorithmConfig& config, std::string limitName );
32
33 std::string m_name;
34 std::string m_limitName;
35};
36
37} //namespace dqm_algorithms
38
39#endif // DQM_ALGORITHMS_CHECKMEAN_H
char data[hepevt_bytes_allocation_ATLAS]
Definition HepEvt.cxx:11
virtual dqm_core::Result * execute(const std::string &name, const TObject &data, const dqm_core::AlgorithmConfig &config)
Definition CheckMean.cxx:55
virtual void printDescription(std::ostream &out)
virtual double getWarningLimit(const dqm_core::AlgorithmConfig &config, std::string limitName)
virtual dqm_core::Algorithm * clone()
Definition CheckMean.cxx:47
virtual double getErrorLimit(const dqm_core::AlgorithmConfig &config, std::string limitName)