Skip to content

Commit

Permalink
Modify PU condition for MLDQM
Browse files Browse the repository at this point in the history
  • Loading branch information
abhih1 committed May 31, 2023
1 parent 91f135a commit 4a93e2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DQM/EcalMonitorClient/src/MLClient.cc
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ namespace ecaldqm {
double pu = sPU.getFloatValue();

//Do not compute ML quality if PU is non existent.
if (pu < 0.) {
if (pu <= 0.) {
return;
}
uint32_t mask(1 << EcalDQMStatusHelper::PEDESTAL_ONLINE_HIGH_GAIN_RMS_ERROR |
Expand Down

0 comments on commit 4a93e2d

Please sign in to comment.