Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef SummaryClient_H
0002 #define SummaryClient_H
0003 
0004 #include "DQWorkerClient.h"
0005 
0006 namespace ecaldqm {
0007 
0008   class SummaryClient : public DQWorkerClient {
0009   public:
0010     SummaryClient();
0011     ~SummaryClient() override {}
0012 
0013     void resetMEs() override;
0014     void producePlots(ProcessType) override;
0015 
0016   private:
0017     void setParams(edm::ParameterSet const&) override;
0018 
0019     float towerBadFraction_;
0020     float fedBadFraction_;
0021   };
0022 
0023 }  // namespace ecaldqm
0024 
0025 #endif