Skip to content

Commit ac5a975

Browse files
authored
ITS - very minor fixes (#1969)
Co-authored-by: Nicolo Valle <nicolo.valle@cern.ch>
1 parent 8616d40 commit ac5a975

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Modules/ITS/src/ITSDecodingErrorTask.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,12 @@ void ITSDecodingErrorTask::createDecodingPlots()
7171
mLinkErrorPlots = new TH1D("General/LinkErrorPlots", "GBTLink decoding Errors", o2::itsmft::GBTLinkDecodingStat::NErrorsDefined, 0.5, o2::itsmft::GBTLinkDecodingStat::NErrorsDefined + 0.5);
7272
mLinkErrorPlots->SetMinimum(0);
7373
mLinkErrorPlots->SetStats(0);
74-
mLinkErrorPlots->SetFillColor(kRed);
74+
mLinkErrorPlots->SetFillColor(kOrange);
7575
getObjectsManager()->startPublishing(mLinkErrorPlots); // mLinkErrorPlots
7676
mChipErrorPlots = new TH1D("General/ChipErrorPlots", "Chip Decoding Errors", o2::itsmft::ChipStat::NErrorsDefined, 0.5, o2::itsmft::ChipStat::NErrorsDefined + 0.5);
7777
mChipErrorPlots->SetMinimum(0);
7878
mChipErrorPlots->SetStats(0);
79-
mChipErrorPlots->SetFillColor(kRed);
79+
mChipErrorPlots->SetFillColor(kOrange);
8080
getObjectsManager()->startPublishing(mChipErrorPlots); // mChipErrorPlots
8181

8282
hAlwaysBusy = new TH1D("AlwaysBusyChips", "Number of Chips always in BUSY state", 11, 0, 11);

Modules/ITS/src/ITSFeeTask.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ void ITSFeeTask::setPlotsFormat()
238238
mTrailerCount->GetYaxis()->SetBinLabel(3, "11 kHz");
239239
mTrailerCount->GetYaxis()->SetBinLabel(6, "45 kHz");
240240
mTrailerCount->GetYaxis()->SetBinLabel(8, "67 kHz");
241-
mTrailerCount->GetYaxis()->SetBinLabel(12, "101 kHz");
241+
mTrailerCount->GetYaxis()->SetBinLabel(11, "101 kHz");
242242
mTrailerCount->GetYaxis()->SetBinLabel(15, "135 kHz");
243243
mTrailerCount->GetYaxis()->SetBinLabel(20, "202 kHz");
244244
}

0 commit comments

Comments
 (0)