Skip to content

Commit f64a232

Browse files
authored
Fix trigger detection (#9779)
1 parent b23f163 commit f64a232

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

DataFormats/Detectors/TPC/include/DataFormatsTPC/ZeroSuppressionLinkBased.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ struct TriggerInfoV3 {
310310
uint64_t word0 = 0;
311311
uint64_t word1 = 0;
312312

313-
bool hasTrigger() const { return word0 & TriggerWord::HasTrigger; }
313+
bool hasTrigger() const { return word0 != 0x0; }
314314
uint16_t getFirstBC() const { return word0 & 0xFFF; }
315315
};
316316
#endif // !defined(GPUCA_GPUCODE)

0 commit comments

Comments
 (0)