|
70 | 70 | #include "TRDBase/Geometry.h" |
71 | 71 | #include "TRDBase/GeometryFlat.h" |
72 | 72 | #include "ITSBase/GeometryTGeo.h" |
73 | | -#include "CommonUtils/VerbosityConfig.h" |
74 | 73 | #include "CommonUtils/DebugStreamer.h" |
75 | 74 | #include "GPUReconstructionConvert.h" |
76 | 75 | #include "DetectorsRaw/RDHUtils.h" |
@@ -413,23 +412,13 @@ void GPURecoWorkflowSpec::processInputs(ProcessingContext& pc, A& tpcZSmetaPoint |
413 | 412 | (feeLinkID == o2::tpc::rdh_utils::DLBZSLinkID && (rdhLink == o2::tpc::rdh_utils::UserLogicLinkID || rdhLink == o2::tpc::rdh_utils::DLBZSLinkID || rdhLink == 0))); |
414 | 413 | }; |
415 | 414 | auto insertPages = [&tpcZSmetaPointers, &tpcZSmetaSizes, checkForZSData](const char* ptr, size_t count, uint32_t subSpec) -> void { |
416 | | - if (subSpec == 0xdeadbeef) { |
417 | | - auto maxWarn = o2::conf::VerbosityConfig::Instance().maxWarnDeadBeef; |
418 | | - static int contDeadBeef = 0; |
419 | | - if (++contDeadBeef <= maxWarn) { |
420 | | - LOGP(alarm, "Found input [TPC/RAWDATA/0xdeadbeef] assuming no payload for all links in this TF{}", contDeadBeef == maxWarn ? fmt::format(". {} such inputs in row received, stopping reporting", contDeadBeef) : ""); |
421 | | - } |
422 | | - return; |
423 | | - } |
424 | 415 | if (checkForZSData(ptr, subSpec)) { |
425 | 416 | int rawcru = o2::tpc::rdh_utils::getCRU(ptr); |
426 | 417 | int rawendpoint = o2::tpc::rdh_utils::getEndPoint(ptr); |
427 | 418 | tpcZSmetaPointers[rawcru / 10][(rawcru % 10) * 2 + rawendpoint].emplace_back(ptr); |
428 | 419 | tpcZSmetaSizes[rawcru / 10][(rawcru % 10) * 2 + rawendpoint].emplace_back(count); |
429 | 420 | } |
430 | 421 | }; |
431 | | - // the sequencer processes all inputs matching the filter and finds sequences of consecutive |
432 | | - // raw pages based on the matcher predicate, and calls the inserter for each sequence |
433 | 422 | if (DPLRawPageSequencer(pc.inputs(), filter)(isSameRdh, insertPages, checkForZSData)) { |
434 | 423 | debugTFDump = true; |
435 | 424 | static unsigned int nErrors = 0; |
|
0 commit comments