ATLAS Offline Software
Loading...
Searching...
No Matches
RPC_OccupancyHoleFinder.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_RPC_OccupancyHoleFinder_H
6#define DQM_ALGORITHMS_RPC_OccupancyHoleFinder_H
7
8#include <dqm_core/Algorithm.h>
9#include <string>
10#include <iosfwd>
11
12class TH1;
13class TH2;
14
15namespace dqm_algorithms
16{
17 struct RPC_OccupancyHoleFinder : public dqm_core::Algorithm
18 {
19 RPC_OccupancyHoleFinder(const std::string & name);
21
22 //overwrites virtual functions
24 dqm_core::Result * execute( const std::string & , const TObject & , const dqm_core::AlgorithmConfig & );
25 using dqm_core::Algorithm::printDescription;
26 void printDescription(std::ostream& out);
27
28 std::string getChamberName(const TH2* histo, int biny);
29
30 private:
31 std::string m_name;
32 };
33}
34
35#endif // DQM_ALGORITHMS_RPC_OccupancyHoleFinder_H
dqm_core::Result * execute(const std::string &, const TObject &, const dqm_core::AlgorithmConfig &)
std::string getChamberName(const TH2 *histo, int biny)