CMS 3D CMS Logo

SiStripFEDDataCheck.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: DQM/SiStripMonitorHardware
4 // Class: SiStripFEDCheckPlugin
5 //
10 //
11 // Original Author: Nicholas Cripps
12 // Created: 2008/09/16
13 //
14 //
15 #include <memory>
16 
30 
37 
40 
42 
44 
45 #include "DQM/SiStripMonitorHardware/interface/FEDErrors.hh"
46 
48 
49 //
50 // Class declaration
51 //
52 
54 public:
56  ~SiStripFEDCheckPlugin() override;
57  static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
58 
59 private:
60  void analyze(const edm::Event&, const edm::EventSetup&) override;
61  void dqmEndRun(edm::Run const&, edm::EventSetup const&) override;
62 
63  void bookHistograms(DQMStore::IBooker&, edm::Run const&, edm::EventSetup const&) override;
64 
65  bool hasFatalError(const FEDRawData& fedData, unsigned int fedId) const;
66  bool hasNonFatalError(const FEDRawData& fedData, unsigned int fedId) const;
67  void updateCabling(const edm::EventSetup& eventSetup);
68 
69  inline void fillPresent(unsigned int fedId, bool present);
70  inline void fillFatalError(unsigned int fedId, bool fatalError);
71  inline void fillNonFatalError(unsigned int fedId, float nonFatalError);
72 
73  void doUpdateIfNeeded();
74  void updateHistograms();
75 
80 
81  //Histograms
87 
90 
91  //For histogram cache
92  unsigned int
93  updateFrequency_; //Update histograms with cached values every n events. If zero then fill normally every event
94  //cache values
95  std::vector<unsigned int> fedsPresentBinContents_;
96  std::vector<unsigned int> fedFatalErrorBinContents_;
97  std::vector<unsigned int> fedNonFatalErrorBinContents_;
98  unsigned int eventCount_; //incremented by doUpdateIfNeeded()
99 
100  //Fine grained control of tests
102 
103  //Cabling
104  uint32_t cablingCacheId_;
106 
107  unsigned int siStripFedIdMin_;
108  unsigned int siStripFedIdMax_;
109 
111 };
112 
113 //
114 // Constructors and destructor
115 //
116 
118  : rawDataTag_(iConfig.getParameter<edm::InputTag>("RawDataTag")),
119  dirName_(iConfig.getUntrackedParameter<std::string>("DirName", "SiStrip/FEDIntegrity/")),
120  printDebug_(iConfig.getUntrackedParameter<bool>("PrintDebugMessages", false)),
121  doPLOTfedsPresent_(iConfig.getParameter<bool>("doPLOTfedsPresent")),
122  doPLOTfedFatalErrors_(iConfig.getParameter<bool>("doPLOTfedFatalErrors")),
123  doPLOTfedNonFatalErrors_(iConfig.getParameter<bool>("doPLOTfedNonFatalErrors")),
124  doPLOTnFEDinVsLS_(iConfig.getParameter<bool>("doPLOTnFEDinVsLS")),
125  doPLOTnFEDinWdataVsLS_(iConfig.getParameter<bool>("doPLOTnFEDinWdataVsLS")),
126  fedsPresent_(nullptr),
127  fedFatalErrors_(nullptr),
128  fedNonFatalErrors_(nullptr),
129  nFEDinVsLS_(nullptr),
130  nFEDinWdataVsLS_(nullptr),
131  updateFrequency_(iConfig.getUntrackedParameter<unsigned int>("HistogramUpdateFrequency", 0)),
132  fedsPresentBinContents_(FEDNumbering::MAXSiStripFEDID + 1, 0),
133  fedFatalErrorBinContents_(FEDNumbering::MAXSiStripFEDID + 1, 0),
134  fedNonFatalErrorBinContents_(FEDNumbering::MAXSiStripFEDID + 1, 0),
135  eventCount_(0),
136  doPayloadChecks_(iConfig.getUntrackedParameter<bool>("DoPayloadChecks", true)),
137  checkChannelLengths_(iConfig.getUntrackedParameter<bool>("CheckChannelLengths", true)),
138  checkPacketCodes_(iConfig.getUntrackedParameter<bool>("CheckChannelPacketCodes", true)),
139  checkFELengths_(iConfig.getUntrackedParameter<bool>("CheckFELengths", true)),
140  checkChannelStatusBits_(iConfig.getUntrackedParameter<bool>("CheckChannelStatus", true)),
141  verbose_(iConfig.getUntrackedParameter<bool>("verbose", false)),
142  cablingCacheId_(0) {
143  rawDataToken_ = consumes<FEDRawDataCollection>(rawDataTag_);
145  std::stringstream ss;
146  ss << "Payload checks are disabled but individual payload checks have been enabled. The following payload checks "
147  "will be skipped: ";
149  ss << "Channel length check, ";
150  if (checkPacketCodes_)
151  ss << "Channel packet code check, ";
153  ss << "Cabled channel status bits checks, ";
154  if (checkFELengths_)
155  ss << "FE Unit legnth check";
156  edm::LogWarning("SiStripFEDCheck") << ss.str();
157  }
158 
161 
162  conf_ = iConfig;
163 }
164 
166 
167 //
168 // Member functions
169 //
170 
171 // ------------ method called to for each event ------------
173  //Retrieve tracker topology from geometry
174  edm::ESHandle<TrackerTopology> tTopoHandle;
175  iSetup.get<TrackerTopologyRcd>().get(tTopoHandle);
176  const TrackerTopology* const tTopo = tTopoHandle.product();
177 
178  //update cabling
179  updateCabling(iSetup);
180 
181  //get raw data
182  edm::Handle<FEDRawDataCollection> rawDataCollectionHandle;
183  const bool gotData = iEvent.getByToken(rawDataToken_, rawDataCollectionHandle);
184  if (verbose_)
185  std::cout << "[SiStripFEDCheckPlugin::analyze] gotData ? " << (gotData ? "YES" : "NOPE") << std::endl;
186  if (!gotData) {
187  //module is required to silently do nothing when data is not present
188  return;
189  }
190  const FEDRawDataCollection& rawDataCollection = *rawDataCollectionHandle;
191 
192  //FED errors
193  FEDErrors lFedErrors;
194 
195  //loop over siStrip FED IDs
196  size_t nFEDin = 0;
197  size_t nFEDinWdata = 0;
198  for (unsigned int fedId = siStripFedIdMin_; fedId <= siStripFedIdMax_; fedId++) {
199  const FEDRawData& fedData = rawDataCollection.FEDData(fedId);
200 
201  //create an object to fill all errors
202  //third param to false:save time by not initialising anything not used here
203  lFedErrors.initialiseFED(fedId, cabling_, tTopo, false);
204 
205  //check data exists
206  if (!fedData.size() || !fedData.data()) {
207  fillPresent(fedId, false);
208  continue;
209  }
210  if (verbose_)
211  std::cout << "FED " << fedId;
212  if (verbose_)
213  std::cout << " fedData.size(): " << fedData.size();
214  if (verbose_)
215  std::cout << " fedData.data(): " << fedData.data() << std::endl;
216  if (fedData.size())
217  nFEDin++;
218  if (fedData.size() && fedData.data())
219  nFEDinWdata++;
220 
221  //fill buffer present histogram
222  fillPresent(fedId, true);
223 
224  //check for fatal errors
225  //no need for debug output
226  bool hasFatalErrors = false;
227  float rateNonFatal = 0;
228 
229  std::unique_ptr<const sistrip::FEDBuffer> buffer;
230 
231  if (!lFedErrors.fillFatalFEDErrors(fedData, 0)) {
232  hasFatalErrors = true;
233  } else {
234  //need to construct full object to go any further
236  const auto st_buffer = sistrip::preconstructCheckFEDBuffer(fedData, true);
237  if (sistrip::FEDBufferStatusCode::SUCCESS != st_buffer) {
238  throw cms::Exception("FEDBuffer") << st_buffer << " (check debug output for more details)";
239  }
240  auto tmp_buffer = std::make_unique<sistrip::FEDBuffer>(fedData, true);
241  tmp_buffer->findChannels();
242  buffer = std::move(tmp_buffer); // const now
243  if (doPayloadChecks_) {
244  bool channelLengthsOK = checkChannelLengths_ ? buffer->checkChannelLengthsMatchBufferLength() : true;
245  bool channelPacketCodesOK = checkPacketCodes_ ? buffer->checkChannelPacketCodes() : true;
246  bool feLengthsOK = checkFELengths_ ? buffer->checkFEUnitLengths() : true;
247  if (!channelLengthsOK || !channelPacketCodesOK || !feLengthsOK) {
248  hasFatalErrors = true;
249  }
250  }
252  rateNonFatal = lFedErrors.fillNonFatalFEDErrors(buffer.get(), cabling_);
253  }
254  }
255 
256  if (hasFatalErrors) {
257  fillFatalError(fedId, true);
258  if (printDebug_) {
259  if (!buffer.get()) {
260  const auto st_buffer = sistrip::preconstructCheckFEDBuffer(fedData, true);
261  if (sistrip::FEDBufferStatusCode::SUCCESS != st_buffer) {
262  throw cms::Exception("FEDBuffer") << st_buffer << " (check debug output for more details)";
263  }
264  auto tmp_buffer = std::make_unique<sistrip::FEDBuffer>(fedData, true);
265  tmp_buffer->findChannels();
266  buffer = std::move(tmp_buffer); // const now
267  }
268  edm::LogInfo("SiStripFEDCheck") << "Fatal error with FED ID " << fedId << ". Check summary: " << std::endl
269  << buffer->checkSummary() << std::endl;
270  std::stringstream ss;
271  buffer->dump(ss);
272  edm::LogInfo("SiStripFEDCheck") << ss.str();
273  }
274  } else {
275  fillFatalError(fedId, false);
276  //fill non-fatal errors histogram if there were no fatal errors
277  fillNonFatalError(fedId, rateNonFatal);
278  if (printDebug_ && rateNonFatal > 0) {
279  if (!buffer.get()) {
280  const auto st_buffer = sistrip::preconstructCheckFEDBuffer(fedData, true);
281  if (sistrip::FEDBufferStatusCode::SUCCESS != st_buffer) {
282  throw cms::Exception("FEDBuffer") << st_buffer << " (check debug output for more details)";
283  }
284  auto tmp_buffer = std::make_unique<sistrip::FEDBuffer>(fedData, true);
285  tmp_buffer->findChannels();
286  buffer = std::move(tmp_buffer); // const now
287  }
288  edm::LogInfo("SiStripFEDCheck") << "Non-fatal error with FED ID " << fedId << " for " << rateNonFatal
289  << " of the channels. Check summary: " << std::endl
290  << buffer->checkSummary() << std::endl;
291  std::stringstream ss;
292  buffer->dump(ss);
293  edm::LogInfo("SiStripFEDCheck") << ss.str();
294  }
295  }
296  } //loop over FED IDs
297  if (verbose_)
298  std::cout << "nFEDin: " << nFEDin << " nFEDinWdata: " << nFEDinWdata << std::endl;
299  if (doPLOTnFEDinVsLS_)
300  nFEDinVsLS_->Fill(static_cast<double>(iEvent.id().luminosityBlock()), nFEDin);
302  nFEDinWdataVsLS_->Fill(static_cast<double>(iEvent.id().luminosityBlock()), nFEDinWdata);
303 
304  //update histograms if needed
306 }
307 
308 // ------------ method called once each job just before starting event loop ------------
310  const edm::Run& run,
311  const edm::EventSetup& eSetup) {
312  size_t nFED = siStripFedIdMax_ - siStripFedIdMin_ + 1;
313  double xFEDmin = siStripFedIdMin_ - 0.5;
314  double xFEDmax = siStripFedIdMax_ + 0.5;
315 
316  //get DQM store
317  ibooker.setCurrentFolder(dirName_);
318  //book histograms
319  if (doPLOTfedsPresent_) {
320  fedsPresent_ =
321  ibooker.book1D("FEDEntries", "Number of times FED buffer is present in data", nFED, xFEDmin, xFEDmax);
322  fedsPresent_->setAxisTitle("FED-ID", 1);
323  }
324 
325  if (doPLOTfedFatalErrors_) {
326  fedFatalErrors_ = ibooker.book1D("FEDFatal", "Number of fatal errors in FED buffer", nFED, xFEDmin, xFEDmax);
327  fedFatalErrors_->setAxisTitle("FED-ID", 1);
328  }
329 
332  ibooker.book1D("FEDNonFatal", "Number of non fatal errors in FED buffer", nFED, xFEDmin, xFEDmax);
333  fedNonFatalErrors_->setAxisTitle("FED-ID", 1);
334  }
335 
336  int LSBin = conf_.getParameter<int>("LSBin");
337  double LSMin = conf_.getParameter<double>("LSMin");
338  double LSMax = conf_.getParameter<double>("LSMax");
339 
340  if (doPLOTnFEDinVsLS_) {
341  nFEDinVsLS_ =
342  ibooker.bookProfile("nFEDinVsLS", "number of FED in Vs LS", LSBin, LSMin, LSMax, nFED, xFEDmin, xFEDmax);
343  nFEDinVsLS_->setAxisTitle("LS", 1);
344  nFEDinVsLS_->setAxisTitle("FED-ID", 2);
345  }
346 
348  nFEDinWdataVsLS_ = ibooker.bookProfile(
349  "nFEDinWdataVsLS", "number of FED in (with data) Vs LS", LSBin, LSMin, LSMax, nFED, xFEDmin, xFEDmax);
350  nFEDinWdataVsLS_->setAxisTitle("LS", 1);
351  nFEDinWdataVsLS_->setAxisTitle("FED-ID", 2);
352  }
353 }
354 
355 // ------------ method called once each run just after ending the event loop ------------
357 
359  uint32_t currentCacheId = eventSetup.get<SiStripFedCablingRcd>().cacheIdentifier();
360  if (cablingCacheId_ != currentCacheId) {
361  edm::ESHandle<SiStripFedCabling> cablingHandle;
362  eventSetup.get<SiStripFedCablingRcd>().get(cablingHandle);
363  cabling_ = cablingHandle.product();
364  cablingCacheId_ = currentCacheId;
365  }
366 }
367 
368 void SiStripFEDCheckPlugin::fillPresent(unsigned int fedId, bool present) {
369  if (present) {
370  if (updateFrequency_)
372  else if (doPLOTfedsPresent_)
374  }
375 }
376 
377 void SiStripFEDCheckPlugin::fillFatalError(unsigned int fedId, bool fatalError) {
378  if (updateFrequency_) {
379  if (fatalError)
381  } else {
382  //fedFatalErrors_->Fill( fatalError ? 1 : 0 );
383  if (fatalError)
386  }
387 }
388 
389 void SiStripFEDCheckPlugin::fillNonFatalError(unsigned int fedId, float nonFatalError) {
390  if (updateFrequency_) {
391  if (nonFatalError > 0)
392  fedNonFatalErrorBinContents_[fedId]++; //nonFatalError;
393  } else {
394  if (nonFatalError > 0)
397  }
398 }
399 
401  eventCount_++;
404  }
405 }
406 
408  //if the cache is not being used then do nothing
409  if (!updateFrequency_)
410  return;
411  unsigned int entriesFedsPresent = 0;
412  unsigned int entriesFatalErrors = 0;
413  unsigned int entriesNonFatalErrors = 0;
414  for (unsigned int fedId = siStripFedIdMin_, bin = 1; fedId < siStripFedIdMax_ + 1; fedId++, bin++) {
415  unsigned int fedsPresentBin = fedsPresentBinContents_[fedId];
416  if (doPLOTfedsPresent_)
417  fedsPresent_->getTH1()->SetBinContent(bin, fedsPresentBin);
418  entriesFedsPresent += fedsPresentBin;
419  unsigned int fedFatalErrorsBin = fedFatalErrorBinContents_[fedId];
421  fedFatalErrors_->getTH1()->SetBinContent(bin, fedFatalErrorsBin);
422  entriesFatalErrors += fedFatalErrorsBin;
423  unsigned int fedNonFatalErrorsBin = fedNonFatalErrorBinContents_[fedId];
425  fedNonFatalErrors_->getTH1()->SetBinContent(bin, fedNonFatalErrorsBin);
426  entriesNonFatalErrors += fedNonFatalErrorsBin;
427  }
428  if (doPLOTfedsPresent_)
429  fedsPresent_->getTH1()->SetEntries(entriesFedsPresent);
431  fedFatalErrors_->getTH1()->SetEntries(entriesFatalErrors);
433  fedNonFatalErrors_->getTH1()->SetEntries(entriesNonFatalErrors);
434 }
437 
438  // Directory to book histograms in
439  desc.addUntracked<std::string>("DirName", "SiStrip/FEDIntegrity/");
440  // Raw data collection
441  desc.add<edm::InputTag>("RawDataTag", edm::InputTag("source"));
442  // Number of events to cache info before updating histograms
443  // (set to zero to disable cache)
444  // HistogramUpdateFrequency = cms.untracked.uint32(0),
445  desc.addUntracked<unsigned int>("HistogramUpdateFrequency", 1000);
446  // Print info about errors buffer dumps to LogInfo(SiStripFEDCheck)
447  desc.addUntracked<bool>("PrintDebugMessages", false);
448  desc.add<bool>("doPLOTfedsPresent", true);
449  desc.add<bool>("doPLOTfedFatalErrors", true);
450  desc.add<bool>("doPLOTfedNonFatalErrors", true);
451  desc.add<bool>("doPLOTnFEDinVsLS", false);
452  desc.add<bool>("doPLOTnFEDinWdataVsLS", false);
453  // Write the DQM store to a file (DQMStore.root) at the end of the run
454  desc.addUntracked<bool>("WriteDQMStore", false);
455  // Use to disable all payload (non-fatal) checks
456  desc.addUntracked<bool>("DoPayloadChecks", true);
457  // Use to disable check on channel lengths
458  desc.addUntracked<bool>("CheckChannelLengths", true);
459  // Use to disable check on channel packet codes
460  desc.addUntracked<bool>("CheckChannelPacketCodes", true);
461  // Use to disable check on FE unit lengths in full debug header
462  desc.addUntracked<bool>("CheckFELengths", true);
463  // Use to disable check on channel status bits
464  desc.addUntracked<bool>("CheckChannelStatus", true);
465  desc.add<int>("LSBin", 5000);
466  desc.add<double>("LSMin", 0.5);
467  desc.add<double>("LSMax", 5000.5);
468 
469  descriptions.addDefault(desc);
470 }
471 
472 //
473 // Define as a plug-in
474 //
475 
ConfigurationDescriptions.h
FEDNumbering.h
edm::ESHandle::product
T const * product() const
Definition: ESHandle.h:86
SiStripFEDCheckPlugin::bookHistograms
void bookHistograms(DQMStore::IBooker &, edm::Run const &, edm::EventSetup const &) override
Definition: SiStripFEDDataCheck.cc:309
electrons_cff.bool
bool
Definition: electrons_cff.py:393
SiStripFEDCheckPlugin::fedFatalErrorBinContents_
std::vector< unsigned int > fedFatalErrorBinContents_
Definition: SiStripFEDDataCheck.cc:96
SiStripFEDCheckPlugin::fedsPresentBinContents_
std::vector< unsigned int > fedsPresentBinContents_
Definition: SiStripFEDDataCheck.cc:95
SiStripFEDCheckPlugin::updateFrequency_
unsigned int updateFrequency_
Definition: SiStripFEDDataCheck.cc:93
MessageLogger.h
funct::false
false
Definition: Factorize.h:29
ESHandle.h
SiStripFEDCheckPlugin::fillNonFatalError
void fillNonFatalError(unsigned int fedId, float nonFatalError)
Definition: SiStripFEDDataCheck.cc:389
edm::Run
Definition: Run.h:45
edm::EDGetTokenT< FEDRawDataCollection >
FEDRawDataCollection
Definition: FEDRawDataCollection.h:18
edm
HLT enums.
Definition: AlignableModifier.h:19
TrackerTopology
Definition: TrackerTopology.h:16
SiStripFEDCheckPlugin::siStripFedIdMax_
unsigned int siStripFedIdMax_
Definition: SiStripFEDDataCheck.cc:108
SiStripFEDCheckPlugin::analyze
void analyze(const edm::Event &, const edm::EventSetup &) override
Definition: SiStripFEDDataCheck.cc:172
SiStripFEDCheckPlugin::checkFELengths_
bool checkFELengths_
Definition: SiStripFEDDataCheck.cc:101
gather_cfg.cout
cout
Definition: gather_cfg.py:144
HLT_FULL_cff.InputTag
InputTag
Definition: HLT_FULL_cff.py:89287
edm::ParameterSetDescription
Definition: ParameterSetDescription.h:52
SiStripFedCabling.h
SiStripFEDCheckPlugin::doPLOTfedFatalErrors_
bool doPLOTfedFatalErrors_
Definition: SiStripFEDDataCheck.cc:82
dqm::implementation::NavigatorBase::setCurrentFolder
virtual void setCurrentFolder(std::string const &fullpath)
Definition: DQMStore.cc:32
DQMOneEDAnalyzer
Definition: DQMOneEDAnalyzer.h:20
DQMStore.h
dqm::legacy::MonitorElement
Definition: MonitorElement.h:461
EDAnalyzer.h
edm::LogInfo
Log< level::Info, false > LogInfo
Definition: MessageLogger.h:125
ConstantsForHardwareSystems.h
Constants and enumerated types for FED/FEC systems.
SiStripFedCabling
Contains cabling info at the device level, including DetId, APV pair numbers, hardware addresses,...
Definition: SiStripFedCabling.h:25
FEDRawData.h
SiStripFEDCheckPlugin::doPLOTnFEDinWdataVsLS_
bool doPLOTnFEDinWdataVsLS_
Definition: SiStripFEDDataCheck.cc:83
edm::Handle
Definition: AssociativeIterator.h:50
SiStripFEDCheckPlugin::checkPacketCodes_
bool checkPacketCodes_
Definition: SiStripFEDDataCheck.cc:101
edm::LogWarning
Log< level::Warning, false > LogWarning
Definition: MessageLogger.h:122
FEDRawData::data
const unsigned char * data() const
Return a const pointer to the beginning of the data buffer.
Definition: FEDRawData.cc:24
SiStripFEDCheckPlugin::doPLOTnFEDinVsLS_
bool doPLOTnFEDinVsLS_
Definition: SiStripFEDDataCheck.cc:83
DQMOneEDAnalyzer.h
FEDRawData
Definition: FEDRawData.h:19
SiStripFEDCheckPlugin
Definition: SiStripFEDDataCheck.cc:53
FEDNumbering
Definition: FEDNumbering.h:17
SiStripFEDCheckPlugin::cabling_
const SiStripFedCabling * cabling_
Definition: SiStripFEDDataCheck.cc:105
edmScanValgrind.buffer
buffer
Definition: edmScanValgrind.py:171
contentValuesCheck.ss
ss
Definition: contentValuesCheck.py:33
MakerMacros.h
TrackerTopology.h
SiStripFedCablingRcd
Definition: SiStripCondDataRecords.h:22
SiStripFEDCheckPlugin::checkChannelStatusBits_
bool checkChannelStatusBits_
Definition: SiStripFEDDataCheck.cc:101
TrackerTopologyRcd.h
SiStripFEDCheckPlugin::fedFatalErrors_
MonitorElement * fedFatalErrors_
Definition: SiStripFEDDataCheck.cc:85
edm::EventSetup::get
T get() const
Definition: EventSetup.h:80
DEFINE_FWK_MODULE
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
SiStripFEDBuffer.h
Service.h
dqm::impl::MonitorElement::Fill
void Fill(long long x)
Definition: MonitorElement.h:290
SiStripFEDCheckPlugin::dirName_
std::string dirName_
Definition: SiStripFEDDataCheck.cc:78
edm::ESHandle< TrackerTopology >
dqm::implementation::IBooker::bookProfile
MonitorElement * bookProfile(TString const &name, TString const &title, int nchX, double lowX, double highX, int, double lowY, double highY, char const *option="s", FUNC onbooking=NOOP())
Definition: DQMStore.h:322
SiStripFEDCheckPlugin::fedNonFatalErrorBinContents_
std::vector< unsigned int > fedNonFatalErrorBinContents_
Definition: SiStripFEDDataCheck.cc:97
SiStripFEDCheckPlugin::updateCabling
void updateCabling(const edm::EventSetup &eventSetup)
Definition: SiStripFEDDataCheck.cc:358
SiStripFEDCheckPlugin::fillPresent
void fillPresent(unsigned int fedId, bool present)
Definition: SiStripFEDDataCheck.cc:368
ParameterSetDescription.h
EDGetToken.h
eventCount_
example_stream int eventCount_
Definition: DQMEDAnalyzer.cc:66
FEDRawDataCollection::FEDData
const FEDRawData & FEDData(int fedid) const
retrieve data for fed
Definition: FEDRawDataCollection.cc:19
dqm::impl::MonitorElement::getTH1
virtual TH1 * getTH1()
Definition: MonitorElement.cc:969
SiStripFEDCheckPlugin::checkChannelLengths_
bool checkChannelLengths_
Definition: SiStripFEDDataCheck.cc:101
edm::ConfigurationDescriptions
Definition: ConfigurationDescriptions.h:28
SiStripFEDCheckPlugin::doUpdateIfNeeded
void doUpdateIfNeeded()
Definition: SiStripFEDDataCheck.cc:400
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
siStripFEDCheck_cfi.LSBin
LSBin
Definition: siStripFEDCheck_cfi.py:32
funct::true
true
Definition: Factorize.h:173
FEDNumbering::MAXSiStripFEDID
Definition: FEDNumbering.h:30
edm::ParameterSet
Definition: ParameterSet.h:47
Event.h
SiStripFEDCheckPlugin::cablingCacheId_
uint32_t cablingCacheId_
Definition: SiStripFEDDataCheck.cc:104
SiStripFEDCheckPlugin::fedsPresent_
MonitorElement * fedsPresent_
Definition: SiStripFEDDataCheck.cc:84
SiStripFEDCheckPlugin::updateHistograms
void updateHistograms()
Definition: SiStripFEDDataCheck.cc:407
createfilelist.int
int
Definition: createfilelist.py:10
iEvent
int iEvent
Definition: GenABIO.cc:224
sistrip::FEDBufferStatusCode::SUCCESS
FEDRawDataCollection.h
SiStripFEDCheckPlugin::verbose_
bool verbose_
Definition: SiStripFEDDataCheck.cc:101
edm::EventSetup
Definition: EventSetup.h:57
l1tstage2_dqm_sourceclient-live_cfg.fedId
fedId
Definition: l1tstage2_dqm_sourceclient-live_cfg.py:88
SiStripFEDCheckPlugin::siStripFedIdMin_
unsigned int siStripFedIdMin_
Definition: SiStripFEDDataCheck.cc:107
get
#define get
SiStripFEDCheckPlugin::rawDataToken_
edm::EDGetTokenT< FEDRawDataCollection > rawDataToken_
Definition: SiStripFEDDataCheck.cc:77
FEDRawData::size
size_t size() const
Lenght of the data buffer in bytes.
Definition: FEDRawData.h:45
InputTag.h
SiStripFEDCheckPlugin::doPLOTfedsPresent_
bool doPLOTfedsPresent_
Definition: SiStripFEDDataCheck.cc:82
SiStripFEDCheckPlugin::doPayloadChecks_
bool doPayloadChecks_
Definition: SiStripFEDDataCheck.cc:101
newFWLiteAna.bin
bin
Definition: newFWLiteAna.py:161
sistrip::preconstructCheckFEDBuffer
FEDBufferStatusCode preconstructCheckFEDBuffer(const FEDRawData &fedBuffer, bool allowBadBuffer=false)
Definition: SiStripFEDBuffer.h:131
SiStripFEDCheckPlugin::SiStripFEDCheckPlugin
SiStripFEDCheckPlugin(const edm::ParameterSet &)
Definition: SiStripFEDDataCheck.cc:117
SiStripFEDCheckPlugin::rawDataTag_
edm::InputTag rawDataTag_
Definition: SiStripFEDDataCheck.cc:76
SiStripFEDCheckPlugin::doPLOTfedNonFatalErrors_
bool doPLOTfedNonFatalErrors_
Definition: SiStripFEDDataCheck.cc:82
submitPVResolutionJobs.desc
string desc
Definition: submitPVResolutionJobs.py:251
SiStripFEDCheckPlugin::fillFatalError
void fillFatalError(unsigned int fedId, bool fatalError)
Definition: SiStripFEDDataCheck.cc:377
eostools.move
def move(src, dest)
Definition: eostools.py:511
std
Definition: JetResolutionObject.h:76
writedatasetfile.run
run
Definition: writedatasetfile.py:27
SiStripFEDCheckPlugin::~SiStripFEDCheckPlugin
~SiStripFEDCheckPlugin() override
Definition: SiStripFEDDataCheck.cc:165
SiStripFEDCheckPlugin::hasFatalError
bool hasFatalError(const FEDRawData &fedData, unsigned int fedId) const
Frameworkfwd.h
SiStripFEDCheckPlugin::fillDescriptions
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
Definition: SiStripFEDDataCheck.cc:435
Exception
Definition: hltDiff.cc:246
SiStripFEDCheckPlugin::fedNonFatalErrors_
MonitorElement * fedNonFatalErrors_
Definition: SiStripFEDDataCheck.cc:86
EventSetup.h
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
Exception.h
SiStripFedCablingRcd.h
dqm::implementation::IBooker
Definition: DQMStore.h:43
SiStripFEDCheckPlugin::eventCount_
unsigned int eventCount_
Definition: SiStripFEDDataCheck.cc:98
SiStripFEDCheckPlugin::hasNonFatalError
bool hasNonFatalError(const FEDRawData &fedData, unsigned int fedId) const
SiStripFEDCheckPlugin::dqmEndRun
void dqmEndRun(edm::Run const &, edm::EventSetup const &) override
Definition: SiStripFEDDataCheck.cc:356
TrackerTopologyRcd
Definition: TrackerTopologyRcd.h:10
ParameterSet.h
siStripFEDCheck_cfi.LSMin
LSMin
Definition: siStripFEDCheck_cfi.py:33
SiStripFEDCheckPlugin::conf_
edm::ParameterSet conf_
Definition: SiStripFEDDataCheck.cc:110
siStripFEDCheck_cfi.LSMax
LSMax
Definition: siStripFEDCheck_cfi.py:34
edm::Event
Definition: Event.h:73
SiStripFEDCheckPlugin::nFEDinVsLS_
MonitorElement * nFEDinVsLS_
Definition: SiStripFEDDataCheck.cc:88
edm::ConfigurationDescriptions::addDefault
void addDefault(ParameterSetDescription const &psetDescription)
Definition: ConfigurationDescriptions.cc:99
SiStripFEDCheckPlugin::nFEDinWdataVsLS_
MonitorElement * nFEDinWdataVsLS_
Definition: SiStripFEDDataCheck.cc:89
dqm::impl::MonitorElement::setAxisTitle
virtual void setAxisTitle(const std::string &title, int axis=1)
set x-, y- or z-axis title (axis=1, 2, 3 respectively)
Definition: MonitorElement.cc:800
edm::InputTag
Definition: InputTag.h:15
SiStripFEDCheckPlugin::printDebug_
bool printDebug_
Definition: SiStripFEDDataCheck.cc:79
dqm::implementation::IBooker::book1D
MonitorElement * book1D(TString const &name, TString const &title, int const nchX, double const lowX, double const highX, FUNC onbooking=NOOP())
Definition: DQMStore.h:98
FEDNumbering::MINSiStripFEDID
Definition: FEDNumbering.h:29