Skip to content

Commit 41cf6ff

Browse files
committed
Restore call to maskBins but discard the result
1 parent 3053ade commit 41cf6ff

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

DQM/L1TMonitorClient/src/L1TOccupancyClient.cc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -605,6 +605,7 @@ double L1TOccupancyClient::getAvrg(TH2F* iHist, string iTestName, int iAxis, int
605605

606606
// median
607607
case 2:
608+
hservice_->maskBins(iTestName, histo, iBinStrip, iAxis);
608609
proj = histo->ProjectionY("_py", iBinStrip, iBinStrip);
609610
for (int i = 0; i < iNBins; i++) {
610611
values.push_back(proj->GetBinContent(i + 1));
@@ -627,6 +628,7 @@ double L1TOccupancyClient::getAvrg(TH2F* iHist, string iTestName, int iAxis, int
627628
break;
628629
// median
629630
case 2:
631+
hservice_->maskBins(iTestName, histo, iBinStrip, iAxis);
630632
proj = histo->ProjectionX("_px", iBinStrip, iBinStrip);
631633
for (int i = 0; i < iNBins; i++) {
632634
values.push_back(proj->GetBinContent(i + 1));

0 commit comments

Comments
 (0)