Skip to content

Commit

Permalink
L1T DQM bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ccaillol committed Aug 31, 2022
1 parent cf5a22a commit 5550265
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
12 changes: 6 additions & 6 deletions DQMOffline/L1Trigger/src/L1TRate_Offline.cc
Original file line number Diff line number Diff line change
Expand Up @@ -505,14 +505,14 @@ bool L1TRate_Offline::getXSexFitsPython(const edm::ParameterSet& ps) {
foundFit = true;
break;
}
}

if (!foundFit) {
noError = false;
if (!foundFit) {
noError = false;

int eCount = m_ErrorMonitor->getTH1()->GetBinContent(WARNING_PY_MISSING_FIT);
eCount++;
m_ErrorMonitor->getTH1()->SetBinContent(WARNING_PY_MISSING_FIT, eCount);
}
int eCount = m_ErrorMonitor->getTH1()->GetBinContent(WARNING_PY_MISSING_FIT);
eCount++;
m_ErrorMonitor->getTH1()->SetBinContent(WARNING_PY_MISSING_FIT, eCount);
}
}
}
Expand Down
1 change: 0 additions & 1 deletion DQMOffline/L1Trigger/src/L1TStage2CaloLayer2Offline.cc
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,6 @@ void L1TStage2CaloLayer2Offline::fillJets(edm::Event const& e, const unsigned in
minDeltaR = currentDeltaR;
closestL1Jet = *jet;
foundMatch = true;
break;
}
}
// }
Expand Down

0 comments on commit 5550265

Please sign in to comment.