From ac1d5fbbcb61ac7361eee772ff455d54244c93fc Mon Sep 17 00:00:00 2001 From: wiechula Date: Sun, 5 Oct 2025 23:39:18 +0200 Subject: [PATCH] Silence by default IncompleteHBF check --- Detectors/TPC/workflow/src/IDCToVectorSpec.cxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Detectors/TPC/workflow/src/IDCToVectorSpec.cxx b/Detectors/TPC/workflow/src/IDCToVectorSpec.cxx index 9d704d425f1da..da8de5f262cdf 100644 --- a/Detectors/TPC/workflow/src/IDCToVectorSpec.cxx +++ b/Detectors/TPC/workflow/src/IDCToVectorSpec.cxx @@ -72,6 +72,7 @@ class IDCToVectorDevice : public o2::framework::Task mWriteDebugOnError = ic.options().get("write-debug-on-error"); mWriteRawDataOnError = ic.options().get("write-raw-data-on-error"); mRawDataType = ic.options().get("raw-data-type"); + o2::framework::RawParser<>::setCheckIncompleteHBF(ic.options().get("check-incomplete-hbf")); mDebugStreamFileName = ic.options().get("debug-file-name").data(); mRawOutputFileName = ic.options().get("raw-file-name").data(); @@ -606,9 +607,10 @@ o2::framework::DataProcessorSpec getIDCToVectorSpec(const std::string inputSpec, {"write-raw-data-on-error", VariantType::Bool, false, {"dump raw data in case errors occurred"}}, {"raw-file-name", VariantType::String, "/tmp/idc_debug.{run}.{raw_type}", {"name of the raw output file"}}, {"raw-data-type", VariantType::Int, 0, {"Which raw data to dump: 0-full TPC with DH, 1-full TPC with DH skip empty, 2-full TPC no DH, 3-full TPC no DH skip empty, 4-IDC raw only"}}, + {"check-incomplete-hbf", VariantType::Bool, false, {"false: don't chck; true: check and report"}}, {"pedestal-url", VariantType::String, "ccdb-default", {"ccdb-default: load from NameConf::getCCDBServer() OR ccdb url (must contain 'ccdb' OR pedestal file name"}}, {"swap-links", VariantType::Bool, false, {"swap links to circumvent bug in FW"}}, } // end Options - }; // end DataProcessorSpec + }; // end DataProcessorSpec } } // namespace o2::tpc