File indexing completed on 2024-04-06 12:07:15
0001 #ifndef TimingClient_H
0002 #define TimingClient_H
0003
0004 #include "DQWorkerClient.h"
0005
0006 namespace ecaldqm {
0007
0008 class TimingClient : public DQWorkerClient {
0009 public:
0010 TimingClient();
0011 ~TimingClient() override {}
0012
0013 void producePlots(ProcessType) override;
0014
0015 private:
0016 void setParams(edm::ParameterSet const&) override;
0017
0018 float ebtoleranceMean_;
0019 float eetoleranceMean_;
0020 float toleranceMeanFwd_;
0021 float toleranceRMS_;
0022 float toleranceRMSFwd_;
0023 int minChannelEntries_;
0024 int minChannelEntriesFwd_;
0025 int minTowerEntries_;
0026 int minTowerEntriesFwd_;
0027 float tailPopulThreshold_;
0028 };
0029
0030 }
0031
0032 #endif