Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing Offline DQM Bug #12104

Merged
merged 2 commits into from Nov 3, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion DQM/HcalMonitorTasks/src/HcalDigiMonitor.cc
Expand Up @@ -568,7 +568,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