Back to home page

Project CMSSW displayed by LXR

 
 

    


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

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