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
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
|
// -*- C++ -*-
//
// Package: DQM/SiStripMonitorHardware
// Class: BuildTrackerMapPlugin
//
/**\class BuildTrackerMapPlugin BuildTrackerMap.cc DQM/SiStripMonitorHardware/plugins/BuildTrackerMap.cc
Description: DQM source application to monitor common mode for SiStrip data
*/
//
// Created: 2009/07/22
//
#include <sstream>
#include <fstream>
#include <iostream>
#include <memory>
#include <list>
#include <algorithm>
#include <cassert>
#include "TCanvas.h"
#include "TH1F.h"
#include "TStyle.h"
#include "TPaveStats.h"
#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "FWCore/Framework/interface/one/EDAnalyzer.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/Framework/interface/EventSetup.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "FWCore/ServiceRegistry/interface/Service.h"
#include "FWCore/Utilities/interface/Exception.h"
#include "CondFormats/DataRecord/interface/SiStripFedCablingRcd.h"
#include "CondFormats/SiStripObjects/interface/SiStripFedCabling.h"
#include "CondFormats/SiStripObjects/interface/FedChannelConnection.h"
#include "DataFormats/TrackerCommon/interface/TrackerTopology.h"
#include "Geometry/Records/interface/TrackerTopologyRcd.h"
#include "CommonTools/TrackerMap/interface/TrackerMap.h"
#include "CommonTools/TrackerMap/interface/TmModule.h"
#include "CommonTools/TrackerMap/interface/TmApvPair.h"
#include "DQM/SiStripCommon/interface/TkHistoMap.h"
#include "DQMServices/Core/interface/DQMStore.h"
//
// Class declaration
//
class BuildTrackerMapPlugin : public edm::one::EDAnalyzer<> {
public:
typedef dqm::legacy::MonitorElement MonitorElement;
typedef dqm::legacy::DQMStore DQMStore;
explicit BuildTrackerMapPlugin(const edm::ParameterSet&);
~BuildTrackerMapPlugin() override {}
private:
void beginJob() override;
void analyze(const edm::Event&, const edm::EventSetup&) override;
void endJob() override;
void read(bool aMechView,
std::string aFile,
const TkDetMap* tkDetMap,
std::vector<std::unique_ptr<TkHistoMap>>& aTkMapVec,
std::vector<bool>& aValidVec);
void subtractMap(TkHistoMap* aResult, const TkHistoMap* aSubtr);
//input file names
std::string fileName_;
//do mechanical view or not
bool mechanicalView_;
//folder name for histograms in DQMStore
std::string folderName_;
//print debug messages when problems are found: 1=error debug, 2=light debug, 3=full debug
unsigned int printDebug_;
bool doDiff_;
std::string fileNameDiff_;
std::vector<std::unique_ptr<TkHistoMap>> tkHistoMapVec_;
std::vector<std::unique_ptr<TkHistoMap>> tkHistoMapVecDiff_;
//name of the tkHistoMap to extract
std::vector<std::string> tkHistoMapNameVec_;
std::vector<double> minVal_;
std::vector<double> maxVal_;
std::vector<bool> isValidMap_;
std::vector<bool> isValidMapDiff_;
edm::ParameterSet pset_;
std::vector<TrackerMap*> tkmap_;
edm::ESGetToken<SiStripFedCabling, SiStripFedCablingRcd> fedCablingToken_;
edm::ESGetToken<TrackerTopology, TrackerTopologyRcd> tTopoToken_;
edm::ESGetToken<TkDetMap, TrackerTopologyRcd> tkDetMapToken_;
};
//
// Constructors and destructor
//
BuildTrackerMapPlugin::BuildTrackerMapPlugin(const edm::ParameterSet& iConfig)
: fileName_(iConfig.getUntrackedParameter<std::string>("InputFileName", "DQMStore.root")),
mechanicalView_(iConfig.getUntrackedParameter<bool>("MechanicalView", true)),
folderName_(iConfig.getUntrackedParameter<std::string>("HistogramFolderName", "DQMData/")),
printDebug_(iConfig.getUntrackedParameter<unsigned int>("PrintDebugMessages", 1)),
doDiff_(iConfig.getUntrackedParameter<bool>("DoDifference", false)),
fileNameDiff_(iConfig.getUntrackedParameter<std::string>("InputFileNameForDiff", "DQMStore.root")),
tkHistoMapNameVec_(iConfig.getUntrackedParameter<std::vector<std::string>>("TkHistoMapNameVec")),
minVal_(iConfig.getUntrackedParameter<std::vector<double>>("MinValueVec")),
maxVal_(iConfig.getUntrackedParameter<std::vector<double>>("MaxValueVec")),
pset_(iConfig.getParameter<edm::ParameterSet>("TkmapParameters")),
fedCablingToken_(esConsumes<>()),
tTopoToken_(esConsumes<>()),
tkDetMapToken_(esConsumes<>()) {
// for (unsigned int i(0); i<34; i++){
// if (i<4) histName_[i] << "TIB/layer_" << i+1 << "/" << tkDetMapName_ << "_TIB_L" << i+1;
// else if (i<7) histName_[i] << "TID/side_1/wheel_" << i-3 << "/" << tkDetMapName_ << "_TIDM_D" << i-3;
// else if (i<10) histName_[i] << "TID/side_2/wheel_" << i-6 << "/" << tkDetMapName_ << "_TIDP_D" << i-6;
// else if (i<16) histName_[i] << "TOB/layer_" << i-9 << "/" << tkDetMapName_ << "_TOB_L" << i-9;
// else if (i<25) histName_[i] << "TEC/side_1/wheel_" << i-15 << "/" << tkDetMapName_ << "_TECM_W" << i-15;
// else if (i<34) histName_[i] << "TEC/side_2/wheel_" << i-24 << "/" << tkDetMapName_ << "_TECP_W" << i-24;
// std::cout << "histName[" << i << "] =" << histName_[i] << std::endl;
// }
}
//
// Member functions
//
/*Check that is possible to load in tkhistomaps histograms already stored in a DQM root file (if the folder and name are known)*/
void BuildTrackerMapPlugin::read(bool aMechView,
std::string aFile,
const TkDetMap* tkDetMap,
std::vector<std::unique_ptr<TkHistoMap>>& aTkMapVec,
std::vector<bool>& aValidVec) {
DQMStore* lDqmStore = edm::Service<DQMStore>().operator->();
lDqmStore->open(aFile);
unsigned int nHists = tkHistoMapNameVec_.size();
aTkMapVec.reserve(nHists);
aValidVec.reserve(nHists);
std::string dirName = folderName_;
if (dirName.empty()) {
dirName += "Run ";
dirName += aFile.substr(aFile.find_last_of('_') + 5, 6);
dirName += "/SiStrip/Run summary";
std::cout << " -- DirName = " << dirName << std::endl;
}
//lDqmStore->setCurrentFolder(dirName);
unsigned int nFailTot = 0;
unsigned int nTotTot = 0;
for (unsigned int i(0); i < nHists; i++) {
std::unique_ptr<TkHistoMap> tkHistoMap{new TkHistoMap(tkDetMap)};
tkHistoMap->loadTkHistoMap(dirName, tkHistoMapNameVec_.at(i), aMechView);
std::vector<MonitorElement*>& lMaps = tkHistoMap->getAllMaps();
std::cout << " -- map " << i << ", nHistos = " << lMaps.size() << std::endl;
unsigned int nFail = 0;
unsigned int nTot = 0;
for (unsigned int im(0); im < lMaps.size(); im++) {
if (!lMaps[im]) {
std::cout << " -- Failed to get element " << im << " for map " << i << std::endl;
nFail++;
nFailTot++;
}
nTot++;
nTotTot++;
}
if (nFail == nTot)
aValidVec[i] = false;
aTkMapVec.emplace_back(std::move(tkHistoMap));
}
if (nFailTot < nTotTot)
std::cout << " - " << nTotTot - nFailTot << "/" << nTotTot << " histomaps read with success for file ." << aFile
<< std::endl;
else {
std::cout << " - Failed to read any map for file " << aFile << ". Exiting line ... " << __LINE__ << std::endl;
exit(1);
}
// //get list of detid for which |deltaRMS(APV0-APV1)|>1
// unsigned int lHistoNumber = 35;
// TkDetMap lTkDetMap;
// std::ofstream list,listRms0,listRms1;
// list.open("./cmBadModuleList.dat",std::ios::out);
// listRms0.open("./cmBadModuleList_rms0.dat",std::ios::out);
// listRms1.open("./cmBadModuleList_rms1.dat",std::ios::out);
// if (!list || !listRms0 || !listRms1) {
// std::cout << "Warning, can't open output file to write bad module list !" << std::endl;
// exit(1);
// }
// TCanvas *lCan = new TCanvas("lCan","",1);
// TH1F *p_deltaMean = new TH1F("p_deltaMean",";CM_{mean}(APV0)-CM_{mean}(APV1)",500,-2,2);
// TH1F *p_deltaRMS = new TH1F("p_deltaRMS",";CM_{RMS}(APV0)-CM_{RMS}(APV1)",500,0,3);
// TH1F *p_MeanAPV0 = new TH1F("p_MeanAPV0",";CM_{mean}(APV0)",500,100,140);
// //TH1F *p_MeanAPV1 = new TH1F("p_MeanAPV1",";CM_{mean}(APV1)",500,100,140);
// TH1F *p_RMSAPV0 = new TH1F("p_RMSAPV0",";CM_{RMS}(APV0)",500,0,10);
// //TH1F *p_RMSAPV1 = new TH1F("p_RMSAPV1",";CM_{RMS}(APV1)",500,0,10);
// gStyle->SetOptStat(1111111);
// for(unsigned int layer=1;layer<lHistoNumber;++layer){
// std::vector<uint32_t> dets;
// lTkDetMap.getDetsForLayer(layer,dets);
// for(size_t i=0;i<dets.size();++i){
// if(dets[i]>0){
// //if(tkHistoMap[5]->getEntries(dets[i])>0 && tkHistoMap[5]->getValue(dets[i])) {
// if(nHists > 3){
// if (tkHistoMap[3]->getValue(dets[i]) > 1) {
// list << dets[i] << " " << tkHistoMap[3]->getValue(dets[i]) << std::endl;
// }
// p_deltaRMS->Fill(tkHistoMap[3]->getValue(dets[i]));
// }
// p_MeanAPV0->Fill(tkHistoMap[0]->getValue(dets[i]));
// //p_MeanAPV1->Fill(tkHistoMap[1]->getValue(dets[i]));
// p_RMSAPV0->Fill(tkHistoMap[1]->getValue(dets[i]));
// if (tkHistoMap[1]->getValue(dets[i]) > 2)
// listRms0 << dets[i] << " " << tkHistoMap[1]->getValue(dets[i]) << std::endl;
// //p_RMSAPV1->Fill(tkHistoMap[3]->getValue(dets[i]));
// //if (tkHistoMap[3]->getValue(dets[i]) > 2)
// //listRms1 << dets[i] << " " << tkHistoMap[3]->getValue(dets[i]) << std::endl;
// if(nHists > 2) p_deltaMean->Fill(tkHistoMap[2]->getValue(dets[i]));
// }
// }
// }
// list.close();
// listRms0.close();
// listRms1.close();
// lCan->cd();
// p_deltaRMS->Draw();
// //lCan->Print("./deltaRMStotal.png");
// lCan->Print("./deltaRMStotal.C");
// p_deltaMean->Draw();
// lCan->Update();
// lCan->Print("./deltaMeantotal.C");
// TPaveStats *statBox[2] = {0,0};
// statBox[0] = (TPaveStats*)p_MeanAPV0->FindObject("stats");
// //statBox[1] = (TPaveStats*)p_MeanAPV1->FindObject("stats");
// p_MeanAPV0->Draw();
// //p_MeanAPV1->SetLineColor(2);
// //p_MeanAPV1->Draw("same");
// if (statBox[0]) statBox[0]->Draw("same");
// if (statBox[1]) {
// statBox[1]->SetLineColor(2);
// statBox[1]->SetTextColor(2);
// statBox[1]->Draw("same");
// }
// lCan->Update();
// lCan->Print("./meanAPVstotal.C");
// statBox[0] = (TPaveStats*)p_RMSAPV0->FindObject("stats");
// //statBox[1] = (TPaveStats*)p_RMSAPV1->FindObject("stats");
// p_RMSAPV0->Draw();
// //p_RMSAPV1->SetLineColor(2);
// //p_RMSAPV1->Draw("same");
// if (statBox[0]) statBox[0]->Draw("same");
// if (statBox[1]) {
// statBox[1]->SetLineColor(2);
// statBox[1]->SetTextColor(2);
// statBox[1]->Draw("same");
// }
// lCan->Update();
// lCan->Print("./rmsAPVstotal.C");
}
// ------------ method called to for each event ------------
void BuildTrackerMapPlugin::analyze(const edm::Event& iEvent, const edm::EventSetup& iSetup) {
static bool firstEvent = true;
if (tkHistoMapVec_.empty() && (!tkHistoMapNameVec_.empty())) {
const auto tkDetMap = &iSetup.getData(tkDetMapToken_);
read(mechanicalView_, fileName_, tkDetMap, tkHistoMapVec_, isValidMap_);
if (doDiff_)
read(mechanicalView_, fileNameDiff_, tkDetMap, tkHistoMapVecDiff_, isValidMapDiff_);
}
if (firstEvent) {
const auto fedcabling = &iSetup.getData(fedCablingToken_);
const auto tTopo = &iSetup.getData(tTopoToken_);
for (unsigned int i(0); i < tkHistoMapNameVec_.size(); i++) {
tkmap_.push_back(new TrackerMap(pset_, fedcabling, tTopo));
}
}
firstEvent = false;
std::cout << "End of analyze method: tkmap_ size = " << tkmap_.size() << std::endl;
} //analyze method
// ------------ method called once each job just before starting event loop ------------
void BuildTrackerMapPlugin::beginJob() {}
// ------------ method called once each job just after ending the event loop ------------
void BuildTrackerMapPlugin::endJob() {
//edm::ESHandle<SiStripFedCabling> pDD1;
//iSetup.get<SiStripFedCablingRcd>().get(pDD1);
std::cout << "Processing endjob with " << tkHistoMapNameVec_.size() << " elements." << std::endl;
assert(minVal_.size() == tkHistoMapNameVec_.size());
assert(maxVal_.size() == tkHistoMapNameVec_.size());
for (unsigned int i(0); i < tkHistoMapNameVec_.size(); i++) {
std::cout << "Processing element " << i << ": " << tkHistoMapNameVec_.at(i) << std::endl;
std::cout << "Min, max = " << minVal_.at(i) << " " << maxVal_.at(i) << std::endl;
TrackerMap* lTkMap = tkmap_.at(i);
if (!lTkMap) {
std::cout << "tkmap_ is NULL for element " << i << "... continuing ..." << std::endl;
continue;
}
subtractMap(tkHistoMapVec_.at(i).get(), tkHistoMapVecDiff_.at(i).get());
//(pset_,pDD1);
lTkMap->setPalette(1);
lTkMap->showPalette(true);
if (!tkHistoMapVec_.at(i) || !isValidMap_.at(i)) {
std::cout << "Warning, tkHistoMap is invalid for element " << i << "... continuing ..." << std::endl;
continue;
}
tkHistoMapVec_.at(i)->dumpInTkMap(lTkMap);
//to print all figures to create fancy view
//lTkMap->printall(true,0,255,tkHistoMapNameVec_.at(i));
lTkMap->save(true, minVal_.at(i), maxVal_.at(i), tkHistoMapNameVec_.at(i) + std::string(".png"));
lTkMap->save_as_fedtrackermap(
true, minVal_.at(i), maxVal_.at(i), tkHistoMapNameVec_.at(i) + std::string("_FED.png"));
}
}
void BuildTrackerMapPlugin::subtractMap(TkHistoMap* aResult, const TkHistoMap* aSubtr) {
std::vector<MonitorElement*>& lMaps = aResult->getAllMaps();
const std::vector<MonitorElement*>& lMapsDiff = aSubtr->getAllMaps();
assert(lMaps.size() == lMapsDiff.size());
for (unsigned int im(0); im < lMaps.size(); im++) {
if (!lMaps[im] || !lMapsDiff[im]) {
std::cout << " -- Failed to get element " << im << " for maps." << std::endl;
} else {
(lMaps[im]->getTProfile2D())->Add(lMapsDiff[im]->getTProfile2D(), -1);
}
}
}
// Define as a plug-in
//
#include "FWCore/Framework/interface/MakerMacros.h"
DEFINE_FWK_MODULE(BuildTrackerMapPlugin);
|