Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:09:44

0001 #ifndef __DQMOffline_PFTau_BenchmarkAnalyzer__
0002 #define __DQMOffline_PFTau_BenchmarkAnalyzer__
0003 
0004 #include "FWCore/Framework/interface/Frameworkfwd.h"
0005 
0006 #include "FWCore/Utilities/interface/InputTag.h"
0007 
0008 #include "DQMOffline/PFTau/interface/Benchmark.h"
0009 
0010 #include "DQMServices/Core/interface/DQMEDAnalyzer.h"
0011 
0012 /// abtract base class for benchmark analyzers
0013 class BenchmarkAnalyzer : public DQMEDAnalyzer {
0014 public:
0015   /// Constructors
0016   BenchmarkAnalyzer();
0017   explicit BenchmarkAnalyzer(const edm::ParameterSet &);
0018 
0019   /// Destructor
0020   ~BenchmarkAnalyzer() override {}
0021 
0022   void bookHistograms(DQMStore::IBooker &, edm::Run const &, edm::EventSetup const &) override;
0023 
0024 protected:
0025   /// name of the output root file
0026   std::string outputFile_;
0027 
0028   /// input collection
0029   edm::InputTag inputLabel_;
0030 
0031   /// benchmark label
0032   std::string benchmarkLabel_;
0033 
0034   std::string eventInfoFolder_;
0035   std::string subsystemname_;
0036 };
0037 
0038 #endif