ATLAS Offline Software
Loading...
Searching...
No Matches
CheckBinSpike.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3*/
4
8
9#ifndef DQM_ALGORITHMS_CHECKBINSPIKE_H
10#define DQM_ALGORITHMS_CHECKBINSPIKE_H
11
12#include <dqm_core/Algorithm.h>
13#include <TH1.h>
14
15
16namespace dqm_algorithms
17{
18 struct CheckBinSpike : public dqm_core::Algorithm
19 {
20 CheckBinSpike(const std::string & name);
22 dqm_core::Result * execute( const std::string & , const TObject & , const dqm_core::AlgorithmConfig & );
23 using dqm_core::Algorithm::printDescription;
24 void printDescription(std::ostream& out);
25 void checkBinByBin(const TH1* hist, float &result, float &detectedBin);
26 private:
27 std::string m_name;
28
29
30 };
31
32}
33
34#endif // DQM_ALGORITHMS_CHECKBINSPIKE_H
dqm_core::Result * execute(const std::string &, const TObject &, const dqm_core::AlgorithmConfig &)
void checkBinByBin(const TH1 *hist, float &result, float &detectedBin)
CheckBinSpike(const std::string &name)
void printDescription(std::ostream &out)