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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
// -*- C++ -*-
//
// Package: SiPixelPhase1GeometryDebug
// Class : SiPixelPhase1GeometryDebug
//
// Original Author: Marcel Schneider
#include "DQM/SiPixelPhase1Common/interface/SiPixelPhase1Base.h"
#include "FWCore/Framework/interface/MakerMacros.h"
// This small plugin plots out varois geometry quantities against each other.
// This is useful to see where a specific module or ROC ends up in a 2D map.
class SiPixelPhase1GeometryDebug : public SiPixelPhase1Base {
enum { DETID, LADBLD, ROC, FED };
public:
explicit SiPixelPhase1GeometryDebug(const edm::ParameterSet& conf) : SiPixelPhase1Base(conf) {}
void analyze(const edm::Event& iEvent, const edm::EventSetup&) override {
auto& all = geometryInterface.allModules();
GeometryInterface::Column ladder = geometryInterface.intern("PXLadder");
GeometryInterface::Column blade = geometryInterface.intern("PXBlade");
GeometryInterface::Column roc = geometryInterface.intern("ROC");
GeometryInterface::Column fed = geometryInterface.intern("FED");
for (auto iq : all) {
auto rocno = geometryInterface.extract(roc, iq);
auto fedno = geometryInterface.extract(fed, iq);
auto detid = iq.sourceModule.rawId();
auto ladbld = geometryInterface.extract(ladder, iq);
if (ladbld.second == GeometryInterface::UNDEFINED)
ladbld = geometryInterface.extract(blade, iq);
histo[DETID].fill((float)detid, iq.sourceModule, &iEvent, iq.col, iq.row);
histo[LADBLD].fill((float)ladbld.second, iq.sourceModule, &iEvent, iq.col, iq.row);
histo[ROC].fill((float)rocno.second, iq.sourceModule, &iEvent, iq.col, iq.row);
histo[FED].fill((float)fedno.second, iq.sourceModule, &iEvent, iq.col, iq.row);
}
}
};
DEFINE_FWK_MODULE(SiPixelPhase1GeometryDebug);
|