1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef __DQMOffline_PFTau_METBenchmarkAnalyzer__
#define __DQMOffline_PFTau_METBenchmarkAnalyzer__
#include "DQMOffline/PFTau/interface/METBenchmark.h"
#include "DQMOffline/PFTau/plugins/BenchmarkAnalyzer.h"
#include "FWCore/Utilities/interface/EDGetToken.h"
class TH1F;
class METBenchmarkAnalyzer : public BenchmarkAnalyzer, public METBenchmark {
public:
typedef dqm::legacy::DQMStore DQMStore;
METBenchmarkAnalyzer(const edm::ParameterSet ¶meterSet);
void analyze(const edm::Event &, const edm::EventSetup &) override;
void bookHistograms(DQMStore::IBooker &, edm::Run const &, edm::EventSetup const &) override;
edm::EDGetTokenT<edm::View<reco::MET>> myColl_;
};
#endif
|