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
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
|
#include "DQM/SiStripCommissioningClients/interface/SiStripCommissioningOfflineClient.h"
#include "DataFormats/SiStripCommon/interface/SiStripEnumsAndStrings.h"
#include "DataFormats/SiStripCommon/interface/SiStripHistoTitle.h"
#include "DataFormats/SiStripCommon/interface/SiStripFecKey.h"
#include "DQM/SiStripCommissioningClients/interface/FastFedCablingHistograms.h"
#include "DQM/SiStripCommissioningClients/interface/FedCablingHistograms.h"
#include "DQM/SiStripCommissioningClients/interface/ApvTimingHistograms.h"
#include "DQM/SiStripCommissioningClients/interface/OptoScanHistograms.h"
#include "DQM/SiStripCommissioningClients/interface/VpspScanHistograms.h"
#include "DQM/SiStripCommissioningClients/interface/PedestalsHistograms.h"
#include "DQM/SiStripCommissioningClients/interface/PedsOnlyHistograms.h"
#include "DQM/SiStripCommissioningClients/interface/PedsFullNoiseHistograms.h"
#include "DQM/SiStripCommissioningClients/interface/NoiseHistograms.h"
#include "DQM/SiStripCommissioningClients/interface/SamplingHistograms.h"
#include "DQM/SiStripCommissioningClients/interface/CalibrationHistograms.h"
#include "DQM/SiStripCommissioningClients/interface/DaqScopeModeHistograms.h"
#include "FWCore/ServiceRegistry/interface/Service.h"
#include "DQMServices/Core/interface/DQMStore.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "FWCore/ParameterSet/interface/FileInPath.h"
#include <iostream>
#include <iomanip>
#include <fstream>
#include <sstream>
#include <sys/types.h>
#include <dirent.h>
#include <cerrno>
#include "TProfile.h"
#include <cstdint>
using namespace sistrip;
// -----------------------------------------------------------------------------
//
SiStripCommissioningOfflineClient::SiStripCommissioningOfflineClient(const edm::ParameterSet& pset)
: bei_(edm::Service<DQMStore>().operator->()),
histos_(nullptr),
//inputFiles_( pset.getUntrackedParameter< std::vector<std::string> >( "InputRootFiles", std::vector<std::string>() ) ),
outputFileName_(pset.getUntrackedParameter<std::string>("OutputRootFile", "")),
collateHistos_(!pset.getUntrackedParameter<bool>("UseClientFile", false)),
analyzeHistos_(pset.getUntrackedParameter<bool>("AnalyzeHistos", true)),
xmlFile_((pset.getUntrackedParameter<edm::FileInPath>("SummaryXmlFile", edm::FileInPath())).fullPath()),
createSummaryPlots_(false),
clientHistos_(false),
uploadToDb_(false),
runType_(sistrip::UNKNOWN_RUN_TYPE),
runNumber_(0),
partitionName_(pset.existsAs<std::string>("PartitionName") ? pset.getParameter<std::string>("PartitionName")
: ""),
map_(),
plots_(),
parameters_(pset) {
LogTrace(mlDqmClient_) << "[SiStripCommissioningOfflineClient::" << __func__ << "]"
<< " Constructing object...";
usesResource("DQMStore");
setInputFiles(inputFiles_,
pset.getUntrackedParameter<std::string>("FilePath"),
pset.existsAs<std::string>("PartitionName") ? pset.getParameter<std::string>("PartitionName") : "",
pset.getUntrackedParameter<uint32_t>("RunNumber"),
collateHistos_);
}
// -----------------------------------------------------------------------------
//
SiStripCommissioningOfflineClient::~SiStripCommissioningOfflineClient() {
LogTrace(mlDqmClient_) << "[SiStripCommissioningOfflineClient::" << __func__ << "]"
<< " Destructing object...";
}
// -----------------------------------------------------------------------------
//
void SiStripCommissioningOfflineClient::beginRun(const edm::Run& run, const edm::EventSetup& setup) {
LogTrace(mlDqmClient_) << "[SiStripCommissioningOfflineClient::" << __func__ << "]"
<< " Analyzing root file(s)...";
// Check for null pointer
if (!bei_) {
edm::LogError(mlDqmClient_) << "[SiStripCommissioningOfflineClient::" << __func__ << "]"
<< " NULL pointer to DQMStore!"
<< " Aborting...";
return;
}
// Check if .root file can be opened
std::vector<std::string>::const_iterator ifile = inputFiles_.begin();
for (; ifile != inputFiles_.end(); ifile++) {
std::ifstream root_file;
root_file.open(ifile->c_str());
if (!root_file.is_open()) {
edm::LogError(mlDqmClient_) << "[SiStripCommissioningOfflineClient::" << __func__ << "]"
<< " The input root file \"" << *ifile << "\" could not be opened!"
<< " Please check the path and filename!";
} else {
root_file.close();
std::string::size_type found = ifile->find(sistrip::dqmClientFileName_);
if (found != std::string::npos && clientHistos_) {
edm::LogError(mlDqmClient_) << "[SiStripCommissioningOfflineClient::" << __func__ << "]"
<< " The input root files appear to be a mixture"
<< " of \"Source\" and \"Client\" files!"
<< " Aborting...";
return;
}
if (found != std::string::npos && inputFiles_.size() != 1) {
edm::LogError(mlDqmClient_) << "[SiStripCommissioningOfflineClient::" << __func__ << "]"
<< " There appear to be multiple input \"Client\" root files!"
<< " Aborting...";
return;
}
if (found != std::string::npos) {
clientHistos_ = true;
}
}
}
if (clientHistos_ && inputFiles_.size() == 1) {
edm::LogVerbatim(mlDqmClient_) << "[SiStripCommissioningOfflineClient::" << __func__ << "]"
<< " Collated histograms found in input root file \"" << inputFiles_[0] << "\"";
}
// Check if .xml file can be opened
if (!xmlFile_.empty()) {
std::ifstream xml_file;
xml_file.open(xmlFile_.c_str());
if (!xml_file.is_open()) {
edm::LogError(mlDqmClient_) << "[SiStripCommissioningOfflineClient::" << __func__ << "]"
<< " The SummaryPlot XML file \"" << xmlFile_ << "\" could not be opened!"
<< " Please check the path and filename!"
<< " Aborting...";
return;
} else {
createSummaryPlots_ = true;
xml_file.close();
}
}
// Open root file(s) and create ME's
if (inputFiles_.empty()) {
edm::LogError(mlDqmClient_) << "[SiStripCommissioningOfflineClient::" << __func__ << "]"
<< " No input root files specified!";
return;
}
edm::LogVerbatim(mlDqmClient_) << "[SiStripCommissioningOfflineClient::" << __func__ << "]"
<< " Opening root files. This may take some time!...";
std::vector<std::string>::const_iterator jfile = inputFiles_.begin();
for (; jfile != inputFiles_.end(); jfile++) {
LogTrace(mlDqmClient_) << "[SiStripCommissioningOfflineClient::" << __func__ << "]"
<< " Opening root file \"" << *jfile << "\"... (This may take some time.)";
if (clientHistos_) {
bei_->open(*jfile, false, sistrip::collate_, "");
} else {
bei_->open(*jfile, false, "SiStrip", sistrip::collate_);
}
LogTrace(mlDqmClient_) << "[SiStripCommissioningOfflineClient::" << __func__ << "]"
<< " Opened root file \"" << *jfile << "\"!";
}
edm::LogVerbatim(mlDqmClient_) << "[SiStripCommissioningOfflineClient::" << __func__ << "]"
<< " Opened " << inputFiles_.size() << " root files!";
// Retrieve list of histograms
auto allmes = bei_->getAllContents("");
std::vector<std::string> contents;
// If using client file, remove "source" histograms from list
if (clientHistos_) {
std::set<std::string> temp;
for (auto me : allmes) {
const auto& name = me->getPathname();
if (name.find(sistrip::collate_) != std::string::npos) {
temp.insert(name);
}
}
contents.clear();
for (const auto& s : temp) {
// the old code expects a ":", but does not really need the ME names
contents.push_back(s + ":");
}
}
// Some debug
LogTrace(mlDqmClient_) << "[SiStripCommissioningOfflineClient::" << __func__ << "]"
<< " Found " << contents.size() << " directories containing MonitorElements";
// Some more debug
if (false) {
std::stringstream ss;
ss << "[SiStripCommissioningOfflineClient::" << __func__ << "]"
<< " Directories found: " << std::endl;
std::vector<std::string>::iterator istr = contents.begin();
for (; istr != contents.end(); istr++) {
ss << " " << *istr << std::endl;
}
LogTrace(mlDqmClient_) << ss.str();
}
// Extract run type from contents
runType_ = CommissioningHistograms::runType(bei_, contents);
// Extract run number from contents
runNumber_ = CommissioningHistograms::runNumber(bei_, contents);
// Copy custom information to the collated structure
CommissioningHistograms::copyCustomInformation(bei_, contents);
// Check runType
if (runType_ == sistrip::UNKNOWN_RUN_TYPE) {
edm::LogError(mlDqmClient_) << "[SiStripCommissioningOfflineClient::" << __func__ << "]"
<< " Unknown commissioning runType: " << SiStripEnumsAndStrings::runType(runType_)
<< " and run number is " << runNumber_;
return;
} else {
edm::LogVerbatim(mlDqmClient_) << "[SiStripCommissioningOfflineClient::" << __func__ << "]"
<< " Run type is " << SiStripEnumsAndStrings::runType(runType_)
<< " and run number is " << runNumber_;
}
// Open and parse "summary plot" xml file
if (createSummaryPlots_) {
edm::LogVerbatim(mlDqmClient_) << "[SiStripCommissioningOfflineClient::" << __func__ << "]"
<< " Parsing summary plot XML file...";
SummaryPlotXmlParser xml_file;
xml_file.parseXML(xmlFile_);
plots_ = xml_file.summaryPlots(runType_);
edm::LogVerbatim(mlDqmClient_) << "[SiStripCommissioningOfflineClient::" << __func__ << "]"
<< " Parsed summary plot XML file and found " << plots_.size() << " plots defined!";
} else {
edm::LogWarning(mlDqmClient_) << "[SiStripCommissioningOfflineClient::" << __func__ << "]"
<< " Null string for SummaryPlotXmlFile!"
<< " No summary plots will be created!";
}
// Some debug
std::stringstream ss;
ss << "[SiStripCommissioningOfflineClient::" << __func__ << "]" << std::endl << " Input root files : ";
if (inputFiles_.empty()) {
ss << "(none)";
} else {
std::vector<std::string>::const_iterator ifile = inputFiles_.begin();
for (; ifile != inputFiles_.end(); ifile++) {
if (ifile != inputFiles_.begin()) {
ss << std::setw(25) << std::setfill(' ') << ": ";
}
ss << "\"" << *ifile << "\"" << std::endl;
}
}
ss << " Run type : \"" << SiStripEnumsAndStrings::runType(runType_) << "\"" << std::endl
<< " Run number : " << runNumber_ << std::endl
<< " Summary plot XML file : ";
if (xmlFile_.empty()) {
ss << "(none)";
} else {
ss << "\"" << xmlFile_ << "\"";
}
edm::LogVerbatim(mlDqmClient_) << ss.str();
// Virtual method that creates CommissioningHistogram object
LogTrace(mlDqmClient_) << "[SiStripCommissioningOfflineClient::" << __func__ << "]"
<< " Creating CommissioningHistogram object...";
createHistos(parameters_, setup);
if (histos_) {
LogTrace(mlDqmClient_) << "[SiStripCommissioningOfflineClient::" << __func__ << "]"
<< " Created CommissioningHistogram object!";
} else {
edm::LogError(mlDqmClient_) << "[SiStripCommissioningOfflineClient::" << __func__ << "]"
<< " NULL pointer to CommissioningHistogram object!"
<< " Aborting...";
return;
}
// Perform collation
if (histos_) {
histos_->extractHistograms(contents);
}
// Perform analysis
if (analyzeHistos_) {
LogTrace(mlDqmClient_) << "[SiStripCommissioningOfflineClient::" << __func__ << "]"
<< " Analyzing histograms...";
if (histos_) {
histos_->histoAnalysis(true);
}
LogTrace(mlDqmClient_) << "[SiStripCommissioningOfflineClient::" << __func__ << "]"
<< " Analyzed histograms!";
} else {
edm::LogWarning(mlDqmClient_) << "[SiStripCommissioningOfflineClient::" << __func__ << "]"
<< " No histogram analysis performed!";
}
// Create summary plots
if (createSummaryPlots_) {
edm::LogVerbatim(mlDqmClient_) << "[SiStripCommissioningOfflineClient::" << __func__ << "]"
<< " Generating summary plots...";
std::vector<SummaryPlot>::const_iterator iplot = plots_.begin();
for (; iplot != plots_.end(); iplot++) {
if (histos_) {
histos_->createSummaryHisto(iplot->monitorable(), iplot->presentation(), iplot->level(), iplot->granularity());
}
}
edm::LogVerbatim(mlDqmClient_) << "[SiStripCommissioningOfflineClient::" << __func__ << "]"
<< " Generated summary plots!";
} else {
edm::LogWarning(mlDqmClient_) << "[SiStripCommissioningOfflineClient::" << __func__ << "]"
<< " No summary plots generated!";
}
// Save client root file
if (histos_) {
bool save = parameters_.getUntrackedParameter<bool>("SaveClientFile", true);
if (save) {
if (runType_ != sistrip::CALIBRATION_SCAN and runType_ != sistrip::CALIBRATION_SCAN_DECO) {
if (runType_ != sistrip::DAQ_SCOPE_MODE)
histos_->save(outputFileName_, runNumber_);
else
histos_->save(outputFileName_, runNumber_, partitionName_);
} else {
CalibrationHistograms* histo = dynamic_cast<CalibrationHistograms*>(histos_);
histo->save(outputFileName_, runNumber_);
}
} else {
edm::LogVerbatim(mlDqmClient_) << "[SiStripCommissioningOfflineClient::" << __func__ << "]"
<< " Client file not saved!";
}
}
// Virtual method to trigger the database upload
uploadToConfigDb();
// Print analyses
if (histos_) {
histos_->printAnalyses();
histos_->printSummary();
}
// Remove all ME/CME objects
if (histos_) {
histos_->remove();
}
edm::LogVerbatim(mlDqmClient_) << "[SiStripCommissioningOfflineClient::" << __func__ << "]"
<< " Finished analyzing root file(s)...";
}
// -----------------------------------------------------------------------------
//
void SiStripCommissioningOfflineClient::analyze(const edm::Event& event, const edm::EventSetup& setup) {
if (!(event.id().event() % 10)) {
LogTrace(mlDqmClient_) << "[SiStripCommissioningOfflineClient::" << __func__ << "]"
<< " Empty event loop! User can kill job...";
}
}
// -----------------------------------------------------------------------------
//
void SiStripCommissioningOfflineClient::endJob() {}
// -----------------------------------------------------------------------------
//
void SiStripCommissioningOfflineClient::createHistos(const edm::ParameterSet& pset, const edm::EventSetup& setup) {
// Check pointer
if (histos_) {
edm::LogError(mlDqmClient_) << "[SiStripCommissioningOfflineClient::" << __func__ << "]"
<< " CommissioningHistogram object already exists!"
<< " Aborting...";
return;
}
// Check pointer to BEI
if (!bei_) {
edm::LogError(mlDqmClient_) << "[SiStripCommissioningOfflineClient::" << __func__ << "]"
<< " NULL pointer to DQMStore!";
return;
}
// Create "commissioning histograms" object
if (runType_ == sistrip::FAST_CABLING) {
histos_ = new FastFedCablingHistograms(pset, bei_);
} else if (runType_ == sistrip::FED_CABLING) {
histos_ = new FedCablingHistograms(pset, bei_);
} else if (runType_ == sistrip::APV_TIMING) {
histos_ = new ApvTimingHistograms(pset, bei_);
} else if (runType_ == sistrip::OPTO_SCAN) {
histos_ = new OptoScanHistograms(pset, bei_);
} else if (runType_ == sistrip::VPSP_SCAN) {
histos_ = new VpspScanHistograms(pset, bei_);
} else if (runType_ == sistrip::PEDESTALS) {
histos_ = new PedestalsHistograms(pset, bei_);
} else if (runType_ == sistrip::PEDS_FULL_NOISE) {
histos_ = new PedsFullNoiseHistograms(pset, bei_);
} else if (runType_ == sistrip::PEDS_ONLY) {
histos_ = new PedsOnlyHistograms(pset, bei_);
} else if (runType_ == sistrip::NOISE) {
histos_ = new NoiseHistograms(pset, bei_);
} else if (runType_ == sistrip::APV_LATENCY || runType_ == sistrip::FINE_DELAY) {
histos_ = new SamplingHistograms(pset, bei_, runType_);
} else if (runType_ == sistrip::CALIBRATION || runType_ == sistrip::CALIBRATION_DECO ||
runType_ == sistrip::CALIBRATION_SCAN || runType_ == sistrip::CALIBRATION_SCAN_DECO) {
histos_ = new CalibrationHistograms(pset, bei_, runType_);
} else if (runType_ == sistrip::DAQ_SCOPE_MODE) {
histos_ = new DaqScopeModeHistograms(pset, bei_);
} else if (runType_ == sistrip::UNDEFINED_RUN_TYPE) {
histos_ = nullptr;
edm::LogError(mlDqmClient_) << "[SiStripCommissioningOfflineClient::" << __func__ << "]"
<< " Undefined run type!";
return;
} else if (runType_ == sistrip::UNKNOWN_RUN_TYPE) {
histos_ = nullptr;
edm::LogError(mlDqmClient_) << "[SiStripCommissioningOfflineClient::" << __func__ << "]"
<< " Unknown run type!";
return;
}
histos_->configure(pset, setup);
}
// -----------------------------------------------------------------------------
//
void SiStripCommissioningOfflineClient::setInputFiles(std::vector<std::string>& files,
const std::string path,
const std::string partitionName,
uint32_t run_number,
bool collate_histos) {
std::string runStr;
std::stringstream ss;
ss << std::setfill('0') << std::setw(8) << run_number;
runStr = ss.str();
std::string nameStr = "";
if (!collate_histos) {
nameStr = "SiStripCommissioningClient_";
} else {
nameStr = "SiStripCommissioningSource_";
}
LogTrace("TEST") << " runStr " << runStr;
// Open directory
DIR* dp;
struct dirent* dirp;
if ((dp = opendir(path.c_str())) == nullptr) {
edm::LogError(mlDqmClient_) << "[SiStripCommissioningOfflineClient::" << __func__ << "]"
<< " Error locating directory \"" << path << "\". No such directory!";
return;
}
// Find compatible files
while ((dirp = readdir(dp)) != nullptr) {
std::string fileName(dirp->d_name);
bool goodName = (fileName.find(nameStr) != std::string::npos);
bool goodRun = (fileName.find(runStr) != std::string::npos);
bool rootFile = (fileName.find(".root") != std::string::npos);
bool goodPartition = true;
if (not partitionName.empty()) {
goodPartition = (fileName.find(partitionName) != std::string::npos);
}
//bool rootFile = ( fileName.rfind(".root",5) == fileName.size()-5 );
if (goodName && goodRun && rootFile && goodPartition) {
std::string entry = path;
entry += "/";
entry += fileName;
files.push_back(entry);
}
}
closedir(dp);
// Some debug
if (!collate_histos && files.size() > 1) {
std::stringstream ss;
ss << "[SiStripCommissioningOfflineClient::" << __func__ << "]"
<< " Found more than one client file!";
std::vector<std::string>::const_iterator ifile = files.begin();
std::vector<std::string>::const_iterator jfile = files.end();
for (; ifile != jfile; ++ifile) {
ss << std::endl << *ifile;
}
edm::LogError(mlDqmClient_) << ss.str();
} else if (files.empty()) {
edm::LogError(mlDqmClient_) << "[SiStripCommissioningOfflineClient::" << __func__ << "]"
<< " No input files found!";
}
}
|