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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
|
/*!
\file SiPixelTemplateDBObject_PayloadInspector
\Payload Inspector Plugin for SiPixelTemplateDBObject
\author M. Musich
\version $Revision: 1.0 $
\date $Date: 2020/04/16 18:00:00 $
*/
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "CondCore/Utilities/interface/PayloadInspectorModule.h"
#include "CondCore/Utilities/interface/PayloadInspector.h"
#include "CondCore/CondDB/interface/Time.h"
#include "CondCore/SiPixelPlugins/interface/SiPixelPayloadInspectorHelper.h"
#include "CondCore/SiPixelPlugins/interface/SiPixelTemplateHelper.h"
#include "DQM/TrackerRemapper/interface/Phase1PixelMaps.h"
#include "CalibTracker/StandaloneTrackerTopology/interface/StandaloneTrackerTopology.h"
// the data format of the condition to be inspected
#include "CondFormats/SiPixelObjects/interface/SiPixelTemplateDBObject.h"
#include "CondFormats/SiPixelTransient/interface/SiPixelTemplate.h"
#include "DataFormats/SiPixelDetId/interface/PixelSubdetector.h"
#include "DataFormats/DetId/interface/DetId.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include <memory>
#include <map>
#include <sstream>
#include <iostream>
#include <algorithm>
// include ROOT
#include "TH2.h"
#include "TProfile2D.h"
#include "TH2Poly.h"
#include "TGraph.h"
#include "TH2F.h"
#include "TLegend.h"
#include "TCanvas.h"
#include "TLine.h"
#include "TGraph.h"
#include "TStyle.h"
#include "TLatex.h"
#include "TPave.h"
#include "TPaveStats.h"
#include "TGaxis.h"
namespace {
using namespace cond::payloadInspector;
/************************************************
test class
*************************************************/
class SiPixelTemplateDBObjectTest : public Histogram1D<SiPixelTemplateDBObject, SINGLE_IOV> {
public:
SiPixelTemplateDBObjectTest()
: Histogram1D<SiPixelTemplateDBObject, SINGLE_IOV>(
"SiPixelTemplateDBObject test", "SiPixelTemplateDBObject test", 10, 0.0, 100.) {}
bool fill() override {
auto tag = PlotBase::getTag<0>();
for (auto const& iov : tag.iovs) {
std::vector<SiPixelTemplateStore> thePixelTemp_;
std::shared_ptr<SiPixelTemplateDBObject> payload = Base::fetchPayload(std::get<1>(iov));
if (payload.get()) {
if (!SiPixelTemplate::pushfile(*payload, thePixelTemp_)) {
throw cms::Exception("SiPixelTemplateDBObject_PayloadInspector")
<< "\nERROR: Templates not filled correctly. Check the conditions. Using "
"SiPixelTemplateDBObject version "
<< payload->version() << "\n\n";
}
SiPixelTemplate templ(thePixelTemp_);
for (const auto& theTemp : thePixelTemp_) {
std::cout << "\n\n"
<< "Template ID = " << theTemp.head.ID << ", Template Version " << theTemp.head.templ_version
<< ", Bfield = " << theTemp.head.Bfield << ", NTy = " << theTemp.head.NTy
<< ", NTyx = " << theTemp.head.NTyx << ", NTxx = " << theTemp.head.NTxx
<< ", Dtype = " << theTemp.head.Dtype << ", Bias voltage " << theTemp.head.Vbias
<< ", temperature " << theTemp.head.temperature << ", fluence " << theTemp.head.fluence
<< ", Q-scaling factor " << theTemp.head.qscale << ", 1/2 multi dcol threshold "
<< theTemp.head.s50 << ", 1/2 single dcol threshold " << theTemp.head.ss50 << ", y Lorentz Width "
<< theTemp.head.lorywidth << ", y Lorentz Bias " << theTemp.head.lorybias << ", x Lorentz width "
<< theTemp.head.lorxwidth << ", x Lorentz Bias " << theTemp.head.lorxbias
<< ", Q/Q_avg fractions for Qbin defs " << theTemp.head.fbin[0] << ", " << theTemp.head.fbin[1]
<< ", " << theTemp.head.fbin[2] << ", pixel x-size " << theTemp.head.xsize << ", y-size "
<< theTemp.head.ysize << ", zsize " << theTemp.head.zsize << "\n"
<< std::endl;
}
std::map<unsigned int, short> templMap = payload->getTemplateIDs();
for (auto const& entry : templMap) {
std::cout << "DetID: " << entry.first << " template ID: " << entry.second << std::endl;
templ.interpolate(entry.second, 0.f, 0.f, 1.f, 1.f);
std::cout << "\t lorywidth " << templ.lorywidth() << " lorxwidth: " << templ.lorxwidth() << " lorybias "
<< templ.lorybias() << " lorxbias: " << templ.lorxbias() << "\n"
<< std::endl;
}
fillWithValue(1.);
} // payload
} // iovs
return true;
} // fill
};
/************************************************
// testing TH2Poly classes for plotting
*************************************************/
template <SiPixelPI::DetType myType>
class SiPixelTemplateLA : public PlotImage<SiPixelTemplateDBObject, SINGLE_IOV> {
struct header_info {
int ID; //!< template ID number
float lorywidth; //!< estimate of y-lorentz width for optimal resolution
float lorxwidth; //!< estimate of x-lorentz width for optimal resolution
float lorybias; //!< estimate of y-lorentz bias
float lorxbias; //!< estimate of x-lorentz bias
float Vbias; //!< detector bias potential in Volts
float temperature; //!< detector temperature in deg K
int templ_version; //!< Version number of the template to ensure code compatibility
float Bfield; //!< Bfield in Tesla
float xsize; //!< pixel size (for future use in upgraded geometry)
float ysize; //!< pixel size (for future use in upgraded geometry)
float zsize; //!< pixel size (for future use in upgraded geometry)
};
public:
SiPixelTemplateLA() : PlotImage<SiPixelTemplateDBObject, SINGLE_IOV>("SiPixelTemplate assumed value of uH") {}
bool fill() override {
gStyle->SetPalette(kRainBow);
TGaxis::SetMaxDigits(2);
auto tag = PlotBase::getTag<0>();
auto iov = tag.iovs.front();
const auto& tagname = tag.name;
std::vector<SiPixelTemplateStore> thePixelTemp_;
std::shared_ptr<SiPixelTemplateDBObject> payload = fetchPayload(std::get<1>(iov));
if (payload.get()) {
if (!SiPixelTemplate::pushfile(*payload, thePixelTemp_)) {
throw cms::Exception("SiPixelTemplateDBObject_PayloadInspector")
<< "\nERROR: Templates not filled correctly. Check the conditions. Using "
"SiPixelTemplateDBObject version "
<< payload->version() << "\n\n";
}
// store the map of ID / interesting quantities
SiPixelTemplate templ(thePixelTemp_);
std::map<int, header_info> theInfos;
for (const auto& theTemp : thePixelTemp_) {
header_info info;
info.ID = theTemp.head.ID;
info.lorywidth = theTemp.head.lorywidth;
info.lorxwidth = theTemp.head.lorxwidth;
info.lorybias = theTemp.head.lorybias;
info.lorxbias = theTemp.head.lorxbias;
info.Vbias = theTemp.head.Vbias;
info.temperature = theTemp.head.temperature;
info.templ_version = theTemp.head.templ_version;
info.Bfield = theTemp.head.Bfield;
info.xsize = theTemp.head.xsize;
info.ysize = theTemp.head.ysize;
info.zsize = theTemp.head.zsize;
theInfos[theTemp.head.ID] = info;
}
// Book the TH2Poly
Phase1PixelMaps theMaps("");
if (myType == SiPixelPI::t_all) {
theMaps.resetOption("COLZA L");
} else {
theMaps.resetOption("COLZL");
}
if (myType == SiPixelPI::t_barrel) {
theMaps.bookBarrelHistograms("templateLABarrel", "#muH", "#mu_{H} [1/T]");
} else if (myType == SiPixelPI::t_forward) {
theMaps.bookForwardHistograms("templateLAForward", "#muH", "#mu_{H} [1/T]");
} else if (myType == SiPixelPI::t_all) {
theMaps.bookBarrelHistograms("templateLA", "#muH", "#mu_{H} [1/T]");
theMaps.bookForwardHistograms("templateLA", "#muH", "#mu_{H} [1/T]");
} else {
edm::LogError("SiPixelTemplateDBObject_PayloadInspector")
<< " un-recognized detector type " << myType << std::endl;
return false;
}
std::map<unsigned int, short> templMap = payload->getTemplateIDs();
if (templMap.size() == SiPixelPI::phase0size || templMap.size() > SiPixelPI::phase1size) {
edm::LogError("SiPixelTemplateDBObject_PayloadInspector")
<< "There are " << templMap.size()
<< " DetIds in this payload. SiPixelTempate Lorentz Angle maps are not supported for non-Phase1 Pixel "
"geometries !";
TCanvas canvas("Canv", "Canv", 1200, 1000);
SiPixelPI::displayNotSupported(canvas, templMap.size());
std::string fileName(m_imageFileName);
canvas.SaveAs(fileName.c_str());
return false;
} else {
if (templMap.size() < SiPixelPI::phase1size) {
edm::LogWarning("SiPixelTemplateDBObject_PayloadInspector")
<< "\n ********* WARNING! ********* \n There are " << templMap.size() << " DetIds in this payload !"
<< "\n **************************** \n";
}
}
for (auto const& entry : templMap) {
templ.interpolate(entry.second, 0.f, 0.f, 1.f, 1.f);
//mu_H = lorentz width / sensor thickness / B field
float uH = templ.lorxwidth() / theInfos[entry.second].zsize / theInfos[entry.second].Bfield;
COUT << "uH: " << uH << " lor x width:" << templ.lorxwidth() << " z size: " << theInfos[entry.second].zsize
<< " B-field: " << theInfos[entry.second].Bfield << std::endl;
auto detid = DetId(entry.first);
if (myType == SiPixelPI::t_all) {
if ((detid.subdetId() == PixelSubdetector::PixelBarrel)) {
theMaps.fillBarrelBin("templateLA", entry.first, uH);
}
if ((detid.subdetId() == PixelSubdetector::PixelEndcap)) {
theMaps.fillForwardBin("templateLA", entry.first, uH);
}
} else if ((detid.subdetId() == PixelSubdetector::PixelBarrel) && (myType == SiPixelPI::t_barrel)) {
theMaps.fillBarrelBin("templateLABarrel", entry.first, uH);
} else if ((detid.subdetId() == PixelSubdetector::PixelEndcap) && (myType == SiPixelPI::t_forward)) {
theMaps.fillForwardBin("templateLAForward", entry.first, uH);
}
}
theMaps.beautifyAllHistograms();
TCanvas canvas("Canv", "Canv", (myType == SiPixelPI::t_barrel) ? 1200 : 1600, 1000);
if (myType == SiPixelPI::t_barrel) {
theMaps.drawBarrelMaps("templateLABarrel", canvas);
} else if (myType == SiPixelPI::t_forward) {
theMaps.drawForwardMaps("templateLAForward", canvas);
} else if (myType == SiPixelPI::t_all) {
theMaps.drawSummaryMaps("templateLA", canvas);
}
canvas.cd();
TPaveText ksPt(0, 0, 0.88, 0.04, "NDC");
ksPt.SetBorderSize(0);
ksPt.SetFillColor(0);
const char* textToAdd = Form("Template Tag: #color[2]{%s}, IOV: #color[2]{%s}. Payload hash: #color[2]{%s}",
tagname.c_str(),
std::to_string(std::get<0>(iov)).c_str(),
(std::get<1>(iov)).c_str());
ksPt.AddText(textToAdd);
ksPt.Draw();
canvas.cd();
std::string fileName(m_imageFileName);
canvas.SaveAs(fileName.c_str());
}
return true;
} // fill
};
using SiPixelTemplateLABPixMap = SiPixelTemplateLA<SiPixelPI::t_barrel>;
using SiPixelTemplateLAFPixMap = SiPixelTemplateLA<SiPixelPI::t_forward>;
using SiPixelTemplateLAMap = SiPixelTemplateLA<SiPixelPI::t_all>;
using namespace templateHelper;
//************************************************
// Full Pixel Tracker Map of Template IDs
// ***********************************************/
using SiPixelTemplateIDsFullPixelMap =
SiPixelFullPixelIDMap<SiPixelTemplateDBObject, SiPixelTemplateStore, SiPixelTemplate>;
//************************************************
// Display of Template Titles
// **********************************************/
using SiPixelTemplateTitles_Display =
SiPixelTitles_Display<SiPixelTemplateDBObject, SiPixelTemplateStore, SiPixelTemplate>;
//***********************************************
// Display of Template Header
// **********************************************/
using SiPixelTemplateHeaderTable = SiPixelHeaderTable<SiPixelTemplateDBObject, SiPixelTemplateStore, SiPixelTemplate>;
//***********************************************
// TH2Poly Map of IDs
//***********************************************/
using SiPixelTemplateIDsBPixMap = SiPixelIDs<SiPixelTemplateDBObject, SiPixelPI::t_barrel>;
using SiPixelTemplateIDsFPixMap = SiPixelIDs<SiPixelTemplateDBObject, SiPixelPI::t_forward>;
using SiPixelTemplateIDsMap = SiPixelIDs<SiPixelTemplateDBObject, SiPixelPI::t_all>;
//************************************************
// TH2Poly Map of qScale
//***********************************************/
using SiPixelTemplateQScaleBPixMap = SiPixelTemplateHeaderInfo<SiPixelTemplateDBObject,
SiPixelTemplateStore,
SiPixelTemplate,
SiPixelPI::t_barrel,
headerParam::k_qscale>;
using SiPixelTemplateQScaleFPixMap = SiPixelTemplateHeaderInfo<SiPixelTemplateDBObject,
SiPixelTemplateStore,
SiPixelTemplate,
SiPixelPI::t_forward,
headerParam::k_qscale>;
using SiPixelTemplateQScaleMap = SiPixelTemplateHeaderInfo<SiPixelTemplateDBObject,
SiPixelTemplateStore,
SiPixelTemplate,
SiPixelPI::t_all,
headerParam::k_qscale>;
//************************************************
// TH2Poly Map of Vbias
//***********************************************/
using SiPixelTemplateVbiasBPixMap = SiPixelTemplateHeaderInfo<SiPixelTemplateDBObject,
SiPixelTemplateStore,
SiPixelTemplate,
SiPixelPI::t_barrel,
headerParam::k_Vbias>;
using SiPixelTemplateVbiasFPixMap = SiPixelTemplateHeaderInfo<SiPixelTemplateDBObject,
SiPixelTemplateStore,
SiPixelTemplate,
SiPixelPI::t_forward,
headerParam::k_Vbias>;
using SiPixelTemplateVbiasMap = SiPixelTemplateHeaderInfo<SiPixelTemplateDBObject,
SiPixelTemplateStore,
SiPixelTemplate,
SiPixelPI::t_all,
headerParam::k_Vbias>;
} // namespace
// Register the classes as boost python plugin
PAYLOAD_INSPECTOR_MODULE(SiPixelTemplateDBObject) {
PAYLOAD_INSPECTOR_CLASS(SiPixelTemplateDBObjectTest);
PAYLOAD_INSPECTOR_CLASS(SiPixelTemplateIDsFullPixelMap);
PAYLOAD_INSPECTOR_CLASS(SiPixelTemplateTitles_Display);
PAYLOAD_INSPECTOR_CLASS(SiPixelTemplateHeaderTable);
PAYLOAD_INSPECTOR_CLASS(SiPixelTemplateIDsMap);
PAYLOAD_INSPECTOR_CLASS(SiPixelTemplateIDsBPixMap);
PAYLOAD_INSPECTOR_CLASS(SiPixelTemplateIDsFPixMap);
PAYLOAD_INSPECTOR_CLASS(SiPixelTemplateLAMap);
PAYLOAD_INSPECTOR_CLASS(SiPixelTemplateLABPixMap);
PAYLOAD_INSPECTOR_CLASS(SiPixelTemplateLAFPixMap);
PAYLOAD_INSPECTOR_CLASS(SiPixelTemplateQScaleBPixMap);
PAYLOAD_INSPECTOR_CLASS(SiPixelTemplateQScaleFPixMap);
PAYLOAD_INSPECTOR_CLASS(SiPixelTemplateQScaleMap);
PAYLOAD_INSPECTOR_CLASS(SiPixelTemplateVbiasBPixMap);
PAYLOAD_INSPECTOR_CLASS(SiPixelTemplateVbiasFPixMap);
PAYLOAD_INSPECTOR_CLASS(SiPixelTemplateVbiasMap);
}
|