File indexing completed on 2023-03-17 10:54:26
0001 #ifndef RawDataClient_H
0002 #define RawDataClient_H
0003
0004 #include "DQWorkerClient.h"
0005
0006 namespace ecaldqm {
0007
0008 class RawDataClient : public DQWorkerClient {
0009 public:
0010 RawDataClient();
0011 ~RawDataClient() override {}
0012
0013 void producePlots(ProcessType) override;
0014
0015 private:
0016 void setParams(edm::ParameterSet const&) override;
0017
0018 float synchErrThresholdFactor_;
0019 };
0020
0021 }
0022
0023 #endif