Skip to content

Commit 2bd8528

Browse files
authored
ranges updated to be compatible with back-bias calibration (#1595)
1 parent 907e1cb commit 2bd8528

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Modules/ITS/include/ITS/ITSThresholdCalibrationTask.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ class ITSThresholdCalibrationTask : public TaskInterface
106106
TString sBarrelType[3] = { "IB", "ML", "OL" };
107107
Int_t nChips[3] = { 9, 112, 196 };
108108
Int_t nStaves[3] = { 48, 54, 90 };
109-
Int_t nXmax[3] = { 80, 100, 400 };
110-
Int_t nZmax[3] = { 90, 110, 300 };
109+
Int_t nXmax[3] = { 130, 100, 450 };
110+
Int_t nZmax[3] = { 130, 110, 300 };
111111
Int_t nZmin[3] = { 20, 20, 30 };
112112

113113
TString sXtitles[3] = { "DAC", "DAC", "e" };

Modules/ITS/src/ITSThresholdCalibrationTask.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@ void ITSThresholdCalibrationTask::createAllHistos()
468468
formatLayers(hCalibrationPixelpAverage[iType][iBarrel], iBarrel);
469469
addObject(hCalibrationPixelpAverage[iType][iBarrel]);
470470
}
471-
hCalibrationDColChipAverage[iBarrel] = new TH2D(Form("DCols%s", sBarrelType[iBarrel].Data()), Form("Number of DColls per chip for %s", sBarrelType[iBarrel].Data()), nChips[iBarrel], -0.5, nChips[iBarrel] - 0.5, nStaves[iBarrel], -0.5, nStaves[iBarrel] - 0.5);
471+
hCalibrationDColChipAverage[iBarrel] = new TH2D(Form("DCols%s", sBarrelType[iBarrel].Data()), Form("Number of DCols per chip for %s", sBarrelType[iBarrel].Data()), nChips[iBarrel], -0.5, nChips[iBarrel] - 0.5, nStaves[iBarrel], -0.5, nStaves[iBarrel] - 0.5);
472472
hCalibrationDColChipAverage[iBarrel]->SetStats(0);
473473
if (iBarrel != 0)
474474
formatAxes(hCalibrationDColChipAverage[iBarrel], "Chip", "", 1, 1.10);

0 commit comments

Comments
 (0)