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
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
|
// Original Author: Anne-Marie Magnan
// Created: 2010/01/11
//
#include <sstream>
#include <memory>
#include <list>
#include <algorithm>
#include <cassert>
#include "FWCore/Utilities/interface/EDGetToken.h"
#include "FWCore/Framework/interface/Frameworkfwd.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/Framework/interface/EventSetup.h"
#include "FWCore/Framework/interface/ESWatcher.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "FWCore/Utilities/interface/InputTag.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "FWCore/ServiceRegistry/interface/Service.h"
#include "FWCore/Utilities/interface/Exception.h"
#include "DataFormats/FEDRawData/interface/FEDRawDataCollection.h"
#include "DataFormats/FEDRawData/interface/FEDRawData.h"
#include "DataFormats/FEDRawData/interface/FEDNumbering.h"
#include "DataFormats/SiStripCommon/interface/SiStripFedKey.h"
#include "DataFormats/Common/interface/DetSetVector.h"
#include "DataFormats/SiStripDigi/interface/SiStripRawDigi.h"
#include "DataFormats/SiStripCommon/interface/ConstantsForHardwareSystems.h"
#include "CondFormats/SiStripObjects/interface/SiStripPedestals.h"
#include "CondFormats/DataRecord/interface/SiStripPedestalsRcd.h"
#include "CondFormats/DataRecord/interface/SiStripFedCablingRcd.h"
#include "CondFormats/SiStripObjects/interface/SiStripFedCabling.h"
#include "EventFilter/SiStripRawToDigi/interface/SiStripFEDBuffer.h"
// For plotting.
#include "DQMServices/Core/interface/DQMStore.h"
#include "DQM/SiStripMonitorHardware/interface/SiStripFEDSpyBuffer.h"
#include "DQM/SiStripMonitorHardware/interface/SiStripSpyUtilities.h"
#include "DQM/SiStripMonitorHardware/interface/SPYHistograms.h"
#include <DQMServices/Core/interface/DQMEDAnalyzer.h>
//
// Class declaration
//
class SiStripSpyMonitorModule : public DQMEDAnalyzer {
public:
explicit SiStripSpyMonitorModule(const edm::ParameterSet&);
~SiStripSpyMonitorModule() override;
private:
void analyze(const edm::Event&, const edm::EventSetup&) override;
void bookHistograms(DQMStore::IBooker&, edm::Run const&, edm::EventSetup const&) override;
void dqmBeginRun(const edm::Run&, const edm::EventSetup&) override;
//check if contains pedsubtr data = 0
bool hasNegativePedSubtr(const edm::DetSetVector<SiStripRawDigi>::detset& channelDigis, uint16_t aPair);
bool identifyTickmarks(const edm::DetSetVector<SiStripRawDigi>::detset& channelDigis, const uint16_t threshold);
edm::DetSetVector<SiStripRawDigi>::detset::const_iterator findTwoConsecutive(
const edm::DetSetVector<SiStripRawDigi>::detset& channelDigis, const uint16_t threshold, uint16_t& aCounter);
//tag of spydata collection
edm::InputTag spyScopeRawDigisTag_;
edm::InputTag spyPedSubtrDigisTag_;
edm::EDGetTokenT<edm::DetSetVector<SiStripRawDigi> > spyScopeRawDigisToken_;
edm::EDGetTokenT<edm::DetSetVector<SiStripRawDigi> > spyPedSubtrDigisToken_;
//tag of l1A and apveAddress counters
edm::InputTag spyL1Tag_;
edm::InputTag spyTotCountTag_;
edm::InputTag spyAPVeTag_;
edm::EDGetTokenT<std::vector<uint32_t> > spyL1Token_;
edm::EDGetTokenT<std::vector<uint32_t> > spyTotCountToken_;
edm::EDGetTokenT<std::vector<uint32_t> > spyAPVeToken_;
uint32_t minDigiRange_;
uint32_t maxDigiRange_;
uint32_t minDigitalLow_;
uint32_t maxDigitalLow_;
uint32_t minDigitalHigh_;
uint32_t maxDigitalHigh_;
edm::EventNumber_t evt_;
//folder name for histograms in DQMStore
std::string folderName_;
//book detailed histograms even if they will be empty (for merging)
bool fillAllDetailedHistograms_;
//do histos vs time with time=event number. Default time = orbit number (s)
bool fillWithEvtNum_;
bool fillWithLocalEvtNum_;
SPYHistograms histManager_;
uint16_t firstHeaderBit_;
uint16_t firstTrailerBit_;
sistrip::SpyUtilities::FrameQuality frameQuality_;
std::ofstream outfile_[20];
std::vector<std::string> outfileNames_;
std::map<std::string, unsigned int> outfileMap_;
bool writeCabling_;
edm::ESGetToken<TkDetMap, TrackerTopologyRcd> tkDetMapToken_;
edm::ESGetToken<SiStripFedCabling, SiStripFedCablingRcd> fedCablingToken_;
const SiStripFedCabling* fedCabling_;
edm::ESWatcher<SiStripFedCablingRcd> cablingWatcher_;
void updateFedCabling(const SiStripFedCablingRcd& rcd);
};
using edm::LogError;
using edm::LogInfo;
using edm::LogWarning;
//
// Constructors and destructor
//
SiStripSpyMonitorModule::SiStripSpyMonitorModule(const edm::ParameterSet& iConfig)
: spyScopeRawDigisTag_(iConfig.getUntrackedParameter<edm::InputTag>(
"SpyScopeRawDigisTag", edm::InputTag("SiStripSpyUnpacker", "ScopeRawDigis"))),
spyPedSubtrDigisTag_(
iConfig.getUntrackedParameter<edm::InputTag>("SpyPedSubtrDigisTag", edm::InputTag("SiStripFEDEmulator", ""))),
spyL1Tag_(iConfig.getUntrackedParameter<edm::InputTag>("SpyL1Tag",
edm::InputTag("SiStripSpyDigiConverter", "L1ACount"))),
spyTotCountTag_(iConfig.getUntrackedParameter<edm::InputTag>(
"SpyTotalEventCountTag", edm::InputTag("SiStripSpyDigiConverter", "TotalEventCount"))),
spyAPVeTag_(iConfig.getUntrackedParameter<edm::InputTag>("SpyAPVeTag",
edm::InputTag("SiStripSpyDigiConverter", "APVAddress"))),
folderName_(iConfig.getUntrackedParameter<std::string>("HistogramFolderName",
"SiStrip/ReadoutView/SpyMonitoringSummary")),
fillAllDetailedHistograms_(iConfig.getUntrackedParameter<bool>("FillAllDetailedHistograms", false)),
fillWithEvtNum_(iConfig.getUntrackedParameter<bool>("FillWithEventNumber", false)),
fillWithLocalEvtNum_(iConfig.getUntrackedParameter<bool>("FillWithLocalEventNumber", false)),
firstHeaderBit_(0),
firstTrailerBit_(0),
outfileNames_(iConfig.getUntrackedParameter<std::vector<std::string> >("OutputErrors")),
writeCabling_(iConfig.getUntrackedParameter<bool>("WriteCabling", false)),
tkDetMapToken_(esConsumes<edm::Transition::BeginRun>()),
fedCablingToken_(esConsumes<>()),
cablingWatcher_(this, &SiStripSpyMonitorModule::updateFedCabling) {
spyScopeRawDigisToken_ = consumes<edm::DetSetVector<SiStripRawDigi> >(spyScopeRawDigisTag_);
spyPedSubtrDigisToken_ = consumes<edm::DetSetVector<SiStripRawDigi> >(spyPedSubtrDigisTag_);
spyL1Token_ = consumes<std::vector<uint32_t> >(spyL1Tag_);
spyTotCountToken_ = consumes<std::vector<uint32_t> >(spyTotCountTag_);
spyAPVeToken_ = consumes<std::vector<uint32_t> >(spyAPVeTag_);
evt_ = 0;
std::ostringstream pDebugStream;
histManager_.initialise(iConfig, &pDebugStream);
const unsigned int nFiles = outfileNames_.size();
for (unsigned int i(0); i < nFiles; i++) {
std::ostringstream lName;
lName << outfileNames_.at(i) << ".out";
if (i < 20)
outfile_[i].open(lName.str().c_str(), std::ios::out);
outfileMap_[outfileNames_.at(i)] = i;
}
frameQuality_.minDigiRange = static_cast<uint16_t>(iConfig.getUntrackedParameter<uint32_t>("MinDigiRange", 100));
frameQuality_.maxDigiRange = static_cast<uint16_t>(iConfig.getUntrackedParameter<uint32_t>("MaxDigiRange", 1024));
frameQuality_.minZeroLight = static_cast<uint16_t>(iConfig.getUntrackedParameter<uint32_t>("MinZeroLight", 0));
frameQuality_.maxZeroLight = static_cast<uint16_t>(iConfig.getUntrackedParameter<uint32_t>("MaxZeroLight", 1024));
frameQuality_.minTickHeight = static_cast<uint16_t>(iConfig.getUntrackedParameter<uint32_t>("MinTickHeight", 0));
frameQuality_.maxTickHeight = static_cast<uint16_t>(iConfig.getUntrackedParameter<uint32_t>("MaxTickHeight", 1024));
}
SiStripSpyMonitorModule::~SiStripSpyMonitorModule() {
const unsigned int nFiles = outfileNames_.size();
for (unsigned int i(0); i < nFiles; i++) {
outfile_[i].close();
}
outfileMap_.clear();
outfileNames_.clear();
}
void SiStripSpyMonitorModule::updateFedCabling(const SiStripFedCablingRcd& rcd) {
fedCabling_ = &rcd.get(fedCablingToken_);
}
void SiStripSpyMonitorModule::dqmBeginRun(const edm::Run& r, const edm::EventSetup& c) {
evt_ = 0;
firstHeaderBit_ = 0;
firstTrailerBit_ = 0;
}
void SiStripSpyMonitorModule::bookHistograms(DQMStore::IBooker& ibooker,
const edm::Run& run,
const edm::EventSetup& eSetup) {
ibooker.setCurrentFolder(folderName_);
LogInfo("SiStripSpyMonitorModule") << " Histograms will be written in " << folderName_
<< ". Current folder is : " << ibooker.pwd() << std::endl;
const auto tkDetMap = &eSetup.getData(tkDetMapToken_);
//this propagates dqm_ to the histoclass, must be called !
histManager_.bookTopLevelHistograms(ibooker, tkDetMap);
if (fillAllDetailedHistograms_)
histManager_.bookAllFEDHistograms(ibooker);
//dummy error object
SPYHistograms::Errors lError = {};
for (uint16_t lFedId = sistrip::FED_ID_MIN; lFedId <= sistrip::FED_ID_MAX; ++lFedId)
histManager_.bookFEDHistograms(ibooker, lFedId, lError, true);
}
// ------------ method called to for each event ------------
void SiStripSpyMonitorModule::analyze(const edm::Event& iEvent, const edm::EventSetup& iSetup) {
//update cabling and pedestals
cablingWatcher_.check(iSetup);
if (evt_ == 0 && writeCabling_) {
std::ofstream lOutCabling;
lOutCabling.open("trackerDetId_FEDIdChNum_list.txt", std::ios::out);
for (uint16_t lFedId = sistrip::FED_ID_MIN; lFedId <= sistrip::FED_ID_MAX; ++lFedId) { //loop on feds
for (uint16_t lFedChannel = 0; lFedChannel < sistrip::FEDCH_PER_FED; lFedChannel++) { //loop on channels
const FedChannelConnection& lConnection = fedCabling_->fedConnection(lFedId, lFedChannel);
if (!lConnection.isConnected())
continue;
uint32_t lDetId = lConnection.detId();
lOutCabling << "FED ID = " << lFedId << ", Channel = " << lFedChannel
<< ",fedkey = " << sistrip::FEDCH_PER_FED * lFedId + lFedChannel << ", detId = " << lDetId
<< std::endl;
}
}
lOutCabling.close();
}
//For spy data
//get map of TotalEventCount and L1ID, indexed by fedId, and APVaddress indexed by fedIndex.
edm::Handle<std::vector<uint32_t> > lSpyL1IDHandle, lSpyTotCountHandle, lSpyAPVeHandle;
try {
iEvent.getByToken(spyL1Token_, lSpyL1IDHandle);
iEvent.getByToken(spyTotCountToken_, lSpyTotCountHandle);
iEvent.getByToken(spyAPVeToken_, lSpyAPVeHandle);
} catch (const cms::Exception& e) {
LogError("SiStripSpyMonitorModule") << e.what();
return;
}
//const std::map<uint32_t,uint32_t> & lSpyMaxCountMap = *lSpyL1IDHandle;
//const std::map<uint32_t,uint32_t> & lSpyMinCountMap = *lSpyTotCountHandle;
const std::vector<uint32_t>& lSpyAPVeVec = *lSpyAPVeHandle;
//retrieve the scope digis
edm::Handle<edm::DetSetVector<SiStripRawDigi> > digisHandle;
try {
iEvent.getByToken(spyScopeRawDigisToken_, digisHandle);
} catch (const cms::Exception& e) {
LogError("SiStripSpyMonitorModule") << e.what();
return;
}
const edm::DetSetVector<SiStripRawDigi>* lInputDigis = digisHandle.product();
//retrieve the reordered payload digis
edm::Handle<edm::DetSetVector<SiStripRawDigi> > payloadHandle;
try {
iEvent.getByToken(spyPedSubtrDigisToken_, payloadHandle);
} catch (const cms::Exception& e) {
LogError("SiStripSpyMonitorModule") << e.what();
return;
}
const edm::DetSetVector<SiStripRawDigi>* lPayloadDigis = payloadHandle.product();
//for first event only
//loop first on channels to calculate majority value of when the first header bit is found.
//output info message to give the value found
//should currently be 6 but may vary in the futur
//then we can check firstTrailerBit is +256+24 after
if (evt_ == 0) {
sistrip::SpyUtilities::getMajorityHeader(lInputDigis, firstHeaderBit_);
firstTrailerBit_ = firstHeaderBit_ + 24 + sistrip::STRIPS_PER_FEDCH;
}
//initialise some counters, filled in histos eventually
SPYHistograms::ErrorCounters lCounters;
lCounters.nNoData = 0;
lCounters.nLowRange = 0;
lCounters.nHighRange = 0;
lCounters.nMinZero = 0;
lCounters.nMaxSat = 0;
lCounters.nLowPb = 0;
lCounters.nHighPb = 0;
lCounters.nOOS = 0;
lCounters.nOtherPbs = 0;
lCounters.nAPVError = 0;
lCounters.nAPVAddressError = 0;
lCounters.nNegPeds = 0;
//fill event number for output text files
const unsigned int nFiles = outfileNames_.size();
for (unsigned int i(0); i < nFiles; i++) {
outfile_[i] << "**** evt " << iEvent.id().event() << " ****" << std::endl;
}
//loop over all FEDs and channels
for (uint16_t lFedId = sistrip::FED_ID_MIN; lFedId <= sistrip::FED_ID_MAX; ++lFedId) { //loop on feds
SPYHistograms::Errors lFEDErrors;
lFEDErrors.hasNoData = false;
lFEDErrors.hasLowRange = false;
lFEDErrors.hasHighRange = false;
lFEDErrors.hasMinZero = false;
lFEDErrors.hasMaxSat = false;
lFEDErrors.hasLowPb = false;
lFEDErrors.hasHighPb = false;
lFEDErrors.hasOOS = false;
lFEDErrors.hasOtherPbs = false;
lFEDErrors.hasErrorBit0 = false;
lFEDErrors.hasErrorBit1 = false;
lFEDErrors.hasAPVAddressError0 = false;
lFEDErrors.hasAPVAddressError1 = false;
lFEDErrors.hasNegPeds = false;
uint32_t lAPVAddrRef = lSpyAPVeVec.at(lFedId);
for (uint16_t lFedChannel = 0; lFedChannel < sistrip::FEDCH_PER_FED; lFedChannel++) { //loop on channels
uint32_t lFedIndex = sistrip::FEDCH_PER_FED * lFedId + lFedChannel;
const FedChannelConnection& lConnection = fedCabling_->fedConnection(lFedId, lFedChannel);
if (!lConnection.isConnected())
continue;
uint32_t lDetId = lConnection.detId();
//uint16_t lNPairs = lConnection.nApvPairs();
uint16_t lPair = lConnection.apvPairNumber();
edm::DetSetVector<SiStripRawDigi>::const_iterator lDigis = lInputDigis->find(lFedIndex);
//pedsubtr digis
edm::DetSetVector<SiStripRawDigi>::const_iterator lPayload = lPayloadDigis->find(lDetId);
//no digis found, continue.
if (lDigis == lInputDigis->end()) {
LogDebug("SiStripSpyMonitorModule") << " -- digis not found in ScopeRawDigis map for FEDID " << lFedId
<< " and FED channel " << lFedChannel << std::endl;
continue;
}
sistrip::SpyUtilities::Frame lFrame = sistrip::SpyUtilities::extractFrameInfo(*lDigis);
SPYHistograms::Errors lErrors;
lErrors.hasNoData = false;
lErrors.hasLowRange = false;
lErrors.hasHighRange = false;
lErrors.hasMinZero = false;
lErrors.hasMaxSat = false;
lErrors.hasLowPb = false;
lErrors.hasHighPb = false;
lErrors.hasOOS = false;
lErrors.hasOtherPbs = false;
lErrors.hasErrorBit0 = false;
lErrors.hasErrorBit1 = false;
lErrors.hasAPVAddressError0 = false;
lErrors.hasAPVAddressError1 = false;
lErrors.hasNegPeds = false;
uint16_t lRange = sistrip::SpyUtilities::range(lFrame);
uint16_t lThreshold = sistrip::SpyUtilities::threshold(lFrame);
if (lRange == 0) {
lCounters.nNoData++;
lErrors.hasNoData = true;
lFEDErrors.hasNoData = true;
if (outfileMap_.find("NoData") != outfileMap_.end())
outfile_[outfileMap_["NoData"]] << lFedId << " " << lFedChannel << " " << lDetId << std::endl;
} else if (lFrame.digitalLow == 0 && lRange > 0) {
lCounters.nMinZero++;
lErrors.hasMinZero = true;
lFEDErrors.hasMinZero = true;
if (outfileMap_.find("MinZero") != outfileMap_.end())
outfile_[outfileMap_["MinZero"]] << lFedId << " " << lFedChannel << " " << lDetId << std::endl;
} else if (lFrame.digitalHigh >= 1023) {
lCounters.nMaxSat++;
lErrors.hasMaxSat = true;
lFEDErrors.hasMaxSat = true;
if (outfileMap_.find("MaxSat") != outfileMap_.end())
outfile_[outfileMap_["MaxSat"]] << lFedId << " " << lFedChannel << " " << lDetId << std::endl;
} else if (lRange > 0 && lRange < frameQuality_.minDigiRange) {
lCounters.nLowRange++;
lErrors.hasLowRange = true;
lFEDErrors.hasLowRange = true;
if (outfileMap_.find("LowRange") != outfileMap_.end())
outfile_[outfileMap_["LowRange"]] << lFedId << " " << lFedChannel << " " << lDetId << std::endl;
} else if (lRange > frameQuality_.maxDigiRange) {
lCounters.nHighRange++;
lErrors.hasHighRange = true;
lFEDErrors.hasHighRange = true;
if (outfileMap_.find("HighRange") != outfileMap_.end())
outfile_[outfileMap_["HighRange"]] << lFedId << " " << lFedChannel << " " << lDetId << std::endl;
} else if (lFrame.digitalLow < frameQuality_.minZeroLight || lFrame.digitalLow > frameQuality_.maxZeroLight) {
lCounters.nLowPb++;
lErrors.hasLowPb = true;
lFEDErrors.hasLowPb = true;
if (outfileMap_.find("LowPb") != outfileMap_.end())
outfile_[outfileMap_["LowPb"]] << lFedId << " " << lFedChannel << " " << lDetId << std::endl;
} else if (lFrame.digitalHigh < frameQuality_.minTickHeight || lFrame.digitalHigh > frameQuality_.maxTickHeight) {
lCounters.nHighPb++;
lErrors.hasHighPb = true;
lFEDErrors.hasHighPb = true;
if (outfileMap_.find("HighPb") != outfileMap_.end())
outfile_[outfileMap_["HighPb"]] << lFedId << " " << lFedChannel << " " << lDetId << std::endl;
} else if (lFrame.firstHeaderBit != firstHeaderBit_ && //header in wrong position
((lFrame.firstHeaderBit != sistrip::SPY_SAMPLES_PER_CHANNEL && //header and
lFrame.firstTrailerBit != sistrip::SPY_SAMPLES_PER_CHANNEL && //trailer found
lFrame.firstTrailerBit - lFrame.firstHeaderBit == 280) || //+ right distance between them
(lFrame.firstHeaderBit != sistrip::SPY_SAMPLES_PER_CHANNEL && // or header found
lFrame.firstTrailerBit == sistrip::SPY_SAMPLES_PER_CHANNEL && // and trailer not found
lFrame.firstHeaderBit > 16) || // corresponding to back-to-back frame late enough
(lFrame.firstHeaderBit == sistrip::SPY_SAMPLES_PER_CHANNEL && // or header not found
identifyTickmarks(*lDigis, lThreshold)) // but such that tickmark compatible with OOS frame
)) {
lCounters.nOOS++;
lErrors.hasOOS = true;
lFEDErrors.hasOOS = true;
if (outfileMap_.find("OOS") != outfileMap_.end())
outfile_[outfileMap_["OOS"]] << lFedId << " " << lFedChannel << " " << lDetId << std::endl;
} else if (!(lFrame.firstHeaderBit == firstHeaderBit_ && lFrame.firstTrailerBit == firstTrailerBit_)) {
lCounters.nOtherPbs++;
lErrors.hasOtherPbs = true;
lFEDErrors.hasOtherPbs = true;
if (outfileMap_.find("OtherPbs") != outfileMap_.end())
outfile_[outfileMap_["OtherPbs"]] << lFedId << " " << lFedChannel << " " << lDetId << std::endl;
} else if (lFrame.apvErrorBit.first || lFrame.apvErrorBit.second) {
if (lFrame.apvErrorBit.first) {
lCounters.nAPVError++;
lErrors.hasErrorBit0 = true;
lFEDErrors.hasErrorBit0 = true;
}
if (lFrame.apvErrorBit.second) {
lCounters.nAPVError++;
lErrors.hasErrorBit1 = true;
lFEDErrors.hasErrorBit1 = true;
}
if (outfileMap_.find("APVError") != outfileMap_.end()) {
outfile_[outfileMap_["APVError"]] << lFedId << " " << lFedChannel << " " << lDetId;
if (lFrame.apvErrorBit.first)
outfile_[outfileMap_["APVError"]] << " APV0" << std::endl;
if (lFrame.apvErrorBit.second)
outfile_[outfileMap_["APVError"]] << " APV1" << std::endl;
}
} else if (lFrame.apvAddress.first != lAPVAddrRef || lFrame.apvAddress.second != lAPVAddrRef) {
if (lFrame.apvAddress.first != lAPVAddrRef) {
lCounters.nAPVAddressError++;
lErrors.hasAPVAddressError0 = true;
lFEDErrors.hasAPVAddressError0 = true;
}
if (lFrame.apvAddress.second != lAPVAddrRef) {
lCounters.nAPVAddressError++;
lErrors.hasAPVAddressError1 = true;
lFEDErrors.hasAPVAddressError1 = true;
}
if (outfileMap_.find("APVAddressError") != outfileMap_.end()) {
outfile_[outfileMap_["APVAddressError"]] << lFedId << " " << lFedChannel << " " << lDetId << std::endl;
if (lFrame.apvAddress.first != lAPVAddrRef)
outfile_[outfileMap_["APVAddressError"]] << " APV0" << std::endl;
if (lFrame.apvAddress.second != lAPVAddrRef)
outfile_[outfileMap_["APVAddressError"]] << " APV1" << std::endl;
}
} else if (lPayload != lPayloadDigis->end() && hasNegativePedSubtr(*lPayload, lPair)) {
lCounters.nNegPeds++;
lErrors.hasNegPeds = true;
lFEDErrors.hasNegPeds = true;
if (outfileMap_.find("NegPeds") != outfileMap_.end())
outfile_[outfileMap_["NegPeds"]] << lFedId << " " << lFedChannel << " " << lDetId << std::endl;
}
histManager_.fillDetailedHistograms(lErrors, lFrame, lFedId, lFedChannel);
} //loop on channels
histManager_.fillFEDHistograms(lFEDErrors, lFedId);
} //loop on feds
double lTime;
//if (fillWithEvtNum_)
//lTime = iEvent.id().event();
//else if (fillWithLocalEvtNum_) lTime = evt_;
//no orbit number for spy data !!
//else lTime = iEvent.orbitNumber()/11223.;
if (fillWithLocalEvtNum_) {
// casting from unsigned long long to a double here
// doing it explicitely
lTime = static_cast<double>(evt_);
} else {
// casting from unsigned long long to a double here
// doing it explicitely
lTime = static_cast<double>(iEvent.id().event());
}
histManager_.fillCountersHistograms(lCounters, lTime);
//used to fill histo vs time with local event number....
evt_++;
} //analyze method
bool SiStripSpyMonitorModule::hasNegativePedSubtr(const edm::DetSetVector<SiStripRawDigi>::detset& channelDigis,
uint16_t aPair) {
edm::DetSetVector<SiStripRawDigi>::detset::const_iterator iDigi = channelDigis.begin();
const edm::DetSetVector<SiStripRawDigi>::detset::const_iterator endChannelDigis = channelDigis.end();
uint32_t count = 0;
for (; iDigi != endChannelDigis; ++iDigi) {
const uint16_t val = iDigi->adc();
uint16_t lPair = static_cast<uint16_t>(count / sistrip::STRIPS_PER_FEDCH);
if (val == 0 && lPair == aPair)
return true;
count++;
}
return false;
}
bool SiStripSpyMonitorModule::identifyTickmarks(const edm::DetSetVector<SiStripRawDigi>::detset& channelDigis,
const uint16_t threshold) {
//start from the end
uint16_t count = sistrip::SPY_SAMPLES_PER_CHANNEL - 3;
uint16_t lastPos = sistrip::SPY_SAMPLES_PER_CHANNEL;
uint16_t nTrailers = 0;
edm::DetSetVector<SiStripRawDigi>::detset::const_iterator iDigi = channelDigis.end();
for (; count == 0; count--) {
iDigi = findTwoConsecutive(channelDigis, threshold, count);
//if found, in different position = 70 before than previous value, go and look 70 before
if (iDigi != channelDigis.end() && (lastPos == sistrip::SPY_SAMPLES_PER_CHANNEL || count == lastPos + 1 - 70)) {
nTrailers++;
lastPos = count - 1;
count -= 70;
}
//else keep looking
else
count--;
}
if (nTrailers > 1)
LogDebug("SiStripSpyMonitorModule") << " -- Found " << nTrailers << " trailers every 70 clock cycles for channel "
<< channelDigis.detId() << ", evt " << evt_ << std::endl;
//if only one found, should be < 280 otherwise header should have been found and this method would not be called
return (nTrailers > 1) || (nTrailers == 1 && lastPos < 280);
}
edm::DetSetVector<SiStripRawDigi>::detset::const_iterator SiStripSpyMonitorModule::findTwoConsecutive(
const edm::DetSetVector<SiStripRawDigi>::detset& channelDigis, const uint16_t threshold, uint16_t& aCounter) {
const edm::DetSetVector<SiStripRawDigi>::detset::const_iterator endChannelDigis = channelDigis.end();
edm::DetSetVector<SiStripRawDigi>::detset::const_iterator lStart = channelDigis.begin() + aCounter;
bool foundTrailer = false;
// Loop over digis looking for last two above threshold
uint8_t aboveThreshold = 0;
for (; lStart != endChannelDigis; ++lStart) {
if (lStart->adc() > threshold) {
aboveThreshold++;
} else {
aboveThreshold = 0;
}
if (aboveThreshold == 2) {
foundTrailer = true;
break;
}
aCounter++;
} //end of loop over digis
if (foundTrailer)
return lStart;
else {
aCounter = sistrip::SPY_SAMPLES_PER_CHANNEL;
return endChannelDigis;
}
}
//
// Define as a plug-in
//
#include "FWCore/Framework/interface/MakerMacros.h"
DEFINE_FWK_MODULE(SiStripSpyMonitorModule);
|