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
30
|
#ifndef SiStripMonitorSummary_SiStripLorentzAngleDQM_h
#define SiStripMonitorSummary_SiStripLorentzAngleDQM_h
#include "DQM/SiStripMonitorSummary/interface/SiStripBaseCondObjDQM.h"
#include "CondFormats/DataRecord/interface/SiStripLorentzAngleRcd.h"
#include "CondFormats/SiStripObjects/interface/SiStripLorentzAngle.h"
class SiStripLorentzAngleDQM : public SiStripBaseCondObjDQMGet<SiStripLorentzAngle, SiStripLorentzAngleRcd> {
public:
SiStripLorentzAngleDQM(edm::ESGetToken<SiStripLorentzAngle, SiStripLorentzAngleRcd> token,
edm::RunNumber_t iRun,
edm::ParameterSet const &hPSet,
edm::ParameterSet const &fPSet,
const TrackerTopology *tTopo,
const TkDetMap *tkDetMap);
~SiStripLorentzAngleDQM() override;
void getActiveDetIds(const edm::EventSetup &eSetup) override;
void fillModMEs(const std::vector<uint32_t> &selectedDetIds) override {}
void fillMEsForDet(const ModMEs &selModME_, uint32_t selDetId_) override {}
void fillSummaryMEs(const std::vector<uint32_t> &selectedDetIds) override;
void fillMEsForLayer(
/*std::map<uint32_t, ModMEs> selModMEsMap_, */ uint32_t selDetId_) override;
};
#endif
|