You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if ((expectInp & ExpectRegion) && isChipTrailer(dataC)) {
386
+
if (dataC & MaskROFlags) {
387
+
// in case of BUSY VIOLATION the Trailer may come directly after the Header
388
+
expectInp = ExpectNextChip;
389
+
chipData.setROFlags(dataC & MaskROFlags);
390
+
roErrHandler(dataC & MaskROFlags);
391
+
break;
392
+
} else {
393
+
#ifdef ALPIDE_DECODING_STAT
394
+
chipData.setError(ChipStat::TrailerAfterHeader);
395
+
#endif
396
+
returnunexpectedEOF("Trailer after header"); // abandon cable data
397
+
}
401
398
}
402
399
403
400
// check for APE errors, see https://alice.its.cern.ch/jira/browse/O2-1717?focusedCommentId=274714&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-274714
0 commit comments