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
|
#include "DQMOffline/PFTau/plugins/MatchMETBenchmarkAnalyzer.h"
#include "DataFormats/Common/interface/Handle.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "FWCore/Utilities/interface/InputTag.h"
#include "DataFormats/Candidate/interface/CandidateFwd.h"
#include "DataFormats/METReco/interface/MET.h"
using namespace reco;
using namespace edm;
using namespace std;
MatchMETBenchmarkAnalyzer::MatchMETBenchmarkAnalyzer(const edm::ParameterSet ¶meterSet)
: BenchmarkAnalyzer(parameterSet), MatchMETBenchmark((Benchmark::Mode)parameterSet.getParameter<int>("mode")) {
matchedInputLabel_ = parameterSet.getParameter<edm::InputTag>("MatchCollection");
myColl_ = consumes<View<MET>>(inputLabel_);
myMatchColl_ = consumes<View<MET>>(matchedInputLabel_);
}
void MatchMETBenchmarkAnalyzer::bookHistograms(DQMStore::IBooker &ibooker,
edm::Run const &iRun,
edm::EventSetup const &iSetup) {
BenchmarkAnalyzer::bookHistograms(ibooker, iRun, iSetup);
setup(ibooker);
}
void MatchMETBenchmarkAnalyzer::analyze(const edm::Event &iEvent, const edm::EventSetup &iSetup) {
Handle<View<MET>> collection;
iEvent.getByToken(myColl_, collection);
Handle<View<MET>> matchedCollection;
iEvent.getByToken(myMatchColl_, matchedCollection);
fillOne((*collection)[0], (*matchedCollection)[0]);
}
|