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,36,-0.5,35.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
569  for (int i=FEDNumbering::MINHCALFEDID;
572  continue;
573  const FEDRawData& fed = rawraw->FEDData(i);
574  if (fed.size()<12) continue; //At least the size of headers and trailers of a DCC.
575 
576  const HcalDCCHeader* dccHeader=(const HcalDCCHeader*)(fed.data());
577  if(!dccHeader) return;
578  if (debug_>0)
579  std::cout << "### Processing FED: " << i << std::endl;
580 
581  HcalHTRData htr;
582  for (int spigot=0; spigot<HcalDCCHeader::SPIGOT_COUNT; spigot++) {
583  if (!dccHeader->getSpigotPresent(spigot)) continue;
584 
585  // Load the given decoder with the pointer and length from this spigot.
586  // i.e. initialize htr, within dcc raw data size.
587  dccHeader->getSpigotData(spigot, htr, fed.size());
588 
589  int NTS = htr.getNDD(); //number time slices, in precision channels
590  if (debug_>0)
591  std::cout << "### Number of TS=" << NTS << std::endl;
592  if (NTS==0) continue; // no DAQ data in this HTR (fully zero-suppressed)
593  int dccid=dccHeader->getSourceId();
594 
595  if(dccid==720 && (spigot==12 || spigot==13)) continue; // calibration HTR
596  if(dccid==722 && (spigot==12 || spigot==13)) continue; // ZDC HTR
597 
598  int subdet = -1;
599 
600  if(dccid >= 700 && dccid<=717) { subdet = 0; mindigisizeHBHE_ = NTS; maxdigisizeHBHE_ = NTS; } // HBHE
601  if((dccid >= 1118 && dccid<=1122) ||
602  (dccid>=718 && dccid<=723))
603  { subdet = 2; mindigisizeHF_ = NTS; maxdigisizeHF_ = NTS; } // HF
604  if(dccid >= 724 && dccid<=731) { subdet = 1; mindigisizeHO_ = NTS; maxdigisizeHO_ = NTS; } // HO
605 
606  DigiExpectedSize->Fill(subdet,int(NTS),1);
607  }
608  }
609 
610  // all objects grabbed; event is good
611  if (debug_>1) std::cout <<"\t<HcalDigiMonitor::analyze> Processing good event! event # = "<<ievt_<<std::endl;
612 
613 // HcalBaseDQMonitor::analyze(e,s); // base class increments ievt_, etc. counters
614 
615  // Digi collection was grabbed successfully; process the Event
616  processEvent(*hbhe_digi, *ho_digi, *hf_digi, *conditions_,
617  *report, e.orbitNumber(),e.bunchCrossing());
618 
619 } //void HcalDigiMonitor::analyze(...)
620 
622  const HODigiCollection& ho,
623  const HFDigiCollection& hf,
624  const HcalDbService& cond,
625  const HcalUnpackerReport& report,
626  int orN, int bcN)
627 {
628 
629  // Skip events in which minimal good digis found -- still getting some strange (calib?) events through DQM
630 
632 
633  unsigned int allgooddigis= hbhe.size()+ho.size()+hf.size();
634 
635  // new data format in HCAL marks idle messages in the abort gap as bad capid.
636  // ignore this events. Also, sometimes there are many corrupted digis left
637  // from the QIE reset: ignore if in abort gap
638  if(bcN>=3446 && bcN<=3564)
639  if( (report.badQualityDigis()>100 && hbhe.size()==0) || (report.badQualityDigis()>1000) )
640  return;
641 
642  // bad threshold: ignore events in which bad outnumber good by more than 100:1
643  // (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)
644  if ((allgooddigis==0) ||
645  (1.*report.badQualityDigis()>100*allgooddigis))
646  {
647  h_valid_digis->Fill(1);
648  if (bcN>-1)
649  h_invalid_bcn->Fill(bcN);
650  if (orN>-1)
651  h_invalid_orbitnumMod103->Fill(orN%103);
652 
653  return;
654  }
655 
656  h_valid_digis->Fill(0);
657 
658  // hbHists.count_bad=0;
659  // hbHists.count_good=0;
660  // heHists.count_bad=0;
661  // heHists.count_good=0;
662  // hoHists.count_bad=0;
663  // hoHists.count_good=0;
664  // hfHists.count_bad=0;
665  // hfHists.count_good=0;
666 
667  // int HO0bad=0;
668  // int HO12bad=0;
669  // int HFlumibad=0;
670 
671  // Check unpacker report for bad digis
672 
673  typedef std::vector<DetId> DetIdVector;
674 
675  for ( DetIdVector::const_iterator baddigi_iter=report.bad_quality_begin();
676  baddigi_iter != report.bad_quality_end();
677  ++baddigi_iter)
678  {
679  HcalDetId id(baddigi_iter->rawId());
680  int rDepth = id.depth();
681  int rPhi = id.iphi();
682  int rEta = id.ieta();
683  int binEta = CalcEtaBin(id.subdet(), rEta, rDepth); // why is this here?
684 
685  if (binEta < 85 && binEta >= 0
686  && (rPhi-1) >= 0 && (rPhi-1)<72
687  && (rDepth-1) >= 0 && (rDepth-1)<4)
688  if(uniqcounter2[binEta][rPhi-1][rDepth-1]<1)
689  {
690  if (id.subdet()==HcalBarrel) ++hbHists.count_bad;
691  else if (id.subdet()==HcalEndcap) ++heHists.count_bad;
692  else if (id.subdet()==HcalForward)
693  {
694  ++hfHists.count_bad;
695  if (rDepth==1 && (abs(rEta)==33 || abs(rEta)==34)) ++HFlumibad;
696  else if (rDepth==2 && (abs(rEta)==35 || abs(rEta)==36)) ++HFlumibad;
697  }
698  else if (id.subdet()==HcalOuter)
699  {
700  // Mark HORing+/-2 channels as present, HO/YB+/-2 has HV off (at 100V).
701  if (excludeHORing2_==true && rDepth==4)
702  if (abs(rEta)>=11 && abs(rEta)<=15 && !isSiPM(rEta,rPhi,rDepth)) continue;
703 
704  if (excludeHO1P02_==true)
705  if( (rEta>4 && rEta<10) && (rPhi<=10 || rPhi>70) ) continue;
706 
707  if (KnownBadCells_.find(id)!=KnownBadCells_.end()) continue;
708 
709  ++hoHists.count_bad;
710  if (abs(rEta)<5) ++HO0bad;
711  else ++HO12bad;
712  }
713  else
714  continue; // skip anything that isn't HB, HE, HO, HF
715  // extra protection against nonsensical values -- prevents occasional crashes
716 
717  ++badunpackerreport[binEta][rPhi-1][rDepth-1];
718  ++baddigis[binEta][rPhi-1][rDepth-1];
719 
720  // QPLL unlocking channels, have to ignore unpacker errors (fix requires opening CMS)
721  bool HEM15A = true ? (id.subdet()==HcalEndcap && (rPhi>56 && rPhi<59 && rEta<0)) : false;
722  bool HEM15B = true ? (id.subdet()==HcalEndcap && (rPhi>54 && rPhi<57 && rEta<0)) : false;
723  bool HBP14A = true ? (id.subdet()==HcalBarrel && (rPhi>50 && rPhi<53 && rEta>0)) : false;
724 
725  if(excludeBadQPLLs_ && rDepth==1)
726  if( HEM15A || HEM15B || HBP14A )
727  ++knownbadQPLLs;
728 
729  uniqcounter2[binEta][rPhi-1][rDepth-1]++;
730  }
731  }
733 
734  int firsthbcap=-1;
735  int firsthecap=-1;
736  int firsthocap=-1;
737  int firsthfcap=-1;
738 
739  for (HBHEDigiCollection::const_iterator j=hbhe.begin(); j!=hbhe.end(); ++j)
740  {
741  const HBHEDataFrame digi = (const HBHEDataFrame)(*j);
742 
743  if (digi.id().subdet()==HcalBarrel)
744  {
745  if (!HBpresent_) continue;
746  if (KnownBadCells_.find(digi.id())!=KnownBadCells_.end()) continue;
747 
748  process_Digi(digi, hbHists, firsthbcap);
749 
750  }
751  else if (digi.id().subdet()==HcalEndcap)
752  {
753  if (!HEpresent_) continue;
754  process_Digi(digi, heHists,firsthecap);
755  }
756  }
757 
758  // // Fill good digis vs lumi block; also fill bad errors?
761 
762  // Calculate number of bad quality cells and bad quality fraction
764  {
766  if (counter<DIGI_SUBDET_NUM)
769  if (counter2<DIGI_SUBDET_NUM) ++hbHists.count_BQFrac[(int)counter2];
770  }
771 
773  {
775  if (counter<DIGI_SUBDET_NUM)
778  if (counter2<DIGI_SUBDET_NUM) ++heHists.count_BQFrac[int(counter2)];
779  }
780 
782  if (HOpresent_)
783  {
784  for (HODigiCollection::const_iterator j=ho.begin(); j!=ho.end(); ++j)
785  {
786  const HODataFrame digi = (const HODataFrame)(*j);
787  // Mark HORing+/-2 channels as present, HO/YB+/-2 has HV off (at 100V).
788  if (excludeHORing2_==true && digi.id().depth()==4)
789  if (abs(digi.id().ieta())>=11 && abs(digi.id().ieta())<=15 &&
790  !isSiPM(digi.id().ieta(),digi.id().iphi(),digi.id().depth())) continue;
791 
792  if (excludeHO1P02_==true)
793  if( (digi.id().ieta()>4 && digi.id().ieta()<10)
794  && (digi.id().iphi()<=10 || digi.id().iphi()>70) ) continue;
795 
796  if (KnownBadCells_.find(digi.id())!=KnownBadCells_.end()) continue;
797 
798  process_Digi(digi, hoHists, firsthocap);
799  } // for (HODigiCollection)
800 
801  if (hoHists.count_bad>0 || hoHists.count_good>0)
802  {
804  if (counter<DIGI_SUBDET_NUM)
806 
808  if (counter2<DIGI_SUBDET_NUM) ++hoHists.count_BQFrac[int(counter2)];
809  }
811  } // if (HOpresent_)
812 
814  if (HFpresent_)
815  {
816  for (HFDigiCollection::const_iterator j=hf.begin(); j!=hf.end(); ++j)
817  {
818  const HFDataFrame digi = (const HFDataFrame)(*j);
819  process_Digi(digi, hfHists, firsthfcap);
820  } // for (HFDigiCollection)
821 
822  if (hfHists.count_bad>0 || hfHists.count_good>0)
823  {
825  if (counter<DIGI_SUBDET_NUM)
828  if (counter2<DIGI_SUBDET_NUM) ++hfHists.count_BQFrac[int(counter2)];
829  }
831  } // if (HFpresent_)
832 
833  // This only counts digis that are present but bad somehow; it does not count digis that are missing
836 
837  if (count_good<DIGI_NUM)
838  ++diginum[count_good];
839 
840  // Fill bad quality histograms
841  DigiUnpackerErrorFrac->Fill(1.*report.badQualityDigis()/(report.badQualityDigis()+count_good));
842  DigiBQ->Fill(count_bad);
843  if (count_bad>0 || count_good>0)
844  DigiBQFrac->Fill(1.*count_bad/(count_bad+count_good));
845 
846  // Call 'update' on all histograms so that they update in online DQM
851 
852  // Now update global (non-subdetector-specific) histograms
853  DigiNum->update();
854  DigiErrorVME->update();
856  DigiBQ->update();
857  DigiBQFrac->update();
860 
861  // Update eta-phi hists
862  for (unsigned int zz=0;zz<DigiErrorOccupancyByDepth.depth.size();++zz)
863  DigiErrorOccupancyByDepth.depth[zz]->update();
864  for (unsigned int zz=0;zz<DigiErrorsByDepth.depth.size();++zz)
865  DigiErrorsByDepth.depth[zz]->update();
866  for (unsigned int zz=0;zz<DigiErrorsBadCapID.depth.size();++zz)
867  DigiErrorsBadCapID.depth[zz]->update();
868  for (unsigned int zz=0;zz<DigiErrorsDVErr.depth.size();++zz)
869  DigiErrorsDVErr.depth[zz]->update();
870  for (unsigned int zz=0;zz<DigiErrorsBadDigiSize.depth.size();++zz)
871  DigiErrorsBadDigiSize.depth[zz]->update();
872  for (unsigned int zz=0;zz<DigiErrorsBadADCSum.depth.size();++zz)
873  DigiErrorsBadADCSum.depth[zz]->update();
874  for (unsigned int zz=0;zz<DigiErrorsUnpacker.depth.size();++zz)
875  DigiErrorsUnpacker.depth[zz]->update();
876  for (unsigned int zz=0;zz<DigiErrorsBadFibBCNOff.depth.size();++zz)
877  DigiErrorsBadFibBCNOff.depth[zz]->update();
878 
883  DigiSize->update();
885 
886  // // Fill problems vs. lumi block plots
887  // ProblemsVsLB->Fill(currentLS,count_bad);
888  // ProblemsVsLB_HB->Fill(currentLS,hbHists.count_bad);
889  // ProblemsVsLB_HE->Fill(currentLS,heHists.count_bad);
890  // ProblemsVsLB_HO->Fill(currentLS,hoHists.count_bad);
891  // ProblemsVsLB_HF->Fill(currentLS,hfHists.count_bad);
892  // ProblemsVsLB_HBHEHF->Fill(currentLS,hbHists.count_bad+heHists.count_bad+hfHists.count_bad);
893 
894  // // Fill the number of problem digis in each channel
895  // ProblemsCurrentLB->Fill(-1,-1,1); // event counter
896  // ProblemsCurrentLB->Fill(0,0,hbHists.count_bad);
897  // ProblemsCurrentLB->Fill(1,0,heHists.count_bad);
898  // ProblemsCurrentLB->Fill(2,0,hoHists.count_bad);
899  // ProblemsCurrentLB->Fill(3,0,hfHists.count_bad);
900  // ProblemsCurrentLB->Fill(4,0,HO0bad);
901  // ProblemsCurrentLB->Fill(5,0,HO12bad);
902  // ProblemsCurrentLB->Fill(6,0,HFlumibad);
903 
904  // Call fill method every checkNevents
905  //fill_Nevents();
906 
907  return;
908 } // void HcalDigiMonitor::processEvent(...)
909 
910 
911 
912 template <class DIGI>
913 int HcalDigiMonitor::process_Digi(DIGI& digi, DigiHists& h, int& firstcap)
914 {
915  int err=0x0;
916  bool bitUp = false;
917  int ADCcount=0;
918 
919  int shapeThresh=0;
920 
921  int mindigisize=1;
922  int maxdigisize=10;
923 
924  if (digi.id().subdet()==HcalBarrel)
925  {
926  shapeThresh=shapeThreshHB_;
927  mindigisize=mindigisizeHBHE_;
928  maxdigisize=maxdigisizeHBHE_;
929  }
930  else if (digi.id().subdet()==HcalEndcap)
931  {
932  shapeThresh=shapeThreshHE_;
933  mindigisize=mindigisizeHBHE_;
934  maxdigisize=maxdigisizeHBHE_;
935  }
936  else if (digi.id().subdet()==HcalOuter)
937  {
938  shapeThresh=shapeThreshHO_;
939  mindigisize=mindigisizeHO_;
940  maxdigisize=maxdigisizeHO_;
941  }
942  else if (digi.id().subdet()==HcalForward)
943  {
944  shapeThresh=shapeThreshHF_;
945  mindigisize=mindigisizeHF_;
946  maxdigisize=maxdigisizeHF_;
947  }
948  int iEta = digi.id().ieta();
949  int iPhi = digi.id().iphi();
950  int iDepth = digi.id().depth();
951  int calcEta = CalcEtaBin(digi.id().subdet(),iEta,iDepth);
952 
953  // Check that digi size is correct
954  if (digi.size()<mindigisize || digi.size()>maxdigisize)
955  {
956  if (digi_checkdigisize_) err|=0x1;
957  ++baddigisize[calcEta][iPhi-1][iDepth-1];
958  }
959  // Check digi size; if > 20, increment highest bin of digisize array
960  if (digi.size()<20)
961  ++digisize[static_cast<int>(digi.size())][digi.id().subdet()-1];
962  else
963  ++digisize[19][digi.id().subdet()-1];
964 
965  // loop over time slices of digi to check capID and errors
966  ++h.count_presample[digi.presamples()];
967 
968  // Check CapID rotation
969  if (firstcap==-1) firstcap = digi.sample(0).capid();
970  int capdif = digi.sample(0).capid() - firstcap;
971  //capdif = capdif%3 - capdif/3; // unnecessary?
972  // capdif should run from -3 to +3
973  if (capdif >-4 && capdif<4)
974  ++h.capIDdiff[capdif+3];
975  else
976  ++h.capIDdiff[7];
977 
978  int last=-1;
979 
980  int offset = digi.fiberIdleOffset();
981 
982  // Only count BCN offset errors if ExpectedOrbitMessage Time is >-1
983  // For offline (and thus cfg default), this won't be checked, since
984  // we can't keep up to date with changes.
985  if (offset != -1000 && DigiMonitor_ExpectedOrbitMessageTime_>-1)
986  {
987  // increment counters only for non-zero offsets?
988  ++h.fibbcnoff[offset + 7];
989  if (offset != 0)
990  {
991  ++badFibBCNOff[calcEta][iPhi-1][iDepth-1];
992  if (shutOffOrbitTest_ == false) err |= 0xF; // not an error if test turned off
993  }
994  }
995 
996  int tssum=0;
997 
998  bool digi_error=false;
999 
1000  const int DigiSize=digi.size();
1001  for (int i=0;i<10;++i) pedSubtractedADC_[i]=0;
1002  const int pedSubADCsize=sizeof(pedSubtractedADC_)/sizeof(double);
1003 
1004  std::map<HcalDetId, std::vector<double> >::iterator foundID = PedestalsByCapId_.find(digi.id());
1005  for (int i=0;i<DigiSize;++i)
1006  {
1007  int thisCapid = digi.sample(i).capid();
1008  if (thisCapid>=0 && thisCapid<4) ++h.capid[thisCapid];
1009 
1010  if (makeDiagnostics_)
1011  {
1012  if(bitUpset(last,thisCapid)) bitUp=true; // checking capID rotation
1013  last = thisCapid;
1014  // Check for digi error bits
1015  if (digi_checkdverr_)
1016  {
1017  if(digi.sample(i).er()) err=(err|0x2);
1018  if(!digi.sample(i).dv()) err=(err|0x2);
1019  }
1020  if ((digi_error==false) && (digi.sample(i).er() || !digi.sample(i).dv()))
1021  {
1022  ++digierrorsdverr[calcEta][iPhi-1][iDepth-1];
1023  digi_error=true; // only count 1 error per digi in this plot
1024  }
1025  ++h.dverr[static_cast<int>(2*digi.sample(i).er()+digi.sample(i).dv())];
1026  } // if (makeDiagnostics_)
1027 
1028  h.count_shape[i]+=digi.sample(i).adc();
1029 
1030  // Calculate ADC sum of adjacent samples -- still necessary?
1031  if (i==digi.size()-1) continue;
1032  tssum= digi.sample(i).adc()+digi.sample(i+1).adc();
1033  if (tssum<50 && tssum>=0)
1034  {
1035  if (iEta>0)
1036  ++h.tssumplus[tssum][i];
1037  else
1038  ++h.tssumminus[tssum][i];
1039  }
1040 
1041  if (digi.sample(i).adc()<0) ++h.adc[0];
1042  else if (digi.sample(i).adc()<200) ++h.adc[digi.sample(i).adc()];
1043  else ++h.adc[199];
1044 
1045  if (i>=pedSubADCsize) continue; // don't exceed maximum array length when checking digis
1046 
1047  if (foundID!=PedestalsByCapId_.end())
1048  {
1049  pedSubtractedADC_[i]=digi.sample(i).adc()-(foundID->second)[thisCapid];
1050  ADCcount+=(int)(digi.sample(i).adc()-(foundID->second)[thisCapid]);
1051  }
1052  else
1053  {
1054  pedSubtractedADC_[i]=digi.sample(i).adc()-3;
1055  ADCcount+=digi.sample(i).adc()-3; // default pedestal subtraction of 3 ADC counts
1056  }
1057  } // for (int i=0;i<digi.size();++i)
1058 
1059  // capid error found
1060  if(bitUp)
1061  {
1062  if (digi_checkcapid_) err=(err|0x4);
1063  ++badcapID[calcEta][iPhi-1][iDepth-1];
1064  }
1065 
1066 
1067  // These plots generally don't get filled, unless we turn off the suppression of bad digis
1068  if (err>0)
1069  {
1070  if(uniqcounter[calcEta][iPhi-1][iDepth-1]<1)
1071  {
1072  ++h.count_bad;
1073  ++baddigis[calcEta][iPhi-1][iDepth-1];
1074  ++errorVME[static_cast<int>(2*(digi.elecId().htrSlot()+0.5*digi.elecId().htrTopBottom()))][static_cast<int>(digi.elecId().readoutVMECrateId())];
1075  ++errorSpigot[static_cast<int>(digi.elecId().spigot())][static_cast<int>(digi.elecId().dccid())];
1076  }
1077  uniqcounter[calcEta][iPhi-1][iDepth-1]++;
1078 
1079  return err;
1080  }
1081 
1082  if (ADCcount<0) ADCcount=0;
1083  if (ADCcount<199)
1084  ++h.adcsum[ADCcount];
1085  else
1086  ++h.adcsum[199]; // effective overflow bin
1087 
1088  // require larger threshold to look at pulse shapes
1089 
1090  if (ADCcount>shapeThresh && passedMinBiasHLT_ && HT_HFP_>1 && HT_HFM_>1)
1091  {
1092  h.ThreshCount->Fill(0,1);
1093  if (digi.id().subdet()!=HcalOuter || isSiPM(iEta,iPhi, iDepth)==false)
1094  {
1095  for (int i=0;i<pedSubADCsize;++i)
1097  }
1098  }
1099 
1100  // occupancy plots are only filled for good histograms
1101  ++h.count_good;
1102  ++occupancyEtaPhi[calcEta][iPhi-1][iDepth-1];
1103  ++occupancyEta[iEta+41];
1104  ++occupancyPhi[iPhi-1];
1105  // htr Slots run from 0-20, incremented by 0.5 for top/bottom
1106  ++occupancyVME[static_cast<int>(2*(digi.elecId().htrSlot()+0.5*digi.elecId().htrTopBottom()))][static_cast<int>(digi.elecId().readoutVMECrateId())];
1107  ++occupancySpigot[static_cast<int>(digi.elecId().spigot())][static_cast<int>(digi.elecId().dccid())];
1108 
1109  // Pawel's code for HF timing checks -- run only in online mode for non-calib events
1110  if (digi.id().subdet()==HcalForward
1111  && Online_ //only run online
1112  && currenttype_==0 // require non-calibration event
1113  && passedMinBiasHLT_ // require min bias trigger
1114  )
1115  {
1116  int maxtime=-1;
1117  double maxenergy=-1, fullenergy=0;
1118  int digisize=digi.size();
1119  for (int ff=0;ff<digisize;++ff)
1120  {
1121  fullenergy+=digi.sample(ff).nominal_fC()-2.5;
1122  if (digi.sample(ff).nominal_fC()-2.5>maxenergy)
1123  {
1124  maxenergy=digi.sample(ff).nominal_fC()-2.5;
1125  maxtime=ff;
1126  }
1127  }
1128 
1129  if (maxtime>=2 && maxtime<=5 && maxenergy>20 && maxenergy<100) // only look between time slices 2-5; anything else should be nonsense
1130  {
1131  for (int ff=0;ff<digisize;++ff){
1132  if(fullenergy>0){
1133  if(digi.id().ieta()>0)HFP_shape->Fill(ff,(digi.sample(ff).nominal_fC()-2.5)/fullenergy);
1134  if(digi.id().ieta()<0)HFM_shape->Fill(ff,(digi.sample(ff).nominal_fC()-2.5)/fullenergy);
1135  }
1136  }
1137 
1138  double time_den=0, time_num=0;
1139  // form weighted time sum
1140  int startslice=std::max(0,maxtime-1);
1141  int endslice=std::min(digisize-1,maxtime+1);
1142  for (int ss=startslice;ss<=endslice;++ss)
1143  {
1144  // subtract 'default' pedestal of 2.5 fC
1145  time_num+=ss*(digi.sample(ss).nominal_fC()-2.5);
1146  time_den+=digi.sample(ss).nominal_fC()-2.5;
1147  }
1148 
1149  int myiphi=iPhi;
1150  if (iDepth==2) ++myiphi;
1151  if (HFtiming_etaProfile!=0 && time_den!=0)
1152  HFtiming_etaProfile->Fill(iEta,time_num/time_den);
1153  if (HFtiming_totaltime2D!=0 && time_den!=0)
1154  HFtiming_totaltime2D->Fill(iEta,myiphi,time_num/time_den);
1155  if (HFtiming_occupancy2D!=0 && time_den!=0)
1156  HFtiming_occupancy2D->Fill(iEta,myiphi,1);
1157  } //maxtime>-1
1158  } // if HcalForward
1159 
1160  return err;
1161 } // template <class DIGI> int HcalDigiMonitor::process_Digi
1162 
1164  const edm::EventSetup& c)
1165 {
1168 }
1169 
1171  const edm::EventSetup& c)
1172 {
1173  if (LumiInOrder(lumiSeg.luminosityBlock())==false) return;
1174 
1175  // Reset current LS histogram
1176  if (ProblemsCurrentLB)
1178 
1180 
1181  //increase the number of LS counting, for alarmer. Only make alarms for HBHE
1182  if(hbhedcsON == true && hfdcsON == true && HBpresent_ == 1 && HEpresent_ == 1 && HFpresent_ == 1)
1183  ++alarmer_counter_;
1184  else
1185  alarmer_counter_ = 0;
1186 
1187  fill_Nevents();
1188 
1189  zeroCounters(); // reset counters of good/bad digis
1190 
1191  return;
1192 }
1193 
1195 {
1196  if (debug_>0)
1197  std::cout <<"<HcalDigiMonitor> Calling fill_Nevents for event "<<tevt_<< " (processed events = "<<ievt_<<")"<<std::endl;
1198  int iPhi, iEta, iDepth;
1199  // bool valid=false;
1200 
1201  // Fill problems vs. lumi block plots
1208 
1210  alarmer_counter_ = 0;
1211 
1212  if( alarmer_counter_ >= 5 )
1214 
1215  // Fill the number of problem digis in each channel
1216  if (ProblemsCurrentLB)
1217  {
1218  ProblemsCurrentLB->Fill(-1,-1,1); // event counter
1226  }
1227 
1228  // Fill plots of sums of adjacent digi samples
1229  for (int i=0;i<10;++i)
1230  {
1231  for (int j=0;j<50;++j)
1232  {
1233  if (hbHists.tssumplus[j][i]>0) hbHists.TS_sum_plus[i]->Fill(j, hbHists.tssumplus[j][i]);
1234  if (hbHists.tssumminus[j][i]>0) hbHists.TS_sum_minus[i]->Fill(j, hbHists.tssumminus[j][i]);
1235  if (heHists.tssumplus[j][i]>0) heHists.TS_sum_plus[i]->Fill(j, heHists.tssumplus[j][i]);
1236  if (heHists.tssumminus[j][i]>0) heHists.TS_sum_minus[i]->Fill(j, heHists.tssumminus[j][i]);
1237  if (hoHists.tssumplus[j][i]>0) hoHists.TS_sum_plus[i]->Fill(j, hoHists.tssumplus[j][i]);
1238  if (hoHists.tssumminus[j][i]>0) hoHists.TS_sum_minus[i]->Fill(j, hoHists.tssumminus[j][i]);
1239  if (hfHists.tssumplus[j][i]>0) hfHists.TS_sum_plus[i]->Fill(j, hfHists.tssumplus[j][i]);
1240  if (hfHists.tssumminus[j][i]>0) hfHists.TS_sum_minus[i]->Fill(j, hfHists.tssumminus[j][i]);
1241  }
1242  } // for (int i=0;i<10;++i)
1243 
1244  for (int i=0;i<DIGI_NUM;++i)
1245  {
1246  if (diginum[i]>0) DigiNum->Fill(i, diginum[i]);
1247  if (i>=DIGI_SUBDET_NUM) continue;
1248 
1249  if (hbHists.count_BQ[i]>0) hbHists.BQ->Fill(i, hbHists.count_BQ[i]);
1250  if (heHists.count_BQ[i]>0) heHists.BQ->Fill(i, heHists.count_BQ[i]);
1251  if (hoHists.count_BQ[i]>0) hoHists.BQ->Fill(i, hoHists.count_BQ[i]);
1252  if (hfHists.count_BQ[i]>0) hfHists.BQ->Fill(i, hfHists.count_BQ[i]);
1253  }//for int i=0;i<DIGI_NUM;++i)
1254 
1255 
1256  // Fill data-valid/error plots and capid plots
1257  for (int i=0;i<4;++i)
1258  {
1259  if (hbHists.dverr[i]>0) hbHists.DVerr->Fill(i, hbHists.dverr[i]);
1260  if (heHists.dverr[i]>0) heHists.DVerr->Fill(i, heHists.dverr[i]);
1261  if (hoHists.dverr[i]>0) hoHists.DVerr->Fill(i, hoHists.dverr[i]);
1262  if (hfHists.dverr[i]>0) hfHists.DVerr->Fill(i, hfHists.dverr[i]);
1263 
1264  if (hbHists.capid[i]>0) hbHists.CapID->Fill(i, hbHists.capid[i]);
1265  if (heHists.capid[i]>0) heHists.CapID->Fill(i, heHists.capid[i]);
1266  if (hoHists.capid[i]>0) hoHists.CapID->Fill(i, hoHists.capid[i]);
1267  if (hfHists.capid[i]>0) hfHists.CapID->Fill(i, hfHists.capid[i]);
1268  }
1269 
1270  for (int i=0;i<200;++i)
1271  {
1272  if (hbHists.adc[i]>0) hbHists.ADC->Fill(i, hbHists.adc[i]);
1273 
1274  if (heHists.adc[i]>0) heHists.ADC->Fill(i, heHists.adc[i]);
1275  if (hoHists.adc[i]>0) hoHists.ADC->Fill(i, hoHists.adc[i]);
1276  if (hfHists.adc[i]>0) hfHists.ADC->Fill(i, hfHists.adc[i]);
1277 
1282  }
1283 
1284  for (int i = 0; i < 15; ++i)
1285  {
1286  if (hbHists.fibbcnoff[i]>0) hbHists.fibBCNOff->Fill(i-7,
1287  hbHists.fibbcnoff[i]);
1288  if (heHists.fibbcnoff[i]>0) heHists.fibBCNOff->Fill(i-7,
1289  heHists.fibbcnoff[i]);
1290  if (hfHists.fibbcnoff[i]>0) hfHists.fibBCNOff->Fill(i-7,
1291  hfHists.fibbcnoff[i]);
1292  if (hoHists.fibbcnoff[i]>0) hoHists.fibBCNOff->Fill(i-7,
1293  hoHists.fibbcnoff[i]);
1294  }
1295 
1296  // Fill plots of bad fraction of digis found
1297  for (int i=0;i<DIGI_BQ_FRAC_NBINS;++i)
1298  {
1299  if (DIGI_BQ_FRAC_NBINS==1) break;
1300  if (hbHists.count_BQFrac[i]>0) hbHists.BQFrac->Fill(1.*i/(DIGI_BQ_FRAC_NBINS-1), hbHists.count_BQFrac[i]);
1301  if (heHists.count_BQFrac[i]>0) heHists.BQFrac->Fill(1.*i/(DIGI_BQ_FRAC_NBINS-1), heHists.count_BQFrac[i]);
1302  if (hoHists.count_BQFrac[i]>0)
1303  {
1304  hoHists.BQFrac->Fill(1.*i/(DIGI_BQ_FRAC_NBINS), hoHists.count_BQFrac[i]);
1305  }
1306  if (hfHists.count_BQFrac[i]>0) hfHists.BQFrac->Fill(1.*i/(DIGI_BQ_FRAC_NBINS-1), hfHists.count_BQFrac[i]);
1307  }//for (int i=0;i<DIGI_BQ_FRAC_NBINS;++i)
1308 
1309  // Fill presample plots
1310  for (int i=0;i<50;++i)
1311  {
1316  } //for (int i=0;i<50;++i)
1317 
1318  // Fill shape plots
1319  for (int i=0;i<10;++i)
1320  {
1329  }// for (int i=0;i<10;++i)
1330 
1331  // Fill capID difference plots
1332  for (int i=0;i<8;++i)
1333  {
1338  }
1339 
1340  // Fill VME plots
1341  for (int i=0;i<40;++i)
1342  {
1343  for (int j=0;j<18;++j)
1344  {
1345  if (errorVME[i][j]>0) DigiErrorVME->Fill(i, j,errorVME[i][j]);
1346  if (occupancyVME[i][j]>0) DigiOccupancyVME->Fill(i, j,occupancyVME[i][j]);
1347  }
1348  } //for (int i=0;i<40;++i)
1349 
1350  // Fill SPIGOT plots
1351  for (int i=0;i<HcalDCCHeader::SPIGOT_COUNT;++i)
1352  {
1353  for (int j=0;j<36;++j)
1354  {
1355  if (errorSpigot[i][j]>0) DigiErrorSpigot->Fill(i, j,errorSpigot[i][j]);
1357  }
1358  } //for (int i=0;i<HcalDCCHeader::SPIGOT_COUNT;++i)
1359 
1360  // Loop over subdetectors
1361  for (int sub=0;sub<4;++sub)
1362  {
1363  for (int dsize=0;dsize<20;++dsize)
1364  {
1365  if (digisize[dsize][sub]>0)
1366  DigiSize->Fill(sub,dsize,digisize[dsize][sub]);
1367  }
1368  } // for (int sub=0;sub<4;++sub)
1369 
1370  // Loop over eta, phi, depth
1371  for (int d=0;d<4;++d)
1372  {
1373  iDepth=d+1;
1374  DigiErrorsByDepth.depth[d]->setBinContent(0,0,ievt_); // underflow bin contains event counter
1375  DigiOccupancyByDepth.depth[d]->setBinContent(0,0,ievt_);
1376  DigiErrorsBadDigiSize.depth[d]->setBinContent(0,0,ievt_);
1377  DigiErrorsUnpacker.depth[d]->setBinContent(0,0,ievt_);
1378  DigiErrorsBadFibBCNOff.depth[d]->setBinContent(0,0,ievt_);
1379 
1380  for (int phi=0;phi<72;++phi)
1381  {
1382  iPhi=phi+1;
1384  for (int eta=0;eta<83;++eta)
1385  {
1386  // DigiOccupanyEta uses 'true' ieta (included the overlap at +/- 29)
1387  iEta=eta-41;
1388  if (phi==0)
1390  // valid=false;
1391 
1392  // HB
1393  if (validDetId(HcalBarrel, iEta, iPhi, iDepth))
1394  {
1395  // valid=true;
1396  if (HBpresent_)
1397  {
1398  int calcEta = CalcEtaBin(HcalBarrel,iEta,iDepth);
1399 
1400  DigiOccupancyByDepth.depth[d]->Fill(iEta, iPhi,
1401  occupancyEtaPhi[calcEta][phi][d]);
1402 
1403  if (makeDiagnostics_)
1404  {
1405  DigiErrorsBadCapID.depth[d]->Fill(iEta, iPhi,
1406  badcapID[calcEta][phi][d]);
1407  DigiErrorsDVErr.depth[d]->Fill(iEta, iPhi,
1408  digierrorsdverr[calcEta][phi][d]);
1409  }
1410  DigiErrorsBadDigiSize.depth[d]->Fill(iEta, iPhi,
1411  baddigisize[calcEta][phi][d]);
1412  DigiErrorsBadFibBCNOff.depth[d]->Fill(iEta, iPhi,
1413  badFibBCNOff[calcEta][phi][d]);
1414  DigiErrorsUnpacker.depth[d]->Fill(iEta, iPhi,
1415  badunpackerreport[calcEta][phi][d]);
1416  DigiErrorsByDepth.depth[d]->Fill(iEta, iPhi,
1417  baddigis[calcEta][phi][d]);
1418  // Use this for testing purposes only
1419  //DigiErrorsByDepth[d]->Fill(iEta, iPhi, ievt_);
1420  } // if (HBpresent_)
1421  } // validDetId(HB)
1422  // HE
1423  if (validDetId(HcalEndcap, iEta, iPhi, iDepth))
1424  {
1425  // valid=true;
1426  if (HEpresent_)
1427  {
1428  int calcEta = CalcEtaBin(HcalEndcap,iEta,iDepth);
1429 
1430  DigiOccupancyByDepth.depth[d]->Fill(iEta, iPhi,
1431  occupancyEtaPhi[calcEta][phi][d]);
1432 
1433  if (makeDiagnostics_)
1434  {
1435  DigiErrorsBadCapID.depth[d]->Fill(iEta, iPhi,
1436  badcapID[calcEta][phi][d]);
1437  DigiErrorsDVErr.depth[d]->Fill(iEta, iPhi,
1438  digierrorsdverr[calcEta][phi][d]);
1439  }
1440  DigiErrorsBadDigiSize.depth[d]->Fill(iEta, iPhi,
1441  baddigisize[calcEta][phi][d]);
1442  DigiErrorsBadFibBCNOff.depth[d]->Fill(iEta, iPhi,
1443  badFibBCNOff[calcEta][phi][d]);
1444  DigiErrorsUnpacker.depth[d]->Fill(iEta, iPhi,
1445  badunpackerreport[calcEta][phi][d]);
1446  DigiErrorsByDepth.depth[d]->Fill(iEta, iPhi,
1447  baddigis[calcEta][phi][d]);
1448  } // if (HEpresent_)
1449  } // valid HE found
1450  // HO
1451  if (validDetId(HcalOuter,iEta,iPhi,iDepth))
1452  {
1453  // valid=true;
1454  if (HOpresent_)
1455  {
1456  int calcEta = CalcEtaBin(HcalOuter,iEta,iDepth);
1457  DigiOccupancyByDepth.depth[d]->Fill(iEta, iPhi,
1458  occupancyEtaPhi[calcEta][phi][d]);
1459  if (makeDiagnostics_)
1460  {
1461  DigiErrorsBadCapID.depth[d]->Fill(iEta, iPhi,
1462  badcapID[calcEta][phi][d]);
1463  DigiErrorsDVErr.depth[d]->Fill(iEta, iPhi,
1464  digierrorsdverr[calcEta][phi][d]);
1465  }
1466  DigiErrorsBadDigiSize.depth[d]->Fill(iEta, iPhi,
1467  baddigisize[calcEta][phi][d]);
1468  DigiErrorsBadFibBCNOff.depth[d]->Fill(iEta, iPhi,
1469  badFibBCNOff[calcEta][phi][d]);
1470  DigiErrorsUnpacker.depth[d]->Fill(iEta, iPhi,
1471  badunpackerreport[calcEta][phi][d]);
1472 
1473  DigiErrorsByDepth.depth[d]->Fill(iEta,iPhi,
1474  baddigis[calcEta][phi][d]);
1475  } // if (HOpresent_)
1476  }//validDetId(HO)
1477  // HF
1478  if (validDetId(HcalForward,iEta,iPhi,iDepth))
1479  {
1480  // valid=true;
1481  if (HFpresent_)
1482  {
1483  int calcEta = CalcEtaBin(HcalForward,iEta,iDepth);
1484  int zside = iEta/abs(iEta);
1485  DigiOccupancyByDepth.depth[d]->Fill(iEta+zside, iPhi,
1486  occupancyEtaPhi[calcEta][phi][d]);
1487 
1488  if (makeDiagnostics_)
1489  {
1490  DigiErrorsBadCapID.depth[d]->Fill(iEta+zside, iPhi,
1491  badcapID[calcEta][phi][d]);
1492  DigiErrorsDVErr.depth[d]->Fill(iEta+zside, iPhi,
1493  digierrorsdverr[calcEta][phi][d]);
1494  }
1495  DigiErrorsBadDigiSize.depth[d]->Fill(iEta+zside, iPhi,
1496  baddigisize[calcEta][phi][d]);
1497  DigiErrorsBadFibBCNOff.depth[d]->Fill(iEta+zside, iPhi,
1498  badFibBCNOff[calcEta][phi][d]);
1499  DigiErrorsUnpacker.depth[d]->Fill(iEta+zside, iPhi,
1500  badunpackerreport[calcEta][phi][d]);
1501  DigiErrorsByDepth.depth[d]->Fill(iEta+zside, iPhi,
1502  baddigis[calcEta][phi][d]);
1503 
1504  } // if (HFpresent_)
1505  }
1506  } // for (int eta=0;...)
1507  } // for (int phi=0;...)
1508  } // for (int d=0;...)
1509 
1510  // Now fill all the unphysical cell values
1512  if (makeDiagnostics_)
1513  {
1516  }
1521 
1522  // zeroCounters(); // reset counters of good/bad digis
1523 
1524  return;
1525 } // void HcalDigiMonitor::fill_Nevents()
1526 
1527 
1529 {
1530  // Set all histogram counters back to 0
1531  // Call this after all every N evnets
1532 
1533  /******** Zero all counters *******/
1534  for (int d=0; d<DEPTHBINS; d++) {
1535  for (int eta=0; eta<ETABINS; eta++) {
1536  for (int phi=0; phi<PHIBINS; phi++){
1537  uniqcounter[eta][phi][d] = 0.0;
1538  uniqcounter2[eta][phi][d] = 0.0;
1539  }
1540  }
1541  }
1542 
1543  hbHists.count_bad=0;
1544  hbHists.count_good=0;
1545  heHists.count_bad=0;
1546  heHists.count_good=0;
1547  hoHists.count_bad=0;
1548  hoHists.count_good=0;
1549  hfHists.count_bad=0;
1550  hfHists.count_good=0;
1551 
1552  knownbadQPLLs = 0;
1553 
1554  HO0bad=0;
1555  HO12bad=0;
1556  HFlumibad=0;
1557 
1558  for (int i=0;i<85;++i)
1559  {
1560  occupancyEta[i]=0;
1561  if (i<72)
1562  occupancyPhi[i]=0;
1563  for (int j=0;j<72;++j)
1564  {
1565  for (int k=0;k<4;++k)
1566  {
1567  baddigis[i][j][k]=0;
1568  badcapID[i][j][k]=0;
1569  baddigisize[i][j][k]=0;
1570  occupancyEtaPhi[i][j][k]=0;
1571  digierrorsdverr[i][j][k]=0;
1572  badFibBCNOff[i][j][k]=0;
1573  badunpackerreport[i][j][k]=0;
1574  }
1575  } // for (int j=0;j<72;++i)
1576  } // for (int i=0;i<85;++i)
1577 
1578  for (int i=0;i<40;++i)
1579  {
1580  for (int j=0;j<18;++j)
1581  {
1582  occupancyVME[i][j]=0;
1583  errorVME[i][j]=0;
1584  }
1585  }
1586 
1587  for (int i=0;i<HcalDCCHeader::SPIGOT_COUNT;++i)
1588  {
1589  for (int j=0;j<36;++j)
1590  {
1591  occupancySpigot[i][j]=0;
1592  errorSpigot[i][j]=0;
1593  }
1594  }
1595 
1596 
1597  for (int i=0;i<20;++i)
1598  {
1599  for (int j=0;j<4;++j)
1600  digisize[i][j]=0;
1601  }
1602 
1603  for (int i=0;i<DIGI_NUM;++i)
1604  {
1605  diginum[i]=0;
1606 
1607  // set all DigiHists counters to 0
1608  if (i<4)
1609  {
1610  hbHists.dverr[i]=0;
1611  heHists.dverr[i]=0;
1612  hoHists.dverr[i]=0;
1613  hfHists.dverr[i]=0;
1614  hbHists.capid[i]=0;
1615  heHists.capid[i]=0;
1616  hoHists.capid[i]=0;
1617  hfHists.capid[i]=0;
1618  }
1619  if (i<8)
1620  {
1621  hbHists.capIDdiff[i]=0;
1622  heHists.capIDdiff[i]=0;
1623  hoHists.capIDdiff[i]=0;
1624  hfHists.capIDdiff[i]=0;
1625  }
1626 
1627  if (i<10)
1628  {
1629  hbHists.count_shape[i]=0;
1630  heHists.count_shape[i]=0;
1631  hoHists.count_shape[i]=0;
1632  hfHists.count_shape[i]=0;
1633 
1638  }
1639  if (i<50)
1640  {
1645  for (int j=0;j<10;++j)
1646  {
1647  hbHists.tssumplus[i][j]=0;
1648  heHists.tssumplus[i][j]=0;
1649  hoHists.tssumplus[i][j]=0;
1650  hfHists.tssumplus[i][j]=0;
1651  hbHists.tssumminus[i][j]=0;
1652  heHists.tssumminus[i][j]=0;
1653  hoHists.tssumminus[i][j]=0;
1654  hfHists.tssumminus[i][j]=0;
1655  }
1656  }
1657 
1658  if (i<15)
1659  {
1660  hbHists.fibbcnoff[i]=0;
1661  heHists.fibbcnoff[i]=0;
1662  hoHists.fibbcnoff[i]=0;
1663  hfHists.fibbcnoff[i]=0;
1664  }
1665 
1666  if (i<200)
1667  {
1668  hbHists.adc[i]=0;
1669  heHists.adc[i]=0;
1670  hoHists.adc[i]=0;
1671  hfHists.adc[i]=0;
1672  hbHists.adcsum[i]=0;
1673  heHists.adcsum[i]=0;
1674  hoHists.adcsum[i]=0;
1675  hfHists.adcsum[i]=0;
1676  }
1677  if (i<DIGI_SUBDET_NUM)
1678  {
1679  hbHists.count_BQ[i]=0;
1680  heHists.count_BQ[i]=0;
1681  hoHists.count_BQ[i]=0;
1682  hfHists.count_BQ[i]=0;
1683  }
1684  if (i<DIGI_BQ_FRAC_NBINS)
1685  {
1686  hbHists.count_BQFrac[i]=0;
1687  heHists.count_BQFrac[i]=0;
1688  hoHists.count_BQFrac[i]=0;
1689  hfHists.count_BQFrac[i]=0;
1690  }
1691  } // for (int i=0;i<DIGI_NUM;++i)
1692 
1693 
1694  return;
1695 }
1696 
1698 {
1699  // call update command for all histograms (should make them update when running in online DQM?)
1700  h.shape->update();
1701  h.shapeThresh->update();
1702  h.presample->update();
1703  h.BQ->update();
1704  h.BQFrac->update();
1705  h.DigiFirstCapID->update();
1706  h.DVerr->update();
1707  h.CapID->update();
1708  h.ADC->update();
1709  h.ADCsum->update();
1710  h.fibBCNOff->update();
1711 
1712  for (unsigned int i=0;i<h.TS_sum_plus.size();++i)
1713  h.TS_sum_plus[i]->update();
1714  for (unsigned int i=0;i<h.TS_sum_minus.size();++i)
1715  h.TS_sum_minus[i]->update();
1716 } //void HcalDigiMonitor::UpdateHists(DigiHists& h)
1717 
1718 
1720 {
1721  // reset the temporary histograms
1722  zeroCounters();
1723 
1724  // then reset the MonitorElements
1725 
1727  alarmer_counter_ = 0;
1728  knownbadQPLLs = 0;
1729 
1730  hbhedcsON = true; hfdcsON = true;
1731 
1741 
1746  DigiErrorVME->Reset();
1748 
1749  DigiBQ->Reset();
1750  DigiBQFrac->Reset();
1753 
1754  DigiNum->Reset();
1755 
1756  hbHists.shape->Reset();
1758  hbHists.presample->Reset();
1759  hbHists.BQ->Reset();
1760  hbHists.BQFrac->Reset();
1762  hbHists.DVerr->Reset();
1763  hbHists.CapID->Reset();
1764  hbHists.ADC->Reset();
1765  hbHists.ADCsum->Reset();
1766  hbHists.fibBCNOff->Reset();
1767  for (unsigned int i=0;i<hbHists.TS_sum_plus.size();++i)
1768  hbHists.TS_sum_plus[i]->Reset();
1769  for (unsigned int i=0;i<hbHists.TS_sum_minus.size();++i)
1770  hbHists.TS_sum_minus[i]->Reset();
1771 
1772  heHists.shape->Reset();
1774  heHists.presample->Reset();
1775  heHists.BQ->Reset();
1776  heHists.BQFrac->Reset();
1778  heHists.DVerr->Reset();
1779  heHists.CapID->Reset();
1780  heHists.ADC->Reset();
1781  heHists.ADCsum->Reset();
1782  heHists.fibBCNOff->Reset();
1783  for (unsigned int i=0;i<heHists.TS_sum_plus.size();++i)
1784  heHists.TS_sum_plus[i]->Reset();
1785  for (unsigned int i=0;i<heHists.TS_sum_minus.size();++i)
1786  heHists.TS_sum_minus[i]->Reset();
1787 
1788  hoHists.shape->Reset();
1790  hoHists.presample->Reset();
1791  hoHists.BQ->Reset();
1792  hoHists.BQFrac->Reset();
1794  hoHists.DVerr->Reset();
1795  hoHists.CapID->Reset();
1796  hoHists.ADC->Reset();
1797  hoHists.ADCsum->Reset();
1798  hoHists.fibBCNOff->Reset();
1799  for (unsigned int i=0;i<hoHists.TS_sum_plus.size();++i)
1800  hoHists.TS_sum_plus[i]->Reset();
1801  for (unsigned int i=0;i<hoHists.TS_sum_minus.size();++i)
1802  hoHists.TS_sum_minus[i]->Reset();
1803 
1804  hfHists.shape->Reset();
1806  hfHists.presample->Reset();
1807  hfHists.BQ->Reset();
1808  hfHists.BQFrac->Reset();
1810  hfHists.DVerr->Reset();
1811  hfHists.CapID->Reset();
1812  hfHists.ADC->Reset();
1813  hfHists.ADCsum->Reset();
1814  hfHists.fibBCNOff->Reset();
1815  for (unsigned int i=0;i<hfHists.TS_sum_plus.size();++i)
1816  hfHists.TS_sum_plus[i]->Reset();
1817  for (unsigned int i=0;i<hfHists.TS_sum_minus.size();++i)
1818  hfHists.TS_sum_minus[i]->Reset();
1819 
1820  return;
1821 }
1823 
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_