Skip to content

Commit

Permalink
new default ranges for vcasn scan + fix of trivial bug with scurves tree
Browse files Browse the repository at this point in the history
  • Loading branch information
iravasen authored and shahor02 committed May 21, 2024
1 parent fba58db commit 529d890
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ class ITSThresholdCalibrator : public Task

// To set min and max ITHR and VCASN in the tuning scans
short int inMinVcasn = 30;
short int inMaxVcasn = 80;
short int inMaxVcasn = 100;
short int inMinIthr = 30;
short int inMaxIthr = 100;

Expand Down
4 changes: 2 additions & 2 deletions Detectors/ITSMFT/ITS/workflow/src/ThresholdCalibratorSpec.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -789,7 +789,7 @@ void ITSThresholdCalibrator::extractThresholdRow(const short int& chipID, const
}

// Fill the ScTree tree
if (mScanType == 'T' || mScanType == 'I' || mScanType == 'V') { // TODO: store also for other scans?
if (mScanType == 'T') { // TODO: store also for other scans?
for (int ichg = mMin; ichg <= mMax; ichg++) {
for (short int col_i = 0; col_i < this->N_COL; col_i += mColStep) {
vCharge[col_i] = ichg;
Expand Down Expand Up @@ -2023,7 +2023,7 @@ DataProcessorSpec getITSThresholdCalibratorSpec(const ITSCalibInpConf& inpConf)
{"enable-single-pix-tag", VariantType::Bool, false, {"Use to enable tagging of single noisy pix in digital and analogue scan"}},
{"ccdb-mgr-url", VariantType::String, "", {"CCDB url to download confDBmap"}},
{"min-vcasn", VariantType::Int, 30, {"Min value of VCASN in vcasn scan, default is 30"}},
{"max-vcasn", VariantType::Int, 80, {"Max value of VCASN in vcasn scan, default is 80"}},
{"max-vcasn", VariantType::Int, 100, {"Max value of VCASN in vcasn scan, default is 80"}},
{"min-ithr", VariantType::Int, 30, {"Min value of ITHR in ithr scan, default is 30"}},
{"max-ithr", VariantType::Int, 100, {"Max value of ITHR in ithr scan, default is 100"}},
{"manual-mode", VariantType::Bool, false, {"Flag to activate the manual mode in case run type is not recognized"}},
Expand Down

0 comments on commit 529d890

Please sign in to comment.