We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2a4262 commit e9260f2Copy full SHA for e9260f2
Detectors/ITSMFT/ITS/tracking/include/ITStracking/Seeding.h
@@ -72,7 +72,7 @@ struct LinearizedTrack {
72
uint8_t status{0}; ///< status bits
73
74
GPUhdi() void markDead() noexcept { status |= kDead; }
75
- GPUhdi() bool isDead() const noexcept { return (status & kDead) == kDead; }
+ GPUhdi() bool isDead() const noexcept { return ((status & kDead) == kDead) || cellIdx < 0; }
76
77
GPUh() void print() const
78
{
0 commit comments