diff --git a/[refs] b/[refs] index 84def0539aa15..5a9e8ff5d729e 100644 --- a/[refs] +++ b/[refs] @@ -1,3 +1,3 @@ --- refs/heads/gh-pages: 09c786f70121f131b3715aaf3464996502bbeb7e -"refs/heads/CMSSW_7_1_X": cabb703b0a1c86eeec15c21003b649b5a6911ce7 +"refs/heads/CMSSW_7_1_X": 027dd27c443da16ff3ba849e1cdbb37a543e9bfc diff --git a/trunk/DQM/HcalMonitorTasks/src/HcalBeamMonitor.cc b/trunk/DQM/HcalMonitorTasks/src/HcalBeamMonitor.cc index dc4f0e8f85f3a..e195575be723d 100644 --- a/trunk/DQM/HcalMonitorTasks/src/HcalBeamMonitor.cc +++ b/trunk/DQM/HcalMonitorTasks/src/HcalBeamMonitor.cc @@ -930,15 +930,14 @@ void HcalBeamMonitor::endLuminosityBlock() { // One new luminosity section found with no entries for the cell in question // Add protection requiring a minimum number of entries before counting as dead? - HFlumi_total_deadcells->setBinContent(x,y,HFlumi_total_deadcells->getBinContent(x,y)+1); + HFlumi_total_deadcells->Fill(x-1,2*y-1,1); } // dead cell check if (HFlumi_occ_LS->getBinContent(x,y)>0.5*Nentries) { - // One new luminosity section found with no entries for the cell in question - // Add protection requiring a minimum number of entries before counting as dead? - HFlumi_total_hotcells->setBinContent(x,y,HFlumi_total_hotcells->getBinContent(x,y)+1); - } // dead cell check + HFlumi_total_dhotcells->Fill(x-1,2*y-1,1); + //HFlumi_total_hotcells->setBinContent(x,y,HFlumi_total_hotcells->getBinContent(x,y)+1); + } // hot cell check } // loop over y } // loop over x return;