Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[13_2_X] Add storing of invalid ROC number error (errorType=36) in pixel GPU code #43053

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 @@ -331,12 +331,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