File indexing completed on 2024-04-06 12:07:15
0001 #ifndef PNIntegrityClient_H
0002 #define PNIntegrityClient_H
0003
0004 #include "DQWorkerClient.h"
0005
0006 namespace ecaldqm {
0007 class PNIntegrityClient : public DQWorkerClient {
0008 public:
0009 PNIntegrityClient();
0010 ~PNIntegrityClient() override {}
0011
0012 void producePlots(ProcessType) override;
0013
0014 private:
0015 void setParams(edm::ParameterSet const&) override;
0016
0017 float errFractionThreshold_;
0018 };
0019 }
0020
0021 #endif