Skip to content
Snippets Groups Projects
Commit 3b5d1905 authored by Gabriele Chiodini's avatar Gabriele Chiodini Committed by Graeme Stewart
Browse files

Added RPC_OccupancyHoleFinder (dqm_algorithms-00-07-12)

	* Added RPC_OccupancyHoleFinder
	* Tag dqm_algorithms-00-07-11
parent e62592d0
No related branches found
No related tags found
No related merge requests found
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
*/
#ifndef DQM_ALGORITHMS_RPC_OccupancyHoleFinder_H
#define DQM_ALGORITHMS_RPC_OccupancyHoleFinder_H
#include <dqm_core/Algorithm.h>
class TH1;
class TH2;
namespace dqm_algorithms
{
struct RPC_OccupancyHoleFinder : public dqm_core::Algorithm
{
RPC_OccupancyHoleFinder(const std::string & name);
~RPC_OccupancyHoleFinder();
//overwrites virtual functions
RPC_OccupancyHoleFinder * clone( );
dqm_core::Result * execute( const std::string & , const TObject & , const dqm_core::AlgorithmConfig & );
using dqm_core::Algorithm::printDescription;
void printDescription(std::ostream& out);
std::string getChamberName(const TH2* histo, int biny);
private:
std::string m_name;
};
}
#endif // DQM_ALGORITHMS_RPC_OccupancyHoleFinder_H
......@@ -25,6 +25,7 @@
#include "dqm_algorithms/BinContentDump.h"
#include "dqm_algorithms/OccupancyHoleFinder.h"
#include "dqm_algorithms/MDT_OccupancyHoleFinder.h"
#include "dqm_algorithms/RPC_OccupancyHoleFinder.h"
#include "dqm_algorithms/BinDump.h"
#include "dqm_algorithms/BinPrint.h"
#include "dqm_algorithms/BinThresh.h"
......
......@@ -20,6 +20,7 @@
<class name="dqm_algorithms::BinContentDump"/>
<class name="dqm_algorithms::OccupancyHoleFinder"/>
<class name="dqm_algorithms::MDT_OccupancyHoleFinder"/>
<class name="dqm_algorithms::RPC_OccupancyHoleFinder"/>
<class name="dqm_algorithms::BinDump"/>
<class name="dqm_algorithms::BinPrint"/>
<class name="dqm_algorithms::BinThresh"/>
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment