Skip to content

Commit

Permalink
Merge pull request #12106 from vkhristenko/CMSSW_7_6_X
Browse files Browse the repository at this point in the history
Fixing Offline DQM Bug
  • Loading branch information
cmsbuild committed Oct 29, 2015
2 parents d8345fe + a0f61be commit 3b78b2d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion DQM/HcalMonitorTasks/src/HcalDigiMonitor.cc
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,8 @@ void HcalDigiMonitor::analyze(edm::Event const&e, edm::EventSetup const&s)
// will create a map (dccid, spigot) -> DetID to be used in process_Digi later
for (int i=FEDNumbering::MINHCALFEDID;
i<=FEDNumbering::MAXHCALuTCAFEDID; i++) {
if (i>FEDNumbering::MAXHCALFEDID && i<FEDNumbering::MINHCALuTCAFEDID)
// Skipping uHBHE FEDs
if (i>FEDNumbering::MAXHCALFEDID && i<1118)
continue;
const FEDRawData& fed = rawraw->FEDData(i);
if (fed.size()<12) continue; //At least the size of headers and trailers of a DCC.
Expand Down

0 comments on commit 3b78b2d

Please sign in to comment.