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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
|
// system include files
#include <cmath>
#include <iostream>
#include <memory>
#include <sstream>
#include <vector>
// user include files
#include "CalibTracker/SiStripCommon/interface/SiStripDetInfoFileReader.h"
#include "DQMServices/Core/interface/DQMOneEDAnalyzer.h"
#include "DQMServices/Core/interface/DQMStore.h"
#include "DataFormats/TrackerCommon/interface/SiStripSubStructure.h"
#include "FWCore/Framework/interface/ESHandle.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "FWCore/Framework/interface/MakerMacros.h"
#include "FWCore/ParameterSet/interface/FileInPath.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "FWCore/ServiceRegistry/interface/Service.h"
#include "Geometry/Records/interface/TrackerDigiGeometryRecord.h"
#include "Geometry/TrackerGeometryBuilder/interface/StripGeomDetUnit.h"
#include "Geometry/TrackerGeometryBuilder/interface/TrackerGeometry.h"
// root inlcudes
#include "TPostScript.h"
#include "TCanvas.h"
//******** Single include for the TkMap *************
#include "DQM/SiStripCommon/interface/TkHistoMap.h"
//***************************************************
//
// class declaration
//
class testTkHistoMap : public DQMOneEDAnalyzer<> {
public:
explicit testTkHistoMap(const edm::ParameterSet&);
~testTkHistoMap() override = default;
void bookHistograms(DQMStore::IBooker&, edm::Run const&, edm::EventSetup const&) override {}
void analyze(const edm::Event&, const edm::EventSetup&) override;
static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
void endJob(void) override;
private:
void read(const TkDetMap* tkDetMap);
void create(const TkDetMap* tkDetMap);
const edm::ESGetToken<TkDetMap, TrackerTopologyRcd> tTopoToken;
const edm::ESGetToken<TrackerGeometry, TrackerDigiGeometryRecord> tkGeoToken;
const bool readFromFile_;
const edm::FileInPath fp_;
std::unique_ptr<TkHistoMap> tkhistoID, tkhisto, tkhistoBis, tkhistoZ, tkhistoPhi, tkhistoR, tkhistoCheck;
};
void testTkHistoMap::fillDescriptions(edm::ConfigurationDescriptions& descriptions) {
edm::ParameterSetDescription desc;
desc.add<bool>("readFromFile", false)->setComment("read the map from ROOT file");
desc.add<edm::FileInPath>("inputFile", edm::FileInPath(SiStripDetInfoFileReader::kDefaultFile))
->setComment("source of the tkhisto map values");
descriptions.add("testglobalrunsummary", desc);
}
//
testTkHistoMap::testTkHistoMap(const edm::ParameterSet& iConfig)
: tTopoToken(esConsumes()),
tkGeoToken(esConsumes()),
readFromFile_(iConfig.getParameter<bool>("readFromFile")),
fp_(iConfig.getParameter<edm::FileInPath>("inputFile")) {}
void testTkHistoMap::create(const TkDetMap* tkDetMap) {
tkhistoID = std::make_unique<TkHistoMap>(tkDetMap, "detIdV", "detIdV", -1);
tkhisto = std::make_unique<TkHistoMap>(tkDetMap, "detId", "detId", -1);
tkhistoBis = std::make_unique<TkHistoMap>(
tkDetMap,
"detIdBis",
"detIdBis",
0,
1); //here the baseline (the value of the empty,not assigned bins) is put to -1 (default is zero)
tkhistoZ = std::make_unique<TkHistoMap>(tkDetMap, "Zmap", "Zmap");
tkhistoPhi = std::make_unique<TkHistoMap>(tkDetMap, "Phi", "Phi");
tkhistoR = std::make_unique<TkHistoMap>(
tkDetMap,
"Rmap",
"Rmap",
-99.); //here the baseline (the value of the empty,not assigned bins) is put to -99 (default is zero)
tkhistoCheck = std::make_unique<TkHistoMap>(tkDetMap, "check", "check");
}
/*Check that is possible to load in tkhistomaps histograms already stored in a DQM root file (if the folder and name are known)*/
void testTkHistoMap::read(const TkDetMap* tkDetMap) {
edm::Service<DQMStore>().operator->()->open("test.root");
tkhistoID = std::make_unique<TkHistoMap>(tkDetMap);
tkhisto = std::make_unique<TkHistoMap>(tkDetMap);
tkhistoBis = std::make_unique<TkHistoMap>(tkDetMap);
tkhistoZ = std::make_unique<TkHistoMap>(tkDetMap);
tkhistoPhi = std::make_unique<TkHistoMap>(tkDetMap);
tkhistoR = std::make_unique<TkHistoMap>(tkDetMap);
tkhistoCheck = std::make_unique<TkHistoMap>(tkDetMap);
tkhistoID->loadTkHistoMap("detIdV", "detIdV");
tkhisto->loadTkHistoMap("detId", "detId");
tkhistoBis->loadTkHistoMap("detIdBis", "detIdBis", true);
tkhistoZ->loadTkHistoMap("Zmap", "Zmap");
tkhistoPhi->loadTkHistoMap("Phi", "Phi");
tkhistoR->loadTkHistoMap("Rmap", "Rmap");
tkhistoCheck->loadTkHistoMap("check", "check");
}
void testTkHistoMap::endJob(void) {
/*Test extraction of detid from histogram title and ix, iy*/
size_t ilayer = 1;
std::string histoTitle = tkhisto->getMap(ilayer)->getTitle();
uint32_t detB = tkhisto->getDetId(ilayer, 5, 5);
uint32_t detA = tkhisto->getDetId(histoTitle, 5, 5);
if (detA == 0 || detA != detB)
edm::LogError("testTkHistoMap") << " for layer " << ilayer << " the extracted detid in a bin is wrong " << detA
<< " " << detB << std::endl;
/*Test Drawing functions*/
TCanvas C("c", "c");
C.Divide(3, 3);
C.Update();
TPostScript ps("test.ps", 121);
ps.NewPage();
for (size_t ilayer = 1; ilayer < 34; ++ilayer) {
C.cd(1);
tkhisto->getMap(ilayer)->getTProfile2D()->Draw("TEXT");
C.cd(2);
tkhistoZ->getMap(ilayer)->getTProfile2D()->Draw("BOXCOL");
C.cd(3);
tkhistoPhi->getMap(ilayer)->getTProfile2D()->Draw("BOXCOL");
C.cd(4);
tkhistoR->getMap(ilayer)->getTProfile2D()->Draw("BOXCOL");
C.cd(5);
tkhistoCheck->getMap(ilayer)->getTProfile2D()->Draw("BOXCOL");
C.cd(6);
tkhistoBis->getMap(ilayer)->getTProfile2D()->Draw("BOXCOL");
C.Update();
ps.NewPage();
}
ps.Close();
if (!readFromFile_)
edm::Service<DQMStore>().operator->()->save("test.root");
tkhisto->saveAsCanvas("test.canvas.root", "LEGO", "RECREATE");
tkhistoBis->saveAsCanvas("test.canvas.root", "LEGO", "RECREATE");
tkhistoZ->saveAsCanvas("test.canvas.root", "LEGO", "UPDATE");
tkhistoPhi->saveAsCanvas("test.canvas.root", "LEGO", "UPDATE");
tkhistoR->saveAsCanvas("test.canvas.root", "LEGO", "UPDATE");
tkhistoCheck->saveAsCanvas("test.canvas.root", "LEGO", "UPDATE");
/* test Dump in TkMap*/
#include "CommonTools/TrackerMap/interface/TrackerMap.h"
TrackerMap tkmap, tkmapZ, tkmapPhi, tkmapR;
tkmap.setPalette(1);
tkmapZ.setPalette(2);
tkmapPhi.setPalette(2);
tkmapR.setPalette(2);
tkhisto->dumpInTkMap(&tkmap);
tkhistoZ->dumpInTkMap(&tkmapZ);
tkhistoPhi->dumpInTkMap(&tkmapPhi);
tkhistoR->dumpInTkMap(&tkmapR);
tkmap.save(true, 0, 0, "testTkMap.png");
tkmapZ.save(true, 0, 0, "testTkMapZ.png");
tkmapPhi.save(true, 0, 0, "testTkMapPhi.png");
tkmapR.save(true, 0, 0, "testTkMapR.png");
}
//
// member functions
//
// // ------------ method called to produce the data ------------
void testTkHistoMap::analyze(const edm::Event& iEvent, const edm::EventSetup& iSetup) {
const TkDetMap* tkDetMap = &iSetup.getData(tTopoToken);
if (!readFromFile_) {
create(tkDetMap);
} else {
read(tkDetMap);
}
if (readFromFile_)
return;
const TrackerGeometry* tkgeom = &iSetup.getData(tkGeoToken);
float value;
LocalPoint localPos(0., 0., 0.);
GlobalPoint globalPos;
tkhisto->fillFromAscii(fp_.fullPath());
tkhistoBis->fillFromAscii(fp_.fullPath());
for (const auto det : tkgeom->detUnits()) {
const StripGeomDetUnit* stripDet = dynamic_cast<const StripGeomDetUnit*>(det);
if (stripDet != nullptr) {
globalPos = stripDet->surface().toGlobal(localPos);
const DetId id = stripDet->geographicalId();
value = id % 1000000;
tkhistoID->fill(id, value);
//tkhistoBis->fill(id,value);
tkhistoZ->fill(id, globalPos.z());
tkhistoPhi->fill(id, globalPos.phi());
tkhistoR->fill(id, globalPos.perp());
tkhistoCheck->add(id, 1.);
tkhistoCheck->add(id, 1.);
edm::LogInfo("testTkHistoMap") << "detid " << id.rawId() << " pos z " << globalPos.z() << " phi "
<< globalPos.phi() << " r " << globalPos.perp() << std::endl;
if (value != tkhistoID->getValue(id))
edm::LogError("testTkHistoMap") << " input value " << value << " differs from read value "
<< tkhistoID->getValue(id) << std::endl;
// For usage that reset histo content use setBinContent instead than fill
/*
tkhisto->setBinContent(id,value);
tkhistoZ->setBinContent(id,globalPos.z());
tkhistoPhi->setBinContent(id,globalPos.phi());
tkhistoR->setBinContent(id,globalPos.perp());
*/
}
}
}
//define this as a plug-in
DEFINE_FWK_MODULE(testTkHistoMap);
|