Skip to content

Commit 4b45143

Browse files
committed
Trivial bug in error text
1 parent 4b918e5 commit 4b45143

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/ITS/src/ITSChipStatusCheck.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Quality ITSChipStatusCheck::check(std::map<std::string, std::shared_ptr<MonitorO
6767
if (abs(h->GetBinContent(ibin) - 1) < 0.01) {
6868
result = Quality::Bad;
6969
TString text = Form("BAD: At least one stave is without data");
70-
vBadStaves.push_back(Form("L%d_%d", ilayer, ibin - StaveBoundary[ilayer]));
70+
vBadStaves.push_back(Form("L%d_%d", ilayer, ibin - StaveBoundary[ilayer] - 1));
7171
result.addFlag(o2::quality_control::FlagTypeFactory::Unknown(), text.Data());
7272
}
7373
}

0 commit comments

Comments
 (0)