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 @@ -330,12 +330,13 @@ namespace pixelgpudetails {

// check for spurious channels
if (roc > MAX_ROC or link > MAX_LINK) {
uint32_t rawId = getRawId(cablingMap, fedId, link, 1).rawId;
if constexpr (debug) {
printf("spurious roc %d found on link %d, detector %d (index %d)\n",
roc,
link,
getRawId(cablingMap, fedId, link, 1).rawId,
gIndex);
printf("spurious roc %d found on link %d, detector %d (index %d)\n", roc, link, rawId, gIndex);
}
if (roc > MAX_ROC and roc < 25) {
uint8_t error = conversionError<debug>(fedId, 2);
err->push_back(SiPixelErrorCompact{rawId, ww, error, fedId});
}
continue;
}
Expand Down