Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,7 @@ namespace pixelgpudetails {
if (!((errorWord >> sipixelconstants::OMIT_ERR_shift) & sipixelconstants::OMIT_ERR_mask)) {
if constexpr (debug)
printf("...2nd errorType=29 error, skip\n");
break;
}
errorFound = true;
break;
Expand Down Expand Up @@ -323,7 +324,8 @@ namespace pixelgpudetails {
skipROC = (roc < pixelgpudetails::maxROCIndex) ? false : (errorType != 0);
if (includeErrors and skipROC) {
uint32_t rID = getErrRawID<debug>(fedId, ww, errorType, cablingMap);
err->push_back(SiPixelErrorCompact{rID, ww, errorType, fedId});
if (rID != 0xffffffff) // store errors only for valid DetIds
err->push_back(SiPixelErrorCompact{rID, ww, errorType, fedId});
continue;
}

Expand Down