CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HcalDigiMonitor.cc
Go to the documentation of this file.
3 #include <cmath>
4 
10 
11 // constructor
13 {
14  Online_ = ps.getUntrackedParameter<bool>("online",false);
15  mergeRuns_ = ps.getUntrackedParameter<bool>("mergeRuns",false);
16  enableCleanup_ = ps.getUntrackedParameter<bool>("enableCleanup",false);
17  debug_ = ps.getUntrackedParameter<int>("debug",0);
18  prefixME_ = ps.getUntrackedParameter<std::string>("subSystemFolder","Hcal/");
19  if (prefixME_.substr(prefixME_.size()-1,prefixME_.size())!="/")
20  prefixME_.append("/");
21  subdir_ = ps.getUntrackedParameter<std::string>("TaskFolder","DigiMonitor_Hcal");
22  if (subdir_.size()>0 && subdir_.substr(subdir_.size()-1,subdir_.size())!="/")
23  subdir_.append("/");
24  subdir_=prefixME_+subdir_;
25  AllowedCalibTypes_ = ps.getUntrackedParameter<std::vector<int> > ("AllowedCalibTypes");
26  skipOutOfOrderLS_ = ps.getUntrackedParameter<bool>("skipOutOfOrderLS",true);
27  NLumiBlocks_ = ps.getUntrackedParameter<int>("NLumiBlocks",4000);
28  makeDiagnostics_ = ps.getUntrackedParameter<bool>("makeDiagnostics",false);
30  FEDRawDataCollection_ = ps.getUntrackedParameter<edm::InputTag>("FEDRawDataCollection");
31  shapeThresh_ = ps.getUntrackedParameter<int>("shapeThresh",20);
32  //shapeThresh_ is used for plotting pulse shapes for all digis with pedestal-subtracted ADC sum > shapeThresh_;
33  shapeThreshHB_ = ps.getUntrackedParameter<int>("shapeThreshHB",shapeThresh_);
34  shapeThreshHE_ = ps.getUntrackedParameter<int>("shapeThreshHE",shapeThresh_);
35  shapeThreshHF_ = ps.getUntrackedParameter<int>("shapeThreshHF",shapeThresh_);
36  shapeThreshHO_ = ps.getUntrackedParameter<int>("shapeThreshHO",shapeThresh_);
37 
38  hltresultsLabel_ = ps.getUntrackedParameter<edm::InputTag>("HLTResultsLabel");
39  MinBiasHLTBits_ = ps.getUntrackedParameter<std::vector<std::string> >("MinBiasHLTBits");
40  excludeHORing2_ = ps.getUntrackedParameter<bool>("excludeHORing2",false);
41  excludeHO1P02_ = ps.getUntrackedParameter<bool>("excludeHO1P02",false);
42  excludeBadQPLLs_ = ps.getUntrackedParameter<bool>("excludeBadQPLL",false);
43 
44  if (debug_>0)
45  std::cout <<"<HcalDigiMonitor> Digi shape ADC threshold set to: >" << shapeThresh_ <<" counts above nominal pedestal (3*10)"<< std::endl;
46 
47  // Specify which tests to run when looking for problem digis
48  digi_checkoccupancy_ = ps.getUntrackedParameter<bool>("checkForMissingDigis",false); // off by default -- checked by dead cell monitor
49  digi_checkcapid_ = ps.getUntrackedParameter<bool>("checkCapID",true);
50  digi_checkdigisize_ = ps.getUntrackedParameter<bool>("checkDigiSize",true);
51  digi_checkadcsum_ = ps.getUntrackedParameter<bool>("checkADCsum",true);
52  digi_checkdverr_ = ps.getUntrackedParameter<bool>("checkDVerr",true);
53  mindigisizeHBHE_ = ps.getUntrackedParameter<int>("minDigiSizeHBHE",1);
54  maxdigisizeHBHE_ = ps.getUntrackedParameter<int>("maxDigiSizeHBHE",10);
55  mindigisizeHO_ = ps.getUntrackedParameter<int>("minDigiSizeHO",1);
56  maxdigisizeHO_ = ps.getUntrackedParameter<int>("maxDigiSizeHO",10);
57  mindigisizeHF_ = ps.getUntrackedParameter<int>("minDigiSizeHF",1);
58  maxdigisizeHF_ = ps.getUntrackedParameter<int>("maxDigiSizeHF",10);
59 
60 
61  badChannelStatusMask_ = ps.getUntrackedParameter<int>("BadChannelStatusMask",
62  ps.getUntrackedParameter<int>("BadChannelStatusMask",
63  (1<<HcalChannelStatus::HcalCellDead))); // identify channel status values to mask
64  if (debug_>1)
65  {
66  std::cout <<"<HcalDigiMonitor> Checking for the following problems:"<<std::endl;
67  if (digi_checkcapid_) std::cout <<"\tChecking that cap ID rotation is correct;"<<std::endl;
68  if (digi_checkdigisize_)
69  {
70  std::cout <<"\tChecking that HBHE digi size is between ["<<mindigisizeHBHE_<<" - "<<maxdigisizeHBHE_<<"];"<<std::endl;
71  std::cout <<"\tChecking that HO digi size is between ["<<mindigisizeHO_<<" - "<<maxdigisizeHO_<<"];"<<std::endl;
72  std::cout <<"\tChecking that HF digi size is between ["<<mindigisizeHF_<<" - "<<maxdigisizeHF_<<"];"<<std::endl;
73  }
74  if (digi_checkadcsum_) std::cout <<"\tChecking that ADC sum of digi is greater than 0;"<<std::endl;
75  if (digi_checkdverr_) std::cout <<"\tChecking that data valid bit is true and digi error bit is false;\n"<<std::endl;
76  }
77 
78  shutOffOrbitTest_ = ps.getUntrackedParameter<bool>("shutOffOrbitTest",false);
79  DigiMonitor_ExpectedOrbitMessageTime_=ps.getUntrackedParameter<int>("ExpectedOrbitMessageTime",3559); // -1 means that orbit mismatches won't be checked
80 
84  HFP_shape=0;
85  HFM_shape=0;
86  setupDone_=false;
87 
88  // register for data access
89  tok_raw_ = consumes<FEDRawDataCollection>(FEDRawDataCollection_);
90  tok_hbhe_ = consumes<HBHEDigiCollection>(digiLabel_);
91  tok_ho_ = consumes<HODigiCollection>(digiLabel_);
92  tok_hf_ = consumes<HFDigiCollection>(digiLabel_);
93  tok_unpack_ = consumes<HcalUnpackerReport>(digiLabel_);
94  tok_trigger_ = consumes<edm::TriggerResults>(hltresultsLabel_);
95  tok_hfrec_ = consumes<HFRecHitCollection>(ps.getUntrackedParameter<edm::InputTag>("hfRechitLabel"));
96 
97  //set Token(-s)
98  dcsStatusToken_ = consumes<DcsStatusCollection>(std::string("scalersRawToDigi"));
99  FEDRawDataCollectionToken_ = consumes<FEDRawDataCollection>(FEDRawDataCollection_);
100 }
101 
102 // destructor
104 
105 // Checks capid rotation; returns false if no problems with rotation
106 static bool bitUpset(int last, int now){
107  if(last ==-1) return false;
108  int v = last+1;
109  if(v==4) v=0;
110  if(v==now) return false;
111  return true;
112 } // static bool bitUpset(...)
113 
114 /*void HcalDigiMonitor::cleanup()
115 {
116  // Need to add code to clear out subfolders as well?
117  if (debug_>0) std::cout <<"HcalDigiMonitor::cleanup()"<<std::endl;
118  if (!enableCleanup_) return;
119  if (dbe_)
120  {
121  // removeContents doesn't remove subdirectories
122  dbe_->setCurrentFolder(subdir_);
123  dbe_->removeContents();
124  dbe_->setCurrentFolder(subdir_+"digi_parameters"); dbe_->removeContents();
125  dbe_->setCurrentFolder(subdir_+"bad_digis/bad_digi_occupancy"); dbe_->removeContents();
126  dbe_->setCurrentFolder(subdir_+"bad_digis/1D_digi_plots"); dbe_->removeContents();
127  dbe_->setCurrentFolder(subdir_+"bad_digis/badcapID"); dbe_->removeContents();
128  dbe_->setCurrentFolder(subdir_+"bad_digis/data_invalid_error"); dbe_->removeContents();
129  dbe_->setCurrentFolder(subdir_+"bad_digis/bad_reportUnpackerErrors"); dbe_->removeContents();
130  dbe_->setCurrentFolder(subdir_+"bad_digis/baddigisize"); dbe_->removeContents();
131  dbe_->setCurrentFolder(subdir_+"digi_info"); dbe_->removeContents();
132  dbe_->setCurrentFolder(subdir_+"bad_digis/badfibBCNoff"); dbe_->removeContents();
133  dbe_->setCurrentFolder(subdir_+"good_digis/1D_digi_plots"); dbe_->removeContents();
134  dbe_->setCurrentFolder(subdir_+"good_digis/digi_occupancy"); dbe_->removeContents();
135  dbe_->setCurrentFolder(subdir_+"bad_digis/bad_digi_occupancy"); dbe_->removeContents();
136  dbe_->setCurrentFolder(subdir_+"bad_digis"); dbe_->removeContents();
137  dbe_->setCurrentFolder(subdir_+"good_digis/"); dbe_->removeContents();
138  dbe_->setCurrentFolder(subdir_+"digi_info/HB"); dbe_->removeContents();
139  dbe_->setCurrentFolder(subdir_+"digi_info/HE"); dbe_->removeContents();
140  dbe_->setCurrentFolder(subdir_+"digi_info/HO"); dbe_->removeContents();
141  dbe_->setCurrentFolder(subdir_+"digi_info/HF"); dbe_->removeContents();
142  dbe_->setCurrentFolder(subdir_+"LSvalues");
143  dbe_->removeContents();
144  } // if(dbe_)
145 
146 }*/ // void HcalDigiMonitor::cleanup();
147 
148 
150 {
151  // Anything to do here?
152 }
153 
155 {
156  if (debug_>0) std::cout <<"HcalDigiMonitor::endJob()"<<std::endl;
157  if (enableCleanup_) cleanup(); // when do we force cleanup?
158 }
159 
160 
162 {
163  if (setupDone_)
164  return;
165  setupDone_=true;
166  // Call base class setup
168 
169  /******* Set up all histograms ********/
170  if (debug_>1)
171  std::cout <<"<HcalDigiMonitor::setup> Setting up histograms"<<std::endl;
172 
173  std::ostringstream name;
175 
176  ib.setCurrentFolder(subdir_+"digi_parameters");
177  MonitorElement* ExpectedOrbit = ib.bookInt("ExpectedOrbitMessageTime");
179 
180  MonitorElement* shapeT = ib.bookInt("DigiShapeThresh");
181  shapeT->Fill(shapeThresh_);
182  MonitorElement* shapeTHB = ib.bookInt("DigiShapeThreshHB");
183  shapeTHB->Fill(shapeThreshHB_);
184  MonitorElement* shapeTHE = ib.bookInt("DigiShapeThreshHE");
185  shapeTHE->Fill(shapeThreshHE_);
186  MonitorElement* shapeTHO = ib.bookInt("DigiShapeThreshHO");
187  shapeTHO->Fill(shapeThreshHO_);
188  MonitorElement* shapeTHF = ib.bookInt("DigiShapeThreshHF");
189  shapeTHF->Fill(shapeThreshHF_);
190 
191  ib.setCurrentFolder(subdir_+"bad_digis/bad_digi_occupancy");
192  SetupEtaPhiHists(ib,DigiErrorsByDepth,"Bad Digi Map","");
193  ib.setCurrentFolder(subdir_+"bad_digis/1D_digi_plots");
194  ProblemsVsLB=ib.bookProfile("BadDigisVsLB","Number Bad Digis vs Luminosity block;Lumi block;# of Bad digis",
195  NLumiBlocks_,0.5,NLumiBlocks_+0.5,100,0,10000);
196  ProblemsVsLB_HB=ib.bookProfile("HB Bad Quality Digis vs LB","HB Bad Quality Digis vs Luminosity Block",
197  NLumiBlocks_,0.5,NLumiBlocks_+0.5,
198  100,0,10000);
199  ProblemsVsLB_HE=ib.bookProfile("HE Bad Quality Digis vs LB","HE Bad Quality Digis vs Luminosity Block",
200  NLumiBlocks_,0.5,NLumiBlocks_+0.5,
201  100,0,10000);
202  ProblemsVsLB_HO=ib.bookProfile("HO Bad Quality Digis vs LB","HO Bad Quality Digis vs Luminosity Block",
203  NLumiBlocks_,0.5,NLumiBlocks_+0.5,
204  100,0,10000);
205  ProblemsVsLB_HF=ib.bookProfile("HF Bad Quality Digis vs LB","HF Bad Quality Digis vs Luminosity Block",
206  NLumiBlocks_,0.5,NLumiBlocks_+0.5,
207  100,0,10000);
208  ProblemsVsLB_HBHEHF=ib.bookProfile("HBHEHF Bad Quality Digis vs LB","HBHEHF Bad Quality Digis vs Luminosity Block",
209  NLumiBlocks_,0.5,NLumiBlocks_+0.5,
210  100,0,10000);
211 
212  ProblemDigisInLastNLB_HBHEHF_alarm=ib.book1D("ProblemDigisInLastNLB_HBHEHF_alarm",
213  "Total Number of ProblemDigis HBHEHF in last 10 LS. Last bin contains OverFlow",
214  100,0,100);
215 
216 
217  if (makeDiagnostics_)
218  {
219  // by default, unpacked digis won't have these errors
220  ib.setCurrentFolder(subdir_+"diagnostics/bad_digis/badcapID");
221  SetupEtaPhiHists(ib,DigiErrorsBadCapID," Digis with Bad Cap ID Rotation", "");
222  ib.setCurrentFolder(subdir_+"diagnostics/bad_digis/data_invalid_error");
223  SetupEtaPhiHists(ib,DigiErrorsDVErr," Digis with Data Invalid or Error Bit Set", "");
224  }
225 
226  if (Online_)
227  {
228  // Special histograms for Pawel's timing study
229  ib.setCurrentFolder(subdir_+"HFTimingStudy");
230  HFtiming_etaProfile=ib.bookProfile("HFTiming_etaProfile","HFTiming Eta Profile;ieta;average time (time slice)",83,-41.5,41.5,200,0,10);
231  HFP_shape=ib.book1D("HFP_signal_shape","HFP signal shape",10,-0.5,9.5);
232  HFM_shape=ib.book1D("HFM_signal_shape","HFM signal shape",10,-0.5,9.5);
233  ib.setCurrentFolder(subdir_+"HFTimingStudy/sumplots");
234  HFtiming_totaltime2D=ib.book2D("HFTiming_Total_Time","HFTiming Total Time",83,-41.5,41.5,72,0.5,72.5);
235  HFtiming_occupancy2D=ib.book2D("HFTiming_Occupancy","HFTiming Occupancy",83,-41.5,41.5,72,0.5,72.5);
236  }
237 
238  ib.setCurrentFolder(subdir_+"bad_digis/bad_reportUnpackerErrors");
239  SetupEtaPhiHists(ib,DigiErrorsUnpacker," Bad Unpacker Digis", "");
240 
241  ib.setCurrentFolder(subdir_+"bad_digis/baddigisize");
242  SetupEtaPhiHists(ib,DigiErrorsBadDigiSize," Digis with Bad Size", "");
243 
244  ib.setCurrentFolder(subdir_+"digi_info");
245 
246  h_valid_digis=ib.book1D("ValidEvents","Events with minimum number of valid digis",2,-0.5,1.5);
247  h_valid_digis->setBinLabel(1,"Valid");
248  h_valid_digis->setBinLabel(2,"Invalid");
249 
250  h_invalid_orbitnumMod103=ib.book1D("InvalidDigiEvents_ORN","Orbit Number (mod 103) for Events with Many Unpacker Errors",103,-0.5,102.5);
251  h_invalid_bcn=ib.book1D("InvalidDigiEvents_BCN","Bunch Crossing Number fo Events with Many Unpacker Errors",3464,-0.5,3563.5);
252 
253  DigiSize = ib.book2D("Digi Size", "Digi Size",4,0,4,20,-0.5,19.5);
254  DigiSize->setBinLabel(1,"HB",1);
255  DigiSize->setBinLabel(2,"HE",1);
256  DigiSize->setBinLabel(3,"HO",1);
257  DigiSize->setBinLabel(4,"HF",1);
258  DigiSize->setAxisTitle("Subdetector",1);
259  DigiSize->setAxisTitle("Digi Size",2);
260 
261  DigiExpectedSize = ib.book2D("Digi Expected Size", "Digi Expected Size",3,0,3,20,-0.5,19.5);
262  DigiExpectedSize->setBinLabel(1,"HBHE",1);
263  DigiExpectedSize->setBinLabel(2,"HO",1);
264  DigiExpectedSize->setBinLabel(3,"HF",1);
265  DigiExpectedSize->setAxisTitle("Subdetector",1);
266  DigiExpectedSize->setAxisTitle("Digi Expected Size from HTR",2);
267 
268  ib.setCurrentFolder(subdir_+"bad_digis/badfibBCNoff");
269  SetupEtaPhiHists(ib,DigiErrorsBadFibBCNOff," Digis with non-zero Fiber Orbit Msg Idle BCN Offsets", "");
270 
271  ib.setCurrentFolder(subdir_+"good_digis/1D_digi_plots");
272  HBocc_vs_LB=ib.bookProfile("HBoccVsLB","HB digi occupancy vs Luminosity Block;Lumi block;# of Good digis",
273  NLumiBlocks_,0.5,NLumiBlocks_+0.5,
274  0,2600);
275  HEocc_vs_LB=ib.bookProfile("HEoccVsLB","HE digi occupancy vs Luminosity Block;Lumi block;# of Good digis",
276  NLumiBlocks_,0.5,NLumiBlocks_+0.5,
277  0,2600);
278  HOocc_vs_LB=ib.bookProfile("HOoccVsLB","HO digi occupancy vs Luminosity Block;Lumi block;# of Good digis",
279  NLumiBlocks_,0.5,NLumiBlocks_+0.5,
280  0,2200);
281  HFocc_vs_LB=ib.bookProfile("HFoccVsLB","HF digi occupancy vs Luminosity Block;Lumi block;# of Good digis",
282  NLumiBlocks_,0.5,NLumiBlocks_+0.5,
283  0,1800);
284 
285  ib.setCurrentFolder(subdir_+"good_digis/digi_occupancy");
286  SetupEtaPhiHists(ib,DigiOccupancyByDepth," Digi Eta-Phi Occupancy Map","");
287  DigiOccupancyPhi= ib.book1D("Digi Phi Occupancy Map",
288  "Digi Phi Occupancy Map;i#phi;# of Events",
289  72,0.5,72.5);
290  DigiOccupancyEta= ib.book1D("Digi Eta Occupancy Map",
291  "Digi Eta Occupancy Map;i#eta;# of Events",
292  83,-41.5,41.5);
293  DigiOccupancyVME = ib.book2D("Digi VME Occupancy Map",
294  "Digi VME Occupancy Map;HTR Slot;VME Crate Id",
295  40,-0.25,19.75,18,-0.5,17.5);
296 
297  DigiOccupancySpigot = ib.book2D("Digi Spigot Occupancy Map",
298  "Digi Spigot Occupancy Map;Spigot;DCC Id",
300  36,-0.5,35.5);
301 
302  ib.setCurrentFolder(subdir_+"bad_digis/bad_digi_occupancy");
303  DigiErrorVME = ib.book2D("Digi VME Error Map",
304  "Digi VME Error Map;HTR Slot;VME Crate Id",
305  40,-0.25,19.75,18,-0.5,17.5);
306 
307  DigiErrorSpigot = ib.book2D("Digi Spigot Error Map",
308  "Digi Spigot Error Map;Spigot;DCC Id",
310  36,-0.5,35.5);
311 
312  ib.setCurrentFolder(subdir_+"bad_digis");
313  int nbins = sizeof(bins_cellcount_new)/sizeof(float)-1;
314 
315  DigiBQ = ib.book1D("NumBadQualDigis","Number Bad Qual Digis within Digi Collection",nbins, bins_cellcount_new);
316 
317  nbins=sizeof(bins_fraccount_new)/sizeof(float)-1;
318 
319  DigiBQFrac = ib.book1D("Bad Digi Fraction","Bad Digi Fraction;Bad Quality Digi Fraction for digis in collection; # of Events",
320  nbins, bins_fraccount_new);
321 
322  nbins = sizeof(bins_cellcount_new)/sizeof(float)-1;
323  DigiUnpackerErrorCount = ib.book1D("Unpacker Error Count", "Number of Bad Digis from Unpacker; Bad Unpacker Digis; # of Events",nbins, bins_cellcount_new);
324 
325  nbins=sizeof(bins_fraccount_new)/sizeof(float)-1;
326  DigiUnpackerErrorFrac = ib.book1D("Unpacker Bad Digi Fraction",
327  "Bad Digis From Unpacker/ (Bad Digis From Unpacker + Good Digis); Bad Unpacker Fraction; # of Events",
328  nbins,bins_fraccount_new);
329 
330  ib.setCurrentFolder(subdir_+"good_digis/");
331  DigiNum = ib.book1D("NumGoodDigis","Number of Digis;# of Good Digis;# of Events",DIGI_NUM+1,-0.5,DIGI_NUM+1-0.5);
332 
333  setupSubdetHists(ib,hbHists,"HB");
334  setupSubdetHists(ib,heHists,"HE");
335  setupSubdetHists(ib,hoHists,"HO");
336  setupSubdetHists(ib,hfHists,"HF");
337 
338  this->reset();
339  return;
340 } // void HcalDigiMonitor::setup()
341 
343 {
345  if (mergeRuns_ && tevt_>0) return; // don't reset counters if merging runs
346 
347  if (debug_>1) std::cout <<"\t<HcalDigiMonitor::bookHistograms> Getting conditions from DB!"<<std::endl;
348  c.get<HcalDbRecord>().get(conditions_);
349 
350  // Get all pedestals by Cap ID
352  c.get<HcalChannelQualityRcd>().get("withTopo",p);
353  const HcalChannelQuality *chanquality= p.product();
354  std::vector<DetId> mydetids = chanquality->getAllChannels();
355  PedestalsByCapId_.clear();
356 
357  for (std::vector<DetId>::const_iterator chan = mydetids.begin();chan!=mydetids.end();++chan)
358  {
359  if (chan->det()!=DetId::Hcal) continue; // not hcal
360  std::vector <double> peds; // could be ints, right?
361  peds.clear();
362  HcalCalibrations calibs=conditions_->getHcalCalibrations(*chan);
363  const HcalQIECoder* channelCoder = conditions_->getHcalCoder(*chan);
364  const HcalQIEShape* shape = conditions_->getHcalShape(channelCoder);
365  //double total=0; // use this is we want to calculate average pedestal value
366  for (int capid=0;capid<4;++capid)
367  {
368  // temp_ADC should be an int, right?
369  double temp_ADC=channelCoder->adc(*shape,(float)calibs.pedestal(capid),capid);
370  peds.push_back(temp_ADC);
371  //total=total+temp_ADC;
372  }
373  //for (int capid=0;capid<4;++capid) peds.push_back(total/4.); // use this if we just want to use average value
374  PedestalsByCapId_[*chan]=peds;
375  } // loop on DetIds
376 
377  if (tevt_==0) this->setup(ib); // create all histograms; not necessary if merging runs together
378  if (mergeRuns_==false) this->reset(); // call reset at start of all runs
379 
380  // Get known dead cells for this run
381  KnownBadCells_.clear();
382  if (badChannelStatusMask_>0)
383  {
385  c.get<HcalChannelQualityRcd>().get("withTopo",p);
386  const HcalChannelQuality* chanquality= p.product();
387  std::vector<DetId> mydetids = chanquality->getAllChannels();
388  for (std::vector<DetId>::const_iterator i = mydetids.begin();
389  i!=mydetids.end();
390  ++i)
391  {
392  if (i->det()!=DetId::Hcal) continue; // not an hcal cell
393  HcalDetId id=HcalDetId(*i);
394  int status=(chanquality->getValues(id))->getValue();
395  if ((status & badChannelStatusMask_))
396  {
397  KnownBadCells_[id.rawId()]=status;
398  }
399  }
400  } // if (badChannelStatusMask_>0)
401 
402 } // void HcalDigiMonitor::bookHistograms()
403 
404 
406 {
407  std::stringstream name;
408  int nChan=0;
409  if (subdet=="HB" || subdet=="HE") nChan=2592;
410  else if (subdet == "HO") nChan=2160;
411  else if (subdet == "HF") nChan=1728;
412 
413  ib.setCurrentFolder(subdir_+"digi_info/"+subdet);
414  hist.shape = ib.book1D(subdet+" Digi Shape",subdet+" Digi Shape;Time Slice",10,-0.5,9.5);
415  hist.shapeThresh = ib.book1D(subdet+" Digi Shape - over thresh",
416  subdet+" Digi Shape - over thresh passing trigger and HF HT cuts;Time slice",
417  10,-0.5,9.5);
418  hist.ThreshCount = ib.book1D(subdet+" Total Digis Over Threshold",
419  subdet+" Total Digis Over Threshold",
420  1,-0.5,0.5);
421  // Create plots of sums of adjacent time slices
422  for (int ts=0;ts<9;++ts)
423  {
424  name<<subdet<<" Plus Time Slices "<<ts<<" and "<<ts+1;
425  hist.TS_sum_plus.push_back(ib.book1D(name.str().c_str(),name.str().c_str(),50, 0., 50.));
426  name.str("");
427  name<<subdet<<" Minus Time Slices "<<ts<<" and "<<ts+1;
428  hist.TS_sum_minus.push_back(ib.book1D(name.str().c_str(),name.str().c_str(),50, 0., 50.));
429  name.str("");
430  }
431  hist.presample= ib.book1D(subdet+" Digi Presamples",subdet+" Digi Presamples",50,-0.5,49.5);
432  hist.BQ = ib.book1D(subdet+" Bad Quality Digis",subdet+" Bad Quality Digis",nChan+1,-0.5,nChan+0.5);
433  //(hist.BQ->getTH1F())->LabelsOption("v");
434  hist.BQFrac = ib.book1D(subdet+" Bad Quality Digi Fraction",subdet+" Bad Quality Digi Fraction",DIGI_BQ_FRAC_NBINS,(0-0.5/(DIGI_BQ_FRAC_NBINS-1)),1+0.5/(DIGI_BQ_FRAC_NBINS-1));
435  hist.DigiFirstCapID = ib.book1D(subdet+" Capid 1st Time Slice",subdet+" Capid for 1st Time Slice;CapId (T0)- 1st CapId (T0);# of Events",7,-3.5,3.5);
436 
437  hist.DVerr = ib.book1D(subdet+" Data Valid Err Bits",subdet+" QIE Data Valid Err Bits",4,-0.5,3.5);
438  hist.DVerr ->setBinLabel(1,"Err=0, DV=0",1);
439  hist.DVerr ->setBinLabel(2,"Err=0, DV=1",1);
440  hist.DVerr ->setBinLabel(3,"Err=1, DV=0",1);
441  hist.DVerr ->setBinLabel(4,"Err=1, DV=1",1);
442  hist.CapID = ib.book1D(subdet+" CapID",subdet+" CapID",4,-0.5,3.5);
443  hist.ADC = ib.book1D(subdet+" ADC count per time slice",subdet+" ADC count per time slice",200,-0.5,199.5);
444  hist.ADCsum = ib.book1D(subdet+" ADC sum", subdet+" ADC sum",200,-0.5,199.5);
445  hist.fibBCNOff = ib.book1D(subdet+" Fiber Orbit Message Idle BCN Offset", subdet+" Fiber Orbit Message Idle BCN Offset;Offset from Expected",
446  15, -7.5, 7.5);
447 }
448 
450 {
452 
453  if (!IsAllowedCalibType()) return;
454  if (LumiInOrder(e.luminosityBlock())==false) return;
455 
456  // Get HLT trigger information for HF timing study
457  passedMinBiasHLT_=false;
458 
460  // check if detectors whether they were ON
462  e.getByToken(dcsStatusToken_, dcsStatus);
463 
464  if (dcsStatus.isValid() && dcsStatus->size() != 0)
465  {
466  if ((*dcsStatus)[0].ready(DcsStatus::HBHEa) &&
467  (*dcsStatus)[0].ready(DcsStatus::HBHEb) &&
468  (*dcsStatus)[0].ready(DcsStatus::HBHEc))
469  {
470  hbhedcsON = true;
471  if (debug_) std::cout << "hbhe on" << std::endl;
472  }
473  else hbhedcsON = false;
474 
475  if ((*dcsStatus)[0].ready(DcsStatus::HF))
476  {
477  hfdcsON = true;
478  if (debug_) std::cout << "hf on" << std::endl;
479  }
480  else hfdcsON = false;
481  }
483 
485  if (!(e.getByToken(tok_trigger_,hltRes)))
486  {
487  if (debug_>0) edm::LogWarning("HcalDigiMonitor")<<" Could not get HLT results with tag "<<hltresultsLabel_<<std::endl;
488  }
489  else
490  {
491  const edm::TriggerNames & triggerNames = e.triggerNames(*hltRes);
492  const unsigned int nTrig(triggerNames.size());
493  for (unsigned int i=0;i<nTrig;++i){
494  // repeat for minbias triggers
495  for (unsigned int k=0;k<MinBiasHLTBits_.size();++k)
496  {
497  // if (triggerNames.triggerName(i)==MinBiasHLTBits_[k] && hltRes->accept(i))
498  if (triggerNames.triggerName(i).find(MinBiasHLTBits_[k])!=std::string::npos && hltRes->accept(i))
499  {
500  passedMinBiasHLT_=true;
501  break;
502  }
503  }
504  }
505  } //else
506 
507  // Now get collections we need
508  HT_HFP_=0;
509  HT_HFM_=0;
510  // bool rechitsFound=false;
512  if (e.getByToken(tok_hfrec_,hf_rechit))
513  {
514  // rechitsFound=true;
515  for (HFRecHitCollection::const_iterator HF=hf_rechit->begin();HF!=hf_rechit->end();++HF)
516  {
517  float en=HF->energy();
518  int ieta=HF->id().ieta();
519  // ieta for HF starts at 29, so subtract away 29 when computing fEta
520  double fEta=fabs(0.5*(theHFEtaBounds[abs(ieta)-28]+theHFEtaBounds[abs(ieta)-29]));
521  ieta>0 ? HT_HFP_+=en/cosh(fEta) : HT_HFM_+=en/cosh(fEta);
522  }
523  }
524  else
525  {
526  // if no rechits found, form above-threshold plots based only on digi comparison to ADC threshold
527  HT_HFP_=999;
528  HT_HFM_=999;
529  }
530 
531  // try to get digis
535 
536  if (!(e.getByToken(tok_hbhe_,hbhe_digi)))
537  {
538  edm::LogWarning("HcalDigiMonitor")<< digiLabel_<<" hbhe_digi not available";
539  return;
540  }
541 
542  if (!(e.getByToken(tok_hf_,hf_digi)))
543  {
544  edm::LogWarning("HcalDigiMonitor")<< digiLabel_<<" hf_digi not available";
545  return;
546  }
547  if (!(e.getByToken(tok_ho_,ho_digi)))
548  {
549  edm::LogWarning("HcalDigiMonitor")<< digiLabel_<<" ho_digi not available";
550  return;
551  }
553  if (!(e.getByToken(tok_unpack_,report)))
554  {
555  edm::LogWarning("HcalDigiMonitor")<< digiLabel_<<" unpacker report not available";
556  return;
557  }
558  // try to get Raw Data
560  if ( !(e.getByToken(FEDRawDataCollectionToken_, rawraw)))
561  {
562  edm::LogWarning("HcalRawDataMonitor")<<" raw data with label "<<FEDRawDataCollection_<<" not available";
563  return;
564  }
565 
566  // get the DCC header & trailer (or bail out)
567  // this needs to be done better, for now basically getting only one number per HBHE/HO/HF
568  // will create a map (dccid, spigot) -> DetID to be used in process_Digi later
570  const FEDRawData& fed = rawraw->FEDData(i);
571  if (fed.size()<12) continue; //At least the size of headers and trailers of a DCC.
572 
573  const HcalDCCHeader* dccHeader=(const HcalDCCHeader*)(fed.data());
574  if(!dccHeader) return;
575 
576  HcalHTRData htr;
577  for (int spigot=0; spigot<HcalDCCHeader::SPIGOT_COUNT; spigot++) {
578  if (!dccHeader->getSpigotPresent(spigot)) continue;
579 
580  // Load the given decoder with the pointer and length from this spigot.
581  // i.e. initialize htr, within dcc raw data size.
582  dccHeader->getSpigotData(spigot, htr, fed.size());
583 
584  int NTS = htr.getNDD(); //number time slices, in precision channels
585  if (NTS==0) continue; // no DAQ data in this HTR (fully zero-suppressed)
586  int dccid=dccHeader->getSourceId();
587 
588  if(dccid==720 && (spigot==12 || spigot==13)) continue; // calibration HTR
589  if(dccid==722 && (spigot==12 || spigot==13)) continue; // ZDC HTR
590 
591  int subdet = -1;
592 
593  if(dccid >= 700 && dccid<=717) { subdet = 0; mindigisizeHBHE_ = NTS; maxdigisizeHBHE_ = NTS; } // HBHE
594  if(dccid >= 718 && dccid<=723) { subdet = 2; mindigisizeHF_ = NTS; maxdigisizeHF_ = NTS; } // HF
595  if(dccid >= 724 && dccid<=731) { subdet = 1; mindigisizeHO_ = NTS; maxdigisizeHO_ = NTS; } // HO
596 
597  DigiExpectedSize->Fill(subdet,int(NTS),1);
598  }
599  }
600 
601  // all objects grabbed; event is good
602  if (debug_>1) std::cout <<"\t<HcalDigiMonitor::analyze> Processing good event! event # = "<<ievt_<<std::endl;
603 
604 // HcalBaseDQMonitor::analyze(e,s); // base class increments ievt_, etc. counters
605 
606  // Digi collection was grabbed successfully; process the Event
607  processEvent(*hbhe_digi, *ho_digi, *hf_digi, *conditions_,
608  *report, e.orbitNumber(),e.bunchCrossing());
609 
610 } //void HcalDigiMonitor::analyze(...)
611 
613  const HODigiCollection& ho,
614  const HFDigiCollection& hf,
615  const HcalDbService& cond,
616  const HcalUnpackerReport& report,
617  int orN, int bcN)
618 {
619 
620  // Skip events in which minimal good digis found -- still getting some strange (calib?) events through DQM
621 
623 
624  unsigned int allgooddigis= hbhe.size()+ho.size()+hf.size();
625 
626  // new data format in HCAL marks idle messages in the abort gap as bad capid.
627  // ignore this events. Also, sometimes there are many corrupted digis left
628  // from the QIE reset: ignore if in abort gap
629  if(bcN>=3446 && bcN<=3564)
630  if( (report.badQualityDigis()>100 && hbhe.size()==0) || (report.badQualityDigis()>1000) )
631  return;
632 
633  // bad threshold: ignore events in which bad outnumber good by more than 100:1
634  // (one RBX in HBHE seems to send valid data occasionally even on QIE resets, which is why we can't just require allgooddigis==0 when looking for events to skip)
635  if ((allgooddigis==0) ||
636  (1.*report.badQualityDigis()>100*allgooddigis))
637  {
638  h_valid_digis->Fill(1);
639  if (bcN>-1)
640  h_invalid_bcn->Fill(bcN);
641  if (orN>-1)
642  h_invalid_orbitnumMod103->Fill(orN%103);
643 
644  return;
645  }
646 
647  h_valid_digis->Fill(0);
648 
649  // hbHists.count_bad=0;
650  // hbHists.count_good=0;
651  // heHists.count_bad=0;
652  // heHists.count_good=0;
653  // hoHists.count_bad=0;
654  // hoHists.count_good=0;
655  // hfHists.count_bad=0;
656  // hfHists.count_good=0;
657 
658  // int HO0bad=0;
659  // int HO12bad=0;
660  // int HFlumibad=0;
661 
662  // Check unpacker report for bad digis
663 
664  typedef std::vector<DetId> DetIdVector;
665 
666  for ( DetIdVector::const_iterator baddigi_iter=report.bad_quality_begin();
667  baddigi_iter != report.bad_quality_end();
668  ++baddigi_iter)
669  {
670  HcalDetId id(baddigi_iter->rawId());
671  int rDepth = id.depth();
672  int rPhi = id.iphi();
673  int rEta = id.ieta();
674  int binEta = CalcEtaBin(id.subdet(), rEta, rDepth); // why is this here?
675 
676  if (binEta < 85 && binEta >= 0
677  && (rPhi-1) >= 0 && (rPhi-1)<72
678  && (rDepth-1) >= 0 && (rDepth-1)<4)
679  if(uniqcounter2[binEta][rPhi-1][rDepth-1]<1)
680  {
681  if (id.subdet()==HcalBarrel) ++hbHists.count_bad;
682  else if (id.subdet()==HcalEndcap) ++heHists.count_bad;
683  else if (id.subdet()==HcalForward)
684  {
685  ++hfHists.count_bad;
686  if (rDepth==1 && (abs(rEta)==33 || abs(rEta)==34)) ++HFlumibad;
687  else if (rDepth==2 && (abs(rEta)==35 || abs(rEta)==36)) ++HFlumibad;
688  }
689  else if (id.subdet()==HcalOuter)
690  {
691  // Mark HORing+/-2 channels as present, HO/YB+/-2 has HV off (at 100V).
692  if (excludeHORing2_==true && rDepth==4)
693  if (abs(rEta)>=11 && abs(rEta)<=15 && !isSiPM(rEta,rPhi,rDepth)) continue;
694 
695  if (excludeHO1P02_==true)
696  if( (rEta>4 && rEta<10) && (rPhi<=10 || rPhi>70) ) continue;
697 
698  if (KnownBadCells_.find(id)!=KnownBadCells_.end()) continue;
699 
700  ++hoHists.count_bad;
701  if (abs(rEta)<5) ++HO0bad;
702  else ++HO12bad;
703  }
704  else
705  continue; // skip anything that isn't HB, HE, HO, HF
706  // extra protection against nonsensical values -- prevents occasional crashes
707 
708  ++badunpackerreport[binEta][rPhi-1][rDepth-1];
709  ++baddigis[binEta][rPhi-1][rDepth-1];
710 
711  // QPLL unlocking channels, have to ignore unpacker errors (fix requires opening CMS)
712  bool HEM15A = true ? (id.subdet()==HcalEndcap && (rPhi>56 && rPhi<59 && rEta<0)) : false;
713  bool HEM15B = true ? (id.subdet()==HcalEndcap && (rPhi>54 && rPhi<57 && rEta<0)) : false;
714  bool HBP14A = true ? (id.subdet()==HcalBarrel && (rPhi>50 && rPhi<53 && rEta>0)) : false;
715 
716  if(excludeBadQPLLs_ && rDepth==1)
717  if( HEM15A || HEM15B || HBP14A )
718  ++knownbadQPLLs;
719 
720  uniqcounter2[binEta][rPhi-1][rDepth-1]++;
721  }
722  }
724 
725  int firsthbcap=-1;
726  int firsthecap=-1;
727  int firsthocap=-1;
728  int firsthfcap=-1;
729 
730  for (HBHEDigiCollection::const_iterator j=hbhe.begin(); j!=hbhe.end(); ++j)
731  {
732  const HBHEDataFrame digi = (const HBHEDataFrame)(*j);
733 
734  if (digi.id().subdet()==HcalBarrel)
735  {
736  if (!HBpresent_) continue;
737  if (KnownBadCells_.find(digi.id())!=KnownBadCells_.end()) continue;
738 
739  process_Digi(digi, hbHists, firsthbcap);
740 
741  }
742  else if (digi.id().subdet()==HcalEndcap)
743  {
744  if (!HEpresent_) continue;
745  process_Digi(digi, heHists,firsthecap);
746  }
747  }
748 
749  // // Fill good digis vs lumi block; also fill bad errors?
752 
753  // Calculate number of bad quality cells and bad quality fraction
755  {
757  if (counter<DIGI_SUBDET_NUM)
760  if (counter2<DIGI_SUBDET_NUM) ++hbHists.count_BQFrac[(int)counter2];
761  }
762 
764  {
766  if (counter<DIGI_SUBDET_NUM)
769  if (counter2<DIGI_SUBDET_NUM) ++heHists.count_BQFrac[int(counter2)];
770  }
771 
773  if (HOpresent_)
774  {
775  for (HODigiCollection::const_iterator j=ho.begin(); j!=ho.end(); ++j)
776  {
777  const HODataFrame digi = (const HODataFrame)(*j);
778  // Mark HORing+/-2 channels as present, HO/YB+/-2 has HV off (at 100V).
779  if (excludeHORing2_==true && digi.id().depth()==4)
780  if (abs(digi.id().ieta())>=11 && abs(digi.id().ieta())<=15 &&
781  !isSiPM(digi.id().ieta(),digi.id().iphi(),digi.id().depth())) continue;
782 
783  if (excludeHO1P02_==true)
784  if( (digi.id().ieta()>4 && digi.id().ieta()<10)
785  && (digi.id().iphi()<=10 || digi.id().iphi()>70) ) continue;
786 
787  if (KnownBadCells_.find(digi.id())!=KnownBadCells_.end()) continue;
788 
789  process_Digi(digi, hoHists, firsthocap);
790  } // for (HODigiCollection)
791 
792  if (hoHists.count_bad>0 || hoHists.count_good>0)
793  {
795  if (counter<DIGI_SUBDET_NUM)
797 
799  if (counter2<DIGI_SUBDET_NUM) ++hoHists.count_BQFrac[int(counter2)];
800  }
802  } // if (HOpresent_)
803 
805  if (HFpresent_)
806  {
807  for (HFDigiCollection::const_iterator j=hf.begin(); j!=hf.end(); ++j)
808  {
809  const HFDataFrame digi = (const HFDataFrame)(*j);
810  process_Digi(digi, hfHists, firsthfcap);
811  } // for (HFDigiCollection)
812 
813  if (hfHists.count_bad>0 || hfHists.count_good>0)
814  {
816  if (counter<DIGI_SUBDET_NUM)
819  if (counter2<DIGI_SUBDET_NUM) ++hfHists.count_BQFrac[int(counter2)];
820  }
822  } // if (HFpresent_)
823 
824  // This only counts digis that are present but bad somehow; it does not count digis that are missing
827 
828  if (count_good<DIGI_NUM)
829  ++diginum[count_good];
830 
831  // Fill bad quality histograms
832  DigiUnpackerErrorFrac->Fill(1.*report.badQualityDigis()/(report.badQualityDigis()+count_good));
833  DigiBQ->Fill(count_bad);
834  if (count_bad>0 || count_good>0)
835  DigiBQFrac->Fill(1.*count_bad/(count_bad+count_good));
836 
837  // Call 'update' on all histograms so that they update in online DQM
842 
843  // Now update global (non-subdetector-specific) histograms
844  DigiNum->update();
845  DigiErrorVME->update();
847  DigiBQ->update();
848  DigiBQFrac->update();
851 
852  // Update eta-phi hists
853  for (unsigned int zz=0;zz<DigiErrorOccupancyByDepth.depth.size();++zz)
854  DigiErrorOccupancyByDepth.depth[zz]->update();
855  for (unsigned int zz=0;zz<DigiErrorsByDepth.depth.size();++zz)
856  DigiErrorsByDepth.depth[zz]->update();
857  for (unsigned int zz=0;zz<DigiErrorsBadCapID.depth.size();++zz)
858  DigiErrorsBadCapID.depth[zz]->update();
859  for (unsigned int zz=0;zz<DigiErrorsDVErr.depth.size();++zz)
860  DigiErrorsDVErr.depth[zz]->update();
861  for (unsigned int zz=0;zz<DigiErrorsBadDigiSize.depth.size();++zz)
862  DigiErrorsBadDigiSize.depth[zz]->update();
863  for (unsigned int zz=0;zz<DigiErrorsBadADCSum.depth.size();++zz)
864  DigiErrorsBadADCSum.depth[zz]->update();
865  for (unsigned int zz=0;zz<DigiErrorsUnpacker.depth.size();++zz)
866  DigiErrorsUnpacker.depth[zz]->update();
867  for (unsigned int zz=0;zz<DigiErrorsBadFibBCNOff.depth.size();++zz)
868  DigiErrorsBadFibBCNOff.depth[zz]->update();
869 
874  DigiSize->update();
876 
877  // // Fill problems vs. lumi block plots
878  // ProblemsVsLB->Fill(currentLS,count_bad);
879  // ProblemsVsLB_HB->Fill(currentLS,hbHists.count_bad);
880  // ProblemsVsLB_HE->Fill(currentLS,heHists.count_bad);
881  // ProblemsVsLB_HO->Fill(currentLS,hoHists.count_bad);
882  // ProblemsVsLB_HF->Fill(currentLS,hfHists.count_bad);
883  // ProblemsVsLB_HBHEHF->Fill(currentLS,hbHists.count_bad+heHists.count_bad+hfHists.count_bad);
884 
885  // // Fill the number of problem digis in each channel
886  // ProblemsCurrentLB->Fill(-1,-1,1); // event counter
887  // ProblemsCurrentLB->Fill(0,0,hbHists.count_bad);
888  // ProblemsCurrentLB->Fill(1,0,heHists.count_bad);
889  // ProblemsCurrentLB->Fill(2,0,hoHists.count_bad);
890  // ProblemsCurrentLB->Fill(3,0,hfHists.count_bad);
891  // ProblemsCurrentLB->Fill(4,0,HO0bad);
892  // ProblemsCurrentLB->Fill(5,0,HO12bad);
893  // ProblemsCurrentLB->Fill(6,0,HFlumibad);
894 
895  // Call fill method every checkNevents
896  //fill_Nevents();
897 
898  return;
899 } // void HcalDigiMonitor::processEvent(...)
900 
901 
902 
903 template <class DIGI>
904 int HcalDigiMonitor::process_Digi(DIGI& digi, DigiHists& h, int& firstcap)
905 {
906  int err=0x0;
907  bool bitUp = false;
908  int ADCcount=0;
909 
910  int shapeThresh=0;
911 
912  int mindigisize=1;
913  int maxdigisize=10;
914 
915  if (digi.id().subdet()==HcalBarrel)
916  {
917  shapeThresh=shapeThreshHB_;
918  mindigisize=mindigisizeHBHE_;
919  maxdigisize=maxdigisizeHBHE_;
920  }
921  else if (digi.id().subdet()==HcalEndcap)
922  {
923  shapeThresh=shapeThreshHE_;
924  mindigisize=mindigisizeHBHE_;
925  maxdigisize=maxdigisizeHBHE_;
926  }
927  else if (digi.id().subdet()==HcalOuter)
928  {
929  shapeThresh=shapeThreshHO_;
930  mindigisize=mindigisizeHO_;
931  maxdigisize=maxdigisizeHO_;
932  }
933  else if (digi.id().subdet()==HcalForward)
934  {
935  shapeThresh=shapeThreshHF_;
936  mindigisize=mindigisizeHF_;
937  maxdigisize=maxdigisizeHF_;
938  }
939  int iEta = digi.id().ieta();
940  int iPhi = digi.id().iphi();
941  int iDepth = digi.id().depth();
942  int calcEta = CalcEtaBin(digi.id().subdet(),iEta,iDepth);
943 
944  // Check that digi size is correct
945  if (digi.size()<mindigisize || digi.size()>maxdigisize)
946  {
947  if (digi_checkdigisize_) err|=0x1;
948  ++baddigisize[calcEta][iPhi-1][iDepth-1];
949  }
950  // Check digi size; if > 20, increment highest bin of digisize array
951  if (digi.size()<20)
952  ++digisize[static_cast<int>(digi.size())][digi.id().subdet()-1];
953  else
954  ++digisize[19][digi.id().subdet()-1];
955 
956  // loop over time slices of digi to check capID and errors
957  ++h.count_presample[digi.presamples()];
958 
959  // Check CapID rotation
960  if (firstcap==-1) firstcap = digi.sample(0).capid();
961  int capdif = digi.sample(0).capid() - firstcap;
962  //capdif = capdif%3 - capdif/3; // unnecessary?
963  // capdif should run from -3 to +3
964  if (capdif >-4 && capdif<4)
965  ++h.capIDdiff[capdif+3];
966  else
967  ++h.capIDdiff[7];
968 
969  int last=-1;
970 
971  int offset = digi.fiberIdleOffset();
972 
973  // Only count BCN offset errors if ExpectedOrbitMessage Time is >-1
974  // For offline (and thus cfg default), this won't be checked, since
975  // we can't keep up to date with changes.
976  if (offset != -1000 && DigiMonitor_ExpectedOrbitMessageTime_>-1)
977  {
978  // increment counters only for non-zero offsets?
979  ++h.fibbcnoff[offset + 7];
980  if (offset != 0)
981  {
982  ++badFibBCNOff[calcEta][iPhi-1][iDepth-1];
983  if (shutOffOrbitTest_ == false) err |= 0xF; // not an error if test turned off
984  }
985  }
986 
987  int tssum=0;
988 
989  bool digi_error=false;
990 
991  const int DigiSize=digi.size();
992  for (int i=0;i<10;++i) pedSubtractedADC_[i]=0;
993  const int pedSubADCsize=sizeof(pedSubtractedADC_)/sizeof(double);
994 
995  std::map<HcalDetId, std::vector<double> >::iterator foundID = PedestalsByCapId_.find(digi.id());
996  for (int i=0;i<DigiSize;++i)
997  {
998  int thisCapid = digi.sample(i).capid();
999  if (thisCapid>=0 && thisCapid<4) ++h.capid[thisCapid];
1000 
1001  if (makeDiagnostics_)
1002  {
1003  if(bitUpset(last,thisCapid)) bitUp=true; // checking capID rotation
1004  last = thisCapid;
1005  // Check for digi error bits
1006  if (digi_checkdverr_)
1007  {
1008  if(digi.sample(i).er()) err=(err|0x2);
1009  if(!digi.sample(i).dv()) err=(err|0x2);
1010  }
1011  if ((digi_error==false) && (digi.sample(i).er() || !digi.sample(i).dv()))
1012  {
1013  ++digierrorsdverr[calcEta][iPhi-1][iDepth-1];
1014  digi_error=true; // only count 1 error per digi in this plot
1015  }
1016  ++h.dverr[static_cast<int>(2*digi.sample(i).er()+digi.sample(i).dv())];
1017  } // if (makeDiagnostics_)
1018 
1019  h.count_shape[i]+=digi.sample(i).adc();
1020 
1021  // Calculate ADC sum of adjacent samples -- still necessary?
1022  if (i==digi.size()-1) continue;
1023  tssum= digi.sample(i).adc()+digi.sample(i+1).adc();
1024  if (tssum<50 && tssum>=0)
1025  {
1026  if (iEta>0)
1027  ++h.tssumplus[tssum][i];
1028  else
1029  ++h.tssumminus[tssum][i];
1030  }
1031 
1032  if (digi.sample(i).adc()<0) ++h.adc[0];
1033  else if (digi.sample(i).adc()<200) ++h.adc[digi.sample(i).adc()];
1034  else ++h.adc[199];
1035 
1036  if (i>=pedSubADCsize) continue; // don't exceed maximum array length when checking digis
1037 
1038  if (foundID!=PedestalsByCapId_.end())
1039  {
1040  pedSubtractedADC_[i]=digi.sample(i).adc()-(foundID->second)[thisCapid];
1041  ADCcount+=(int)(digi.sample(i).adc()-(foundID->second)[thisCapid]);
1042  }
1043  else
1044  {
1045  pedSubtractedADC_[i]=digi.sample(i).adc()-3;
1046  ADCcount+=digi.sample(i).adc()-3; // default pedestal subtraction of 3 ADC counts
1047  }
1048  } // for (int i=0;i<digi.size();++i)
1049 
1050  // capid error found
1051  if(bitUp)
1052  {
1053  if (digi_checkcapid_) err=(err|0x4);
1054  ++badcapID[calcEta][iPhi-1][iDepth-1];
1055  }
1056 
1057 
1058  // These plots generally don't get filled, unless we turn off the suppression of bad digis
1059  if (err>0)
1060  {
1061  if(uniqcounter[calcEta][iPhi-1][iDepth-1]<1)
1062  {
1063  ++h.count_bad;
1064  ++baddigis[calcEta][iPhi-1][iDepth-1];
1065  ++errorVME[static_cast<int>(2*(digi.elecId().htrSlot()+0.5*digi.elecId().htrTopBottom()))][static_cast<int>(digi.elecId().readoutVMECrateId())];
1066  ++errorSpigot[static_cast<int>(digi.elecId().spigot())][static_cast<int>(digi.elecId().dccid())];
1067  }
1068  uniqcounter[calcEta][iPhi-1][iDepth-1]++;
1069 
1070  return err;
1071  }
1072 
1073  if (ADCcount<0) ADCcount=0;
1074  if (ADCcount<199)
1075  ++h.adcsum[ADCcount];
1076  else
1077  ++h.adcsum[199]; // effective overflow bin
1078 
1079  // require larger threshold to look at pulse shapes
1080 
1081  if (ADCcount>shapeThresh && passedMinBiasHLT_ && HT_HFP_>1 && HT_HFM_>1)
1082  {
1083  h.ThreshCount->Fill(0,1);
1084  if (digi.id().subdet()!=HcalOuter || isSiPM(iEta,iPhi, iDepth)==false)
1085  {
1086  for (int i=0;i<pedSubADCsize;++i)
1088  }
1089  }
1090 
1091  // occupancy plots are only filled for good histograms
1092  ++h.count_good;
1093  ++occupancyEtaPhi[calcEta][iPhi-1][iDepth-1];
1094  ++occupancyEta[iEta+41];
1095  ++occupancyPhi[iPhi-1];
1096  // htr Slots run from 0-20, incremented by 0.5 for top/bottom
1097  ++occupancyVME[static_cast<int>(2*(digi.elecId().htrSlot()+0.5*digi.elecId().htrTopBottom()))][static_cast<int>(digi.elecId().readoutVMECrateId())];
1098  ++occupancySpigot[static_cast<int>(digi.elecId().spigot())][static_cast<int>(digi.elecId().dccid())];
1099 
1100  // Pawel's code for HF timing checks -- run only in online mode for non-calib events
1101  if (digi.id().subdet()==HcalForward
1102  && Online_ //only run online
1103  && currenttype_==0 // require non-calibration event
1104  && passedMinBiasHLT_ // require min bias trigger
1105  )
1106  {
1107  int maxtime=-1;
1108  double maxenergy=-1, fullenergy=0;
1109  int digisize=digi.size();
1110  for (int ff=0;ff<digisize;++ff)
1111  {
1112  fullenergy+=digi.sample(ff).nominal_fC()-2.5;
1113  if (digi.sample(ff).nominal_fC()-2.5>maxenergy)
1114  {
1115  maxenergy=digi.sample(ff).nominal_fC()-2.5;
1116  maxtime=ff;
1117  }
1118  }
1119 
1120  if (maxtime>=2 && maxtime<=5 && maxenergy>20 && maxenergy<100) // only look between time slices 2-5; anything else should be nonsense
1121  {
1122  for (int ff=0;ff<digisize;++ff){
1123  if(fullenergy>0){
1124  if(digi.id().ieta()>0)HFP_shape->Fill(ff,(digi.sample(ff).nominal_fC()-2.5)/fullenergy);
1125  if(digi.id().ieta()<0)HFM_shape->Fill(ff,(digi.sample(ff).nominal_fC()-2.5)/fullenergy);
1126  }
1127  }
1128 
1129  double time_den=0, time_num=0;
1130  // form weighted time sum
1131  int startslice=std::max(0,maxtime-1);
1132  int endslice=std::min(digisize-1,maxtime+1);
1133  for (int ss=startslice;ss<=endslice;++ss)
1134  {
1135  // subtract 'default' pedestal of 2.5 fC
1136  time_num+=ss*(digi.sample(ss).nominal_fC()-2.5);
1137  time_den+=digi.sample(ss).nominal_fC()-2.5;
1138  }
1139 
1140  int myiphi=iPhi;
1141  if (iDepth==2) ++myiphi;
1142  if (HFtiming_etaProfile!=0 && time_den!=0)
1143  HFtiming_etaProfile->Fill(iEta,time_num/time_den);
1144  if (HFtiming_totaltime2D!=0 && time_den!=0)
1145  HFtiming_totaltime2D->Fill(iEta,myiphi,time_num/time_den);
1146  if (HFtiming_occupancy2D!=0 && time_den!=0)
1147  HFtiming_occupancy2D->Fill(iEta,myiphi,1);
1148  } //maxtime>-1
1149  } // if HcalForward
1150 
1151  return err;
1152 } // template <class DIGI> int HcalDigiMonitor::process_Digi
1153 
1155  const edm::EventSetup& c)
1156 {
1159 }
1160 
1162  const edm::EventSetup& c)
1163 {
1164  if (LumiInOrder(lumiSeg.luminosityBlock())==false) return;
1165 
1166  // Reset current LS histogram
1167  if (ProblemsCurrentLB)
1169 
1171 
1172  //increase the number of LS counting, for alarmer. Only make alarms for HBHE
1173  if(hbhedcsON == true && hfdcsON == true && HBpresent_ == 1 && HEpresent_ == 1 && HFpresent_ == 1)
1174  ++alarmer_counter_;
1175  else
1176  alarmer_counter_ = 0;
1177 
1178  fill_Nevents();
1179 
1180  zeroCounters(); // reset counters of good/bad digis
1181 
1182  return;
1183 }
1184 
1186 {
1187  if (debug_>0)
1188  std::cout <<"<HcalDigiMonitor> Calling fill_Nevents for event "<<tevt_<< " (processed events = "<<ievt_<<")"<<std::endl;
1189  int iPhi, iEta, iDepth;
1190  // bool valid=false;
1191 
1192  // Fill problems vs. lumi block plots
1199 
1201  alarmer_counter_ = 0;
1202 
1203  if( alarmer_counter_ >= 5 )
1205 
1206  // Fill the number of problem digis in each channel
1207  if (ProblemsCurrentLB)
1208  {
1209  ProblemsCurrentLB->Fill(-1,-1,1); // event counter
1217  }
1218 
1219  // Fill plots of sums of adjacent digi samples
1220  for (int i=0;i<10;++i)
1221  {
1222  for (int j=0;j<50;++j)
1223  {
1224  if (hbHists.tssumplus[j][i]>0) hbHists.TS_sum_plus[i]->Fill(j, hbHists.tssumplus[j][i]);
1225  if (hbHists.tssumminus[j][i]>0) hbHists.TS_sum_minus[i]->Fill(j, hbHists.tssumminus[j][i]);
1226  if (heHists.tssumplus[j][i]>0) heHists.TS_sum_plus[i]->Fill(j, heHists.tssumplus[j][i]);
1227  if (heHists.tssumminus[j][i]>0) heHists.TS_sum_minus[i]->Fill(j, heHists.tssumminus[j][i]);
1228  if (hoHists.tssumplus[j][i]>0) hoHists.TS_sum_plus[i]->Fill(j, hoHists.tssumplus[j][i]);
1229  if (hoHists.tssumminus[j][i]>0) hoHists.TS_sum_minus[i]->Fill(j, hoHists.tssumminus[j][i]);
1230  if (hfHists.tssumplus[j][i]>0) hfHists.TS_sum_plus[i]->Fill(j, hfHists.tssumplus[j][i]);
1231  if (hfHists.tssumminus[j][i]>0) hfHists.TS_sum_minus[i]->Fill(j, hfHists.tssumminus[j][i]);
1232  }
1233  } // for (int i=0;i<10;++i)
1234 
1235  for (int i=0;i<DIGI_NUM;++i)
1236  {
1237  if (diginum[i]>0) DigiNum->Fill(i, diginum[i]);
1238  if (i>=DIGI_SUBDET_NUM) continue;
1239 
1240  if (hbHists.count_BQ[i]>0) hbHists.BQ->Fill(i, hbHists.count_BQ[i]);
1241  if (heHists.count_BQ[i]>0) heHists.BQ->Fill(i, heHists.count_BQ[i]);
1242  if (hoHists.count_BQ[i]>0) hoHists.BQ->Fill(i, hoHists.count_BQ[i]);
1243  if (hfHists.count_BQ[i]>0) hfHists.BQ->Fill(i, hfHists.count_BQ[i]);
1244  }//for int i=0;i<DIGI_NUM;++i)
1245 
1246 
1247  // Fill data-valid/error plots and capid plots
1248  for (int i=0;i<4;++i)
1249  {
1250  if (hbHists.dverr[i]>0) hbHists.DVerr->Fill(i, hbHists.dverr[i]);
1251  if (heHists.dverr[i]>0) heHists.DVerr->Fill(i, heHists.dverr[i]);
1252  if (hoHists.dverr[i]>0) hoHists.DVerr->Fill(i, hoHists.dverr[i]);
1253  if (hfHists.dverr[i]>0) hfHists.DVerr->Fill(i, hfHists.dverr[i]);
1254 
1255  if (hbHists.capid[i]>0) hbHists.CapID->Fill(i, hbHists.capid[i]);
1256  if (heHists.capid[i]>0) heHists.CapID->Fill(i, heHists.capid[i]);
1257  if (hoHists.capid[i]>0) hoHists.CapID->Fill(i, hoHists.capid[i]);
1258  if (hfHists.capid[i]>0) hfHists.CapID->Fill(i, hfHists.capid[i]);
1259  }
1260 
1261  for (int i=0;i<200;++i)
1262  {
1263  if (hbHists.adc[i]>0) hbHists.ADC->Fill(i, hbHists.adc[i]);
1264 
1265  if (heHists.adc[i]>0) heHists.ADC->Fill(i, heHists.adc[i]);
1266  if (hoHists.adc[i]>0) hoHists.ADC->Fill(i, hoHists.adc[i]);
1267  if (hfHists.adc[i]>0) hfHists.ADC->Fill(i, hfHists.adc[i]);
1268 
1273  }
1274 
1275  for (int i = 0; i < 15; ++i)
1276  {
1277  if (hbHists.fibbcnoff[i]>0) hbHists.fibBCNOff->Fill(i-7,
1278  hbHists.fibbcnoff[i]);
1279  if (heHists.fibbcnoff[i]>0) heHists.fibBCNOff->Fill(i-7,
1280  heHists.fibbcnoff[i]);
1281  if (hfHists.fibbcnoff[i]>0) hfHists.fibBCNOff->Fill(i-7,
1282  hfHists.fibbcnoff[i]);
1283  if (hoHists.fibbcnoff[i]>0) hoHists.fibBCNOff->Fill(i-7,
1284  hoHists.fibbcnoff[i]);
1285  }
1286 
1287  // Fill plots of bad fraction of digis found
1288  for (int i=0;i<DIGI_BQ_FRAC_NBINS;++i)
1289  {
1290  if (DIGI_BQ_FRAC_NBINS==1) break;
1291  if (hbHists.count_BQFrac[i]>0) hbHists.BQFrac->Fill(1.*i/(DIGI_BQ_FRAC_NBINS-1), hbHists.count_BQFrac[i]);
1292  if (heHists.count_BQFrac[i]>0) heHists.BQFrac->Fill(1.*i/(DIGI_BQ_FRAC_NBINS-1), heHists.count_BQFrac[i]);
1293  if (hoHists.count_BQFrac[i]>0)
1294  {
1295  hoHists.BQFrac->Fill(1.*i/(DIGI_BQ_FRAC_NBINS), hoHists.count_BQFrac[i]);
1296  }
1297  if (hfHists.count_BQFrac[i]>0) hfHists.BQFrac->Fill(1.*i/(DIGI_BQ_FRAC_NBINS-1), hfHists.count_BQFrac[i]);
1298  }//for (int i=0;i<DIGI_BQ_FRAC_NBINS;++i)
1299 
1300  // Fill presample plots
1301  for (int i=0;i<50;++i)
1302  {
1307  } //for (int i=0;i<50;++i)
1308 
1309  // Fill shape plots
1310  for (int i=0;i<10;++i)
1311  {
1320  }// for (int i=0;i<10;++i)
1321 
1322  // Fill capID difference plots
1323  for (int i=0;i<8;++i)
1324  {
1329  }
1330 
1331  // Fill VME plots
1332  for (int i=0;i<40;++i)
1333  {
1334  for (int j=0;j<18;++j)
1335  {
1336  if (errorVME[i][j]>0) DigiErrorVME->Fill(i, j,errorVME[i][j]);
1337  if (occupancyVME[i][j]>0) DigiOccupancyVME->Fill(i, j,occupancyVME[i][j]);
1338  }
1339  } //for (int i=0;i<40;++i)
1340 
1341  // Fill SPIGOT plots
1342  for (int i=0;i<HcalDCCHeader::SPIGOT_COUNT;++i)
1343  {
1344  for (int j=0;j<36;++j)
1345  {
1346  if (errorSpigot[i][j]>0) DigiErrorSpigot->Fill(i, j,errorSpigot[i][j]);
1348  }
1349  } //for (int i=0;i<HcalDCCHeader::SPIGOT_COUNT;++i)
1350 
1351  // Loop over subdetectors
1352  for (int sub=0;sub<4;++sub)
1353  {
1354  for (int dsize=0;dsize<20;++dsize)
1355  {
1356  if (digisize[dsize][sub]>0)
1357  DigiSize->Fill(sub,dsize,digisize[dsize][sub]);
1358  }
1359  } // for (int sub=0;sub<4;++sub)
1360 
1361  // Loop over eta, phi, depth
1362  for (int d=0;d<4;++d)
1363  {
1364  iDepth=d+1;
1365  DigiErrorsByDepth.depth[d]->setBinContent(0,0,ievt_); // underflow bin contains event counter
1366  DigiOccupancyByDepth.depth[d]->setBinContent(0,0,ievt_);
1367  DigiErrorsBadDigiSize.depth[d]->setBinContent(0,0,ievt_);
1368  DigiErrorsUnpacker.depth[d]->setBinContent(0,0,ievt_);
1369  DigiErrorsBadFibBCNOff.depth[d]->setBinContent(0,0,ievt_);
1370 
1371  for (int phi=0;phi<72;++phi)
1372  {
1373  iPhi=phi+1;
1375  for (int eta=0;eta<83;++eta)
1376  {
1377  // DigiOccupanyEta uses 'true' ieta (included the overlap at +/- 29)
1378  iEta=eta-41;
1379  if (phi==0)
1381  // valid=false;
1382 
1383  // HB
1384  if (validDetId(HcalBarrel, iEta, iPhi, iDepth))
1385  {
1386  // valid=true;
1387  if (HBpresent_)
1388  {
1389  int calcEta = CalcEtaBin(HcalBarrel,iEta,iDepth);
1390 
1391  DigiOccupancyByDepth.depth[d]->Fill(iEta, iPhi,
1392  occupancyEtaPhi[calcEta][phi][d]);
1393 
1394  if (makeDiagnostics_)
1395  {
1396  DigiErrorsBadCapID.depth[d]->Fill(iEta, iPhi,
1397  badcapID[calcEta][phi][d]);
1398  DigiErrorsDVErr.depth[d]->Fill(iEta, iPhi,
1399  digierrorsdverr[calcEta][phi][d]);
1400  }
1401  DigiErrorsBadDigiSize.depth[d]->Fill(iEta, iPhi,
1402  baddigisize[calcEta][phi][d]);
1403  DigiErrorsBadFibBCNOff.depth[d]->Fill(iEta, iPhi,
1404  badFibBCNOff[calcEta][phi][d]);
1405  DigiErrorsUnpacker.depth[d]->Fill(iEta, iPhi,
1406  badunpackerreport[calcEta][phi][d]);
1407  DigiErrorsByDepth.depth[d]->Fill(iEta, iPhi,
1408  baddigis[calcEta][phi][d]);
1409  // Use this for testing purposes only
1410  //DigiErrorsByDepth[d]->Fill(iEta, iPhi, ievt_);
1411  } // if (HBpresent_)
1412  } // validDetId(HB)
1413  // HE
1414  if (validDetId(HcalEndcap, iEta, iPhi, iDepth))
1415  {
1416  // valid=true;
1417  if (HEpresent_)
1418  {
1419  int calcEta = CalcEtaBin(HcalEndcap,iEta,iDepth);
1420 
1421  DigiOccupancyByDepth.depth[d]->Fill(iEta, iPhi,
1422  occupancyEtaPhi[calcEta][phi][d]);
1423 
1424  if (makeDiagnostics_)
1425  {
1426  DigiErrorsBadCapID.depth[d]->Fill(iEta, iPhi,
1427  badcapID[calcEta][phi][d]);
1428  DigiErrorsDVErr.depth[d]->Fill(iEta, iPhi,
1429  digierrorsdverr[calcEta][phi][d]);
1430  }
1431  DigiErrorsBadDigiSize.depth[d]->Fill(iEta, iPhi,
1432  baddigisize[calcEta][phi][d]);
1433  DigiErrorsBadFibBCNOff.depth[d]->Fill(iEta, iPhi,
1434  badFibBCNOff[calcEta][phi][d]);
1435  DigiErrorsUnpacker.depth[d]->Fill(iEta, iPhi,
1436  badunpackerreport[calcEta][phi][d]);
1437  DigiErrorsByDepth.depth[d]->Fill(iEta, iPhi,
1438  baddigis[calcEta][phi][d]);
1439  } // if (HEpresent_)
1440  } // valid HE found
1441  // HO
1442  if (validDetId(HcalOuter,iEta,iPhi,iDepth))
1443  {
1444  // valid=true;
1445  if (HOpresent_)
1446  {
1447  int calcEta = CalcEtaBin(HcalOuter,iEta,iDepth);
1448  DigiOccupancyByDepth.depth[d]->Fill(iEta, iPhi,
1449  occupancyEtaPhi[calcEta][phi][d]);
1450  if (makeDiagnostics_)
1451  {
1452  DigiErrorsBadCapID.depth[d]->Fill(iEta, iPhi,
1453  badcapID[calcEta][phi][d]);
1454  DigiErrorsDVErr.depth[d]->Fill(iEta, iPhi,
1455  digierrorsdverr[calcEta][phi][d]);
1456  }
1457  DigiErrorsBadDigiSize.depth[d]->Fill(iEta, iPhi,
1458  baddigisize[calcEta][phi][d]);
1459  DigiErrorsBadFibBCNOff.depth[d]->Fill(iEta, iPhi,
1460  badFibBCNOff[calcEta][phi][d]);
1461  DigiErrorsUnpacker.depth[d]->Fill(iEta, iPhi,
1462  badunpackerreport[calcEta][phi][d]);
1463 
1464  DigiErrorsByDepth.depth[d]->Fill(iEta,iPhi,
1465  baddigis[calcEta][phi][d]);
1466  } // if (HOpresent_)
1467  }//validDetId(HO)
1468  // HF
1469  if (validDetId(HcalForward,iEta,iPhi,iDepth))
1470  {
1471  // valid=true;
1472  if (HFpresent_)
1473  {
1474  int calcEta = CalcEtaBin(HcalForward,iEta,iDepth);
1475  int zside = iEta/abs(iEta);
1476  DigiOccupancyByDepth.depth[d]->Fill(iEta+zside, iPhi,
1477  occupancyEtaPhi[calcEta][phi][d]);
1478 
1479  if (makeDiagnostics_)
1480  {
1481  DigiErrorsBadCapID.depth[d]->Fill(iEta+zside, iPhi,
1482  badcapID[calcEta][phi][d]);
1483  DigiErrorsDVErr.depth[d]->Fill(iEta+zside, iPhi,
1484  digierrorsdverr[calcEta][phi][d]);
1485  }
1486  DigiErrorsBadDigiSize.depth[d]->Fill(iEta+zside, iPhi,
1487  baddigisize[calcEta][phi][d]);
1488  DigiErrorsBadFibBCNOff.depth[d]->Fill(iEta+zside, iPhi,
1489  badFibBCNOff[calcEta][phi][d]);
1490  DigiErrorsUnpacker.depth[d]->Fill(iEta+zside, iPhi,
1491  badunpackerreport[calcEta][phi][d]);
1492  DigiErrorsByDepth.depth[d]->Fill(iEta+zside, iPhi,
1493  baddigis[calcEta][phi][d]);
1494 
1495  } // if (HFpresent_)
1496  }
1497  } // for (int eta=0;...)
1498  } // for (int phi=0;...)
1499  } // for (int d=0;...)
1500 
1501  // Now fill all the unphysical cell values
1503  if (makeDiagnostics_)
1504  {
1507  }
1512 
1513  // zeroCounters(); // reset counters of good/bad digis
1514 
1515  return;
1516 } // void HcalDigiMonitor::fill_Nevents()
1517 
1518 
1520 {
1521  // Set all histogram counters back to 0
1522  // Call this after all every N evnets
1523 
1524  /******** Zero all counters *******/
1525  for (int d=0; d<DEPTHBINS; d++) {
1526  for (int eta=0; eta<ETABINS; eta++) {
1527  for (int phi=0; phi<PHIBINS; phi++){
1528  uniqcounter[eta][phi][d] = 0.0;
1529  uniqcounter2[eta][phi][d] = 0.0;
1530  }
1531  }
1532  }
1533 
1534  hbHists.count_bad=0;
1535  hbHists.count_good=0;
1536  heHists.count_bad=0;
1537  heHists.count_good=0;
1538  hoHists.count_bad=0;
1539  hoHists.count_good=0;
1540  hfHists.count_bad=0;
1541  hfHists.count_good=0;
1542 
1543  knownbadQPLLs = 0;
1544 
1545  HO0bad=0;
1546  HO12bad=0;
1547  HFlumibad=0;
1548 
1549  for (int i=0;i<85;++i)
1550  {
1551  occupancyEta[i]=0;
1552  if (i<72)
1553  occupancyPhi[i]=0;
1554  for (int j=0;j<72;++j)
1555  {
1556  for (int k=0;k<4;++k)
1557  {
1558  baddigis[i][j][k]=0;
1559  badcapID[i][j][k]=0;
1560  baddigisize[i][j][k]=0;
1561  occupancyEtaPhi[i][j][k]=0;
1562  digierrorsdverr[i][j][k]=0;
1563  badFibBCNOff[i][j][k]=0;
1564  badunpackerreport[i][j][k]=0;
1565  }
1566  } // for (int j=0;j<72;++i)
1567  } // for (int i=0;i<85;++i)
1568 
1569  for (int i=0;i<40;++i)
1570  {
1571  for (int j=0;j<18;++j)
1572  {
1573  occupancyVME[i][j]=0;
1574  errorVME[i][j]=0;
1575  }
1576  }
1577 
1578  for (int i=0;i<HcalDCCHeader::SPIGOT_COUNT;++i)
1579  {
1580  for (int j=0;j<36;++j)
1581  {
1582  occupancySpigot[i][j]=0;
1583  errorSpigot[i][j]=0;
1584  }
1585  }
1586 
1587 
1588  for (int i=0;i<20;++i)
1589  {
1590  for (int j=0;j<4;++j)
1591  digisize[i][j]=0;
1592  }
1593 
1594  for (int i=0;i<DIGI_NUM;++i)
1595  {
1596  diginum[i]=0;
1597 
1598  // set all DigiHists counters to 0
1599  if (i<4)
1600  {
1601  hbHists.dverr[i]=0;
1602  heHists.dverr[i]=0;
1603  hoHists.dverr[i]=0;
1604  hfHists.dverr[i]=0;
1605  hbHists.capid[i]=0;
1606  heHists.capid[i]=0;
1607  hoHists.capid[i]=0;
1608  hfHists.capid[i]=0;
1609  }
1610  if (i<8)
1611  {
1612  hbHists.capIDdiff[i]=0;
1613  heHists.capIDdiff[i]=0;
1614  hoHists.capIDdiff[i]=0;
1615  hfHists.capIDdiff[i]=0;
1616  }
1617 
1618  if (i<10)
1619  {
1620  hbHists.count_shape[i]=0;
1621  heHists.count_shape[i]=0;
1622  hoHists.count_shape[i]=0;
1623  hfHists.count_shape[i]=0;
1624 
1629  }
1630  if (i<50)
1631  {
1636  for (int j=0;j<10;++j)
1637  {
1638  hbHists.tssumplus[i][j]=0;
1639  heHists.tssumplus[i][j]=0;
1640  hoHists.tssumplus[i][j]=0;
1641  hfHists.tssumplus[i][j]=0;
1642  hbHists.tssumminus[i][j]=0;
1643  heHists.tssumminus[i][j]=0;
1644  hoHists.tssumminus[i][j]=0;
1645  hfHists.tssumminus[i][j]=0;
1646  }
1647  }
1648 
1649  if (i<15)
1650  {
1651  hbHists.fibbcnoff[i]=0;
1652  heHists.fibbcnoff[i]=0;
1653  hoHists.fibbcnoff[i]=0;
1654  hfHists.fibbcnoff[i]=0;
1655  }
1656 
1657  if (i<200)
1658  {
1659  hbHists.adc[i]=0;
1660  heHists.adc[i]=0;
1661  hoHists.adc[i]=0;
1662  hfHists.adc[i]=0;
1663  hbHists.adcsum[i]=0;
1664  heHists.adcsum[i]=0;
1665  hoHists.adcsum[i]=0;
1666  hfHists.adcsum[i]=0;
1667  }
1668  if (i<DIGI_SUBDET_NUM)
1669  {
1670  hbHists.count_BQ[i]=0;
1671  heHists.count_BQ[i]=0;
1672  hoHists.count_BQ[i]=0;
1673  hfHists.count_BQ[i]=0;
1674  }
1675  if (i<DIGI_BQ_FRAC_NBINS)
1676  {
1677  hbHists.count_BQFrac[i]=0;
1678  heHists.count_BQFrac[i]=0;
1679  hoHists.count_BQFrac[i]=0;
1680  hfHists.count_BQFrac[i]=0;
1681  }
1682  } // for (int i=0;i<DIGI_NUM;++i)
1683 
1684 
1685  return;
1686 }
1687 
1689 {
1690  // call update command for all histograms (should make them update when running in online DQM?)
1691  h.shape->update();
1692  h.shapeThresh->update();
1693  h.presample->update();
1694  h.BQ->update();
1695  h.BQFrac->update();
1696  h.DigiFirstCapID->update();
1697  h.DVerr->update();
1698  h.CapID->update();
1699  h.ADC->update();
1700  h.ADCsum->update();
1701  h.fibBCNOff->update();
1702 
1703  for (unsigned int i=0;i<h.TS_sum_plus.size();++i)
1704  h.TS_sum_plus[i]->update();
1705  for (unsigned int i=0;i<h.TS_sum_minus.size();++i)
1706  h.TS_sum_minus[i]->update();
1707 } //void HcalDigiMonitor::UpdateHists(DigiHists& h)
1708 
1709 
1711 {
1712  // reset the temporary histograms
1713  zeroCounters();
1714 
1715  // then reset the MonitorElements
1716 
1718  alarmer_counter_ = 0;
1719  knownbadQPLLs = 0;
1720 
1721  hbhedcsON = true; hfdcsON = true;
1722 
1732 
1737  DigiErrorVME->Reset();
1739 
1740  DigiBQ->Reset();
1741  DigiBQFrac->Reset();
1744 
1745  DigiNum->Reset();
1746 
1747  hbHists.shape->Reset();
1749  hbHists.presample->Reset();
1750  hbHists.BQ->Reset();
1751  hbHists.BQFrac->Reset();
1753  hbHists.DVerr->Reset();
1754  hbHists.CapID->Reset();
1755  hbHists.ADC->Reset();
1756  hbHists.ADCsum->Reset();
1757  hbHists.fibBCNOff->Reset();
1758  for (unsigned int i=0;i<hbHists.TS_sum_plus.size();++i)
1759  hbHists.TS_sum_plus[i]->Reset();
1760  for (unsigned int i=0;i<hbHists.TS_sum_minus.size();++i)
1761  hbHists.TS_sum_minus[i]->Reset();
1762 
1763  heHists.shape->Reset();
1765  heHists.presample->Reset();
1766  heHists.BQ->Reset();
1767  heHists.BQFrac->Reset();
1769  heHists.DVerr->Reset();
1770  heHists.CapID->Reset();
1771  heHists.ADC->Reset();
1772  heHists.ADCsum->Reset();
1773  heHists.fibBCNOff->Reset();
1774  for (unsigned int i=0;i<heHists.TS_sum_plus.size();++i)
1775  heHists.TS_sum_plus[i]->Reset();
1776  for (unsigned int i=0;i<heHists.TS_sum_minus.size();++i)
1777  heHists.TS_sum_minus[i]->Reset();
1778 
1779  hoHists.shape->Reset();
1781  hoHists.presample->Reset();
1782  hoHists.BQ->Reset();
1783  hoHists.BQFrac->Reset();
1785  hoHists.DVerr->Reset();
1786  hoHists.CapID->Reset();
1787  hoHists.ADC->Reset();
1788  hoHists.ADCsum->Reset();
1789  hoHists.fibBCNOff->Reset();
1790  for (unsigned int i=0;i<hoHists.TS_sum_plus.size();++i)
1791  hoHists.TS_sum_plus[i]->Reset();
1792  for (unsigned int i=0;i<hoHists.TS_sum_minus.size();++i)
1793  hoHists.TS_sum_minus[i]->Reset();
1794 
1795  hfHists.shape->Reset();
1797  hfHists.presample->Reset();
1798  hfHists.BQ->Reset();
1799  hfHists.BQFrac->Reset();
1801  hfHists.DVerr->Reset();
1802  hfHists.CapID->Reset();
1803  hfHists.ADC->Reset();
1804  hfHists.ADCsum->Reset();
1805  hfHists.fibBCNOff->Reset();
1806  for (unsigned int i=0;i<hfHists.TS_sum_plus.size();++i)
1807  hfHists.TS_sum_plus[i]->Reset();
1808  for (unsigned int i=0;i<hfHists.TS_sum_minus.size();++i)
1809  hfHists.TS_sum_minus[i]->Reset();
1810 
1811  return;
1812 }
1814 
MonitorElement * h_invalid_bcn
bool passedMinBiasHLT_
Methods, variables accessible only within class code.
T getUntrackedParameter(std::string const &, T const &) const
int i
Definition: DBlmapReader.cc:9
int capid[4]
bool LumiInOrder(int lumisec)
int count_presample[50]
MonitorElement * DigiBQFrac
edm::EDGetTokenT< DcsStatusCollection > dcsStatusToken_
int getNDD() const
Get the number of daq data samples per channel when not zero-suppressed.
Definition: HcalHTRData.cc:388
virtual edm::TriggerNames const & triggerNames(edm::TriggerResults const &triggerResults) const
Definition: Event.cc:208
MonitorElement * ProblemsCurrentLB
MonitorElement * HFtiming_occupancy2D
edm::InputTag digiLabel_
MonitorElement * ADC
std::vector< std::string > MinBiasHLTBits_
int ib
Definition: cuy.py:660
EtaPhiHists DigiErrorsDVErr
int occupancySpigot[40][36]
HcalSubdetector subdet() const
get the subdetector
Definition: HcalDetId.h:30
virtual void analyze(const edm::Event &e, const edm::EventSetup &c)
int tssumminus[50][10]
MonitorElement * shape
MonitorElement * DigiSize
void endLuminosityBlock(const edm::LuminosityBlock &lumiSeg, const edm::EventSetup &c)
MonitorElement * HFP_shape
MonitorElement * bookProfile(Args &&...args)
Definition: DQMStore.h:157
void bookHistograms(DQMStore::IBooker &ib, const edm::Run &run, const edm::EventSetup &c)
int occupancyVME[40][18]
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:449
MonitorElement * BQ
MonitorElement * ProblemsVsLB_HF
int errorVME[40][18]
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
std::map< unsigned int, int > KnownBadCells_
MonitorElement * HFtiming_totaltime2D
std::vector< int > AllowedCalibTypes_
MonitorElement * shapeThresh
MonitorElement * HFM_shape
void Reset(void)
int badcapID[85][72][4]
EtaPhiHists DigiErrorOccupancyByDepth
#define DIGI_BQ_FRAC_NBINS
virtual void cleanup(void)
virtual void bookHistograms(DQMStore::IBooker &, edm::Run const &, edm::EventSetup const &)
MonitorElement * bookInt(Args &&...args)
Definition: DQMStore.h:103
std::vector< HFRecHit >::const_iterator const_iterator
int bunchCrossing() const
Definition: EventBase.h:66
int fibbcnoff[15]
void setBinLabel(int bin, const std::string &label, int axis=1)
set bin label for x, y or z axis (axis=1, 2, 3 respectively)
edm::LuminosityBlockNumber_t luminosityBlock() const
Definition: EventBase.h:63
edm::EDGetTokenT< HBHEDigiCollection > tok_hbhe_
int count_BQ[2593]
HcalDigiMonitor(const edm::ParameterSet &ps)
double pedestal(int fCapId) const
get pedestal for capid=0..3
const Item * getValues(DetId fId, bool throwOnFail=true) const
Strings::size_type size() const
Definition: TriggerNames.cc:39
int zside(DetId const &)
void update(void)
Mark the object updated.
int badFibBCNOff[85][72][4]
MonitorElement * DigiOccupancyEta
MonitorElement * DigiErrorVME
MonitorElement * DigiOccupancyVME
T eta() const
int getSpigotData(int nspigot, HcalHTRData &decodeTool, int validSize) const
int dverr[4]
MonitorElement * DigiNum
MonitorElement * HOocc_vs_LB
size_t size() const
Lenght of the data buffer in bytes.
Definition: FEDRawData.h:47
const HcalDetId & id() const
Definition: HODataFrame.h:23
int baddigis[85][72][4]
MonitorElement * ThreshCount
void Fill(long long x)
int adcsum[200]
LuminosityBlockNumber_t luminosityBlock() const
std::map< HcalDetId, std::vector< double > > PedestalsByCapId_
MonitorElement * DigiErrorSpigot
#define DEPTHBINS
tuple report
Definition: zeeHLT_cff.py:9
void beginLuminosityBlock(const edm::LuminosityBlock &lumiSeg, const edm::EventSetup &c)
EtaPhiHists DigiErrorsBadFibBCNOff
void SetupEtaPhiHists(DQMStore::IBooker &ib, EtaPhiHists &hh, std::string Name, std::string Units)
void UpdateHists(DigiHists &h)
int adc[200]
bool isSiPM(int ieta, int iphi, int depth)
int depth() const
get the tower depth
Definition: HcalDetId.h:40
std::vector< MonitorElement * > depth
int DigiMonitor_ExpectedOrbitMessageTime_
MonitorElement * HBocc_vs_LB
int baddigisize[85][72][4]
#define DIGI_SUBDET_NUM
MonitorElement * ProblemsVsLB_HBHEHF
MonitorElement * ProblemsVsLB_HB
int digierrorsdverr[85][72][4]
uint64_t uniqcounter[85][72][4]
std::vector< DetId > getAllChannels() const
int ieta() const
get the cell ieta
Definition: HcalDetId.h:36
virtual void beginLuminosityBlock(const edm::LuminosityBlock &lumiSeg, const edm::EventSetup &c)
MonitorElement * book1D(Args &&...args)
Definition: DQMStore.h:115
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
int j
Definition: DBlmapReader.cc:9
DetIdVector::const_iterator bad_quality_begin() const
The Signals That Services Can Subscribe To This is based on ActivityRegistry h
Helper function to determine trigger accepts.
Definition: Activities.doc:4
const float bins_cellcount_new[]
bool getSpigotPresent(unsigned int nspigot) const
Read the &quot;PRESENT&quot; bit for this spigot.
int orbitNumber() const
Definition: EventBase.h:67
std::vector< MonitorElement * > TS_sum_minus
T min(T a, T b)
Definition: MathUtil.h:58
MonitorElement * HFocc_vs_LB
bool isValid() const
Definition: HandleBase.h:75
edm::EDGetTokenT< HcalUnpackerReport > tok_unpack_
std::vector< MonitorElement * > TS_sum_plus
int process_Digi(T &digi, DigiHists &hist, int &firstcap)
uint64_t uniqcounter2[85][72][4]
const_iterator end() const
MonitorElement * DigiBQ
MonitorElement * DigiUnpackerErrorCount
int getSourceId() const
Definition: HcalDCCHeader.h:32
MonitorElement * HEocc_vs_LB
int iphi() const
get the cell iphi
Definition: HcalDetId.h:38
MonitorElement * ADCsum
EtaPhiHists DigiErrorsBadDigiSize
int errorSpigot[15][36]
MonitorElement * fibBCNOff
void setCurrentFolder(const std::string &fullpath)
Definition: DQMStore.cc:274
static const double theHFEtaBounds[]
#define DIGI_NUM
static bool bitUpset(int last, int now)
MonitorElement * book2D(Args &&...args)
Definition: DQMStore.h:133
MonitorElement * DigiOccupancySpigot
std::string const & triggerName(unsigned int index) const
Definition: TriggerNames.cc:27
EtaPhiHists DigiErrorsBadADCSum
edm::InputTag hltresultsLabel_
const T & get() const
Definition: EventSetup.h:55
#define ETABINS
MonitorElement * HFtiming_etaProfile
T const * product() const
Definition: ESHandle.h:86
MonitorElement * ProblemsVsLB_HE
void FillUnphysicalHEHFBins(std::vector< TH2F > &hh)
int CalcEtaBin(int subdet, int ieta, int depth)
void analyze(const edm::Event &e, const edm::EventSetup &c)
MonitorElement * DVerr
edm::EDGetTokenT< HODigiCollection > tok_ho_
edm::InputTag FEDRawDataCollection_
MonitorElement * h_invalid_orbitnumMod103
int badQualityDigis() const
int occupancyEtaPhi[85][72][4]
void setup(DQMStore::IBooker &)
edm::EDGetTokenT< HFDigiCollection > tok_hf_
MonitorElement * CapID
int tssumplus[50][10]
static const int SPIGOT_COUNT
Definition: HcalDCCHeader.h:19
edm::EDGetTokenT< FEDRawDataCollection > FEDRawDataCollectionToken_
size_type size() const
MonitorElement * h_valid_digis
static std::atomic< unsigned int > counter
double count_shapeThresh[10]
const unsigned char * data() const
Return a const pointer to the beginning of the data buffer.
Definition: FEDRawData.cc:28
edm::EDGetTokenT< edm::TriggerResults > tok_trigger_
void setupSubdetHists(DQMStore::IBooker &ib, DigiHists &hist, std::string subdet)
unsigned adc(const HcalQIEShape &fShape, float fCharge, unsigned fCapId) const
fC + capid [0..3] -&gt; ADC conversion
Definition: HcalQIECoder.cc:27
#define PHIBINS
int capIDdiff[8]
const HcalDetId & id() const
Definition: HBHEDataFrame.h:22
const JetExtendedData & getValue(const Container &, const reco::JetBaseRef &)
get value for the association. Throw exception if no association found
tuple cout
Definition: gather_cfg.py:121
MonitorElement * DigiUnpackerErrorFrac
MonitorElement * DigiFirstCapID
EtaPhiHists DigiErrorsBadCapID
MonitorElement * ProblemsVsLB_HO
EtaPhiHists DigiOccupancyByDepth
MonitorElement * BQFrac
MonitorElement * ProblemsVsLB
tuple status
Definition: ntuplemaker.py:245
if(conf.exists("allCellsPositionCalc"))
int badunpackerreport[85][72][4]
MonitorElement * presample
int count_BQFrac[101]
void setAxisTitle(const std::string &title, int axis=1)
set x-, y- or z-axis title (axis=1, 2, 3 respectively)
MonitorElement * DigiExpectedSize
void processEvent(const HBHEDigiCollection &hbhe, const HODigiCollection &ho, const HFDigiCollection &hf, const HcalDbService &cond, const HcalUnpackerReport &report, int orN, int bcN)
void Reset(void)
reset ME (ie. contents, errors, etc)
virtual void setup(DQMStore::IBooker &)
int count_shape[10]
edm::EDGetTokenT< HFRecHitCollection > tok_hfrec_
EtaPhiHists DigiErrorsByDepth
EtaPhiHists DigiErrorsUnpacker
int digisize[20][4]
edm::ESHandle< HcalDbService > conditions_
const float bins_fraccount_new[]
const_iterator begin() const
Definition: Run.h:41
DetIdVector::const_iterator bad_quality_end() const
MonitorElement * DigiOccupancyPhi
MonitorElement * ProblemDigisInLastNLB_HBHEHF_alarm
double pedSubtractedADC_[10]
bool validDetId(HcalSubdetector sd, int ies, int ip, int dp)
void endRun(const edm::Run &run, const edm::EventSetup &c)
Definition: DDAxes.h:10
edm::EDGetTokenT< FEDRawDataCollection > tok_raw_