Skip to content

Commit e700eda

Browse files
wiechulashahor02
authored andcommitted
TPC: fix parameter type for sync-offset-reference
1 parent 307d796 commit e700eda

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Detectors/TPC/workflow/include/TPCWorkflow/TPCCalibPadRawSpec.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ DataProcessorSpec getTPCCalibPadRawSpec(const std::string inputSpec, uint32_t il
240240
{"use-old-subspec", VariantType::Bool, false, {"use old subsecifiation definition"}},
241241
{"force-quit", VariantType::Bool, false, {"force quit after max-events have been reached"}},
242242
{"direct-file-dump", VariantType::Bool, false, {"directly dump calibration to file"}},
243-
{"sync-offset-reference", VariantType::UInt32, 144, {"Reference BCs used for the global sync offset in the CRUs"}},
243+
{"sync-offset-reference", VariantType::UInt32, 144u, {"Reference BCs used for the global sync offset in the CRUs"}},
244244
} // end Options
245245
}; // end DataProcessorSpec
246246
}

Detectors/TPC/workflow/src/RawToDigitsSpec.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ DataProcessorSpec getRawToDigitsSpec(int channel, const std::string inputSpec, s
257257
{"remove-duplicates", VariantType::Bool, false, {"check if duplicate digits exist and remove them"}},
258258
{"remove-ce-digits", VariantType::Bool, false, {"find CE position and remove digits around it"}},
259259
{"ignore-grp", VariantType::Bool, false, {"ignore GRP file"}},
260-
{"sync-offset-reference", VariantType::UInt32, 144, {"Reference BCs used for the global sync offset in the CRUs"}},
260+
{"sync-offset-reference", VariantType::UInt32, 144u, {"Reference BCs used for the global sync offset in the CRUs"}},
261261
} // end Options
262262
}; // end DataProcessorSpec
263263
}

0 commit comments

Comments
 (0)