TestPulseClient

Macros

Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
#ifndef TestPulseClient_H
#define TestPulseClient_H

#include "DQWorkerClient.h"

namespace ecaldqm {
  class TestPulseClient : public DQWorkerClient {
  public:
    TestPulseClient();
    ~TestPulseClient() override {}

    void producePlots(ProcessType) override;

  private:
    void setParams(edm::ParameterSet const&) override;

    std::map<int, unsigned> gainToME_;
    std::map<int, unsigned> pnGainToME_;

    int minChannelEntries_;
    std::vector<float> amplitudeThreshold_;
    std::vector<float> toleranceRMS_;
    std::vector<float> PNAmplitudeThreshold_;
    std::vector<float> tolerancePNRMS_;
  };

}  // namespace ecaldqm

#endif