Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef CalibrationSummaryClient_H
0002 #define CalibrationSummaryClient_H
0003 
0004 #include "DQWorkerClient.h"
0005 
0006 namespace ecaldqm {
0007 
0008   class CalibrationSummaryClient : public DQWorkerClient {
0009   public:
0010     CalibrationSummaryClient();
0011     ~CalibrationSummaryClient() override {}
0012 
0013     void producePlots(ProcessType) override;
0014 
0015   private:
0016     void setParams(edm::ParameterSet const&) override;
0017 
0018     std::map<int, unsigned> laserWlToME_;
0019     std::map<int, unsigned> ledWlToME_;
0020     std::map<int, unsigned> tpGainToME_;
0021     std::map<int, unsigned> tpPNGainToME_;
0022     std::map<int, unsigned> pedGainToME_;
0023     std::map<int, unsigned> pedPNGainToME_;
0024   };
0025 
0026 }  // namespace ecaldqm
0027 
0028 #endif