Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:07:57

0001 #ifndef DQM_L1TMONITORCLIENT_L1TdeCSCTPGShowerCLIENT_H
0002 #define DQM_L1TMONITORCLIENT_L1TdeCSCTPGShowerCLIENT_H
0003 
0004 #include "FWCore/Framework/interface/Frameworkfwd.h"
0005 #include "FWCore/Framework/interface/Event.h"
0006 #include "FWCore/Framework/interface/MakerMacros.h"
0007 #include "DQMServices/Core/interface/DQMStore.h"
0008 #include "DQMServices/Core/interface/DQMEDHarvester.h"
0009 
0010 #include <string>
0011 
0012 class L1TdeCSCTPGShowerClient : public DQMEDHarvester {
0013 public:
0014   /// Constructor
0015   L1TdeCSCTPGShowerClient(const edm::ParameterSet &ps);
0016 
0017   /// Destructor
0018   ~L1TdeCSCTPGShowerClient() override;
0019 
0020 protected:
0021   void dqmEndLuminosityBlock(DQMStore::IBooker &,
0022                              DQMStore::IGetter &,
0023                              edm::LuminosityBlock const &,
0024                              edm::EventSetup const &) override;
0025   void dqmEndJob(DQMStore::IBooker &, DQMStore::IGetter &) override;
0026 
0027 private:
0028   void book(DQMStore::IBooker &ibooker);
0029   void processHistograms(DQMStore::IGetter &);
0030 
0031   std::string monitorDir_;
0032 
0033   MonitorElement *lctShowerDataNomSummary_eff_;
0034   MonitorElement *alctShowerDataNomSummary_eff_;
0035   MonitorElement *clctShowerDataNomSummary_eff_;
0036   MonitorElement *lctShowerEmulNomSummary_eff_;
0037   MonitorElement *alctShowerEmulNomSummary_eff_;
0038   MonitorElement *clctShowerEmulNomSummary_eff_;
0039 
0040   MonitorElement *lctShowerDataTightSummary_eff_;
0041   MonitorElement *alctShowerDataTightSummary_eff_;
0042   MonitorElement *clctShowerDataTightSummary_eff_;
0043   MonitorElement *lctShowerEmulTightSummary_eff_;
0044   MonitorElement *alctShowerEmulTightSummary_eff_;
0045   MonitorElement *clctShowerEmulTightSummary_eff_;
0046 };
0047 
0048 #endif