1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#ifndef __DQMOffline_PFTau_BenchmarkAnalyzer__
#define __DQMOffline_PFTau_BenchmarkAnalyzer__
#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "FWCore/Utilities/interface/InputTag.h"
#include "DQMOffline/PFTau/interface/Benchmark.h"
#include "DQMServices/Core/interface/DQMEDAnalyzer.h"
/// abtract base class for benchmark analyzers
class BenchmarkAnalyzer : public DQMEDAnalyzer {
public:
/// Constructors
BenchmarkAnalyzer();
explicit BenchmarkAnalyzer(const edm::ParameterSet &);
/// Destructor
~BenchmarkAnalyzer() override {}
void bookHistograms(DQMStore::IBooker &, edm::Run const &, edm::EventSetup const &) override;
protected:
/// name of the output root file
std::string outputFile_;
/// input collection
edm::InputTag inputLabel_;
/// benchmark label
std::string benchmarkLabel_;
std::string eventInfoFolder_;
std::string subsystemname_;
};
#endif
|