Skip to content

Commit 18d9930

Browse files
committed
Silence by default IncompleteHBF check
1 parent 2109283 commit 18d9930

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Detectors/TPC/workflow/src/IDCToVectorSpec.cxx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ class IDCToVectorDevice : public o2::framework::Task
7272
mWriteDebugOnError = ic.options().get<bool>("write-debug-on-error");
7373
mWriteRawDataOnError = ic.options().get<bool>("write-raw-data-on-error");
7474
mRawDataType = ic.options().get<int>("raw-data-type");
75+
o2::framework::RawParser<>::setCheckIncompleteHBF(ic.options().get<bool>("check-incomplete-hbf"));
7576

7677
mDebugStreamFileName = ic.options().get<std::string>("debug-file-name").data();
7778
mRawOutputFileName = ic.options().get<std::string>("raw-file-name").data();
@@ -606,9 +607,10 @@ o2::framework::DataProcessorSpec getIDCToVectorSpec(const std::string inputSpec,
606607
{"write-raw-data-on-error", VariantType::Bool, false, {"dump raw data in case errors occurred"}},
607608
{"raw-file-name", VariantType::String, "/tmp/idc_debug.{run}.{raw_type}", {"name of the raw output file"}},
608609
{"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"}},
610+
{"check-incomplete-hbf", VariantType::Bool, false, {"false: don't chck; true: check and report"}},
609611
{"pedestal-url", VariantType::String, "ccdb-default", {"ccdb-default: load from NameConf::getCCDBServer() OR ccdb url (must contain 'ccdb' OR pedestal file name"}},
610612
{"swap-links", VariantType::Bool, false, {"swap links to circumvent bug in FW"}},
611613
} // end Options
612-
}; // end DataProcessorSpec
614+
}; // end DataProcessorSpec
613615
}
614616
} // namespace o2::tpc

0 commit comments

Comments
 (0)