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
|
#ifndef CalibrationSummaryClient_H
#define CalibrationSummaryClient_H
#include "DQWorkerClient.h"
namespace ecaldqm {
class CalibrationSummaryClient : public DQWorkerClient {
public:
CalibrationSummaryClient();
~CalibrationSummaryClient() override {}
void producePlots(ProcessType) override;
private:
void setParams(edm::ParameterSet const&) override;
std::map<int, unsigned> laserWlToME_;
std::map<int, unsigned> ledWlToME_;
std::map<int, unsigned> tpGainToME_;
std::map<int, unsigned> tpPNGainToME_;
std::map<int, unsigned> pedGainToME_;
std::map<int, unsigned> pedPNGainToME_;
};
} // namespace ecaldqm
#endif
|