File indexing completed on 2024-04-06 12:09:44
0001 #ifndef __DQMOffline_PFTau_MatchMETBenchmarkAnalyzer__
0002 #define __DQMOffline_PFTau_MatchMETBenchmarkAnalyzer__
0003
0004 #include "DQMOffline/PFTau/interface/MatchMETBenchmark.h"
0005 #include "DQMOffline/PFTau/plugins/BenchmarkAnalyzer.h"
0006
0007 #include "FWCore/Utilities/interface/EDGetToken.h"
0008
0009 class TH1F;
0010
0011 class MatchMETBenchmarkAnalyzer : public BenchmarkAnalyzer, public MatchMETBenchmark {
0012 public:
0013 typedef dqm::legacy::DQMStore DQMStore;
0014
0015 MatchMETBenchmarkAnalyzer(const edm::ParameterSet ¶meterSet);
0016
0017 void analyze(const edm::Event &, const edm::EventSetup &) override;
0018 void bookHistograms(DQMStore::IBooker &, edm::Run const &, edm::EventSetup const &) override;
0019
0020 protected:
0021 edm::EDGetTokenT<edm::View<reco::MET>> myColl_;
0022 edm::EDGetTokenT<edm::View<reco::MET>> myMatchColl_;
0023 edm::InputTag matchedInputLabel_;
0024 };
0025
0026 #endif