Skip to content

Commit

Permalink
Merge pull request #35742 from lwang046/HcalDQM-fixRunSummary
Browse files Browse the repository at this point in the history
HcalDQM: A quick fix for the empty DQM plot entries of extended Hcal FEDs (back port)
  • Loading branch information
cmsbuild committed Oct 21, 2021
2 parents d33ce23 + 52fbee2 commit 0c88a26
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions DQM/HcalCommon/src/Utilities.cc
Expand Up @@ -12,6 +12,8 @@ namespace hcaldqm {
uint16_t slot = 0;
if (fed <= FED_VME_MAX) {
slot = fed % 2 == 0 ? SLOT_uTCA_MIN : SLOT_uTCA_MIN + 6;
} else if ((fed >= 1100 && fed <= 1117) || (fed >= 1140 && fed <= 1148)) {
slot = fed >= 1140 ? SLOT_uTCA_MIN + 8 : fed % 2 == 0 ? SLOT_uTCA_MIN : SLOT_uTCA_MIN + 4;
} else {
slot = fed % 2 == 0 ? SLOT_uTCA_MIN : SLOT_uTCA_MIN + 6;
}
Expand Down

0 comments on commit 0c88a26

Please sign in to comment.