Change LF index from short to int
It was observed that on PbPb simulation the new PbPb sequence without GEC (!1237 (merged)) was crashing on both GPU and CPU. The reason for this was traced back to an index declared as short in LFQualityFilter.cu
that was assigned a value larger than MAX_SHRT
.
This MR switches the index from short
to int
to fit the high occupancy evens & adds an assert in order to catch similar issues in the future.
Closes #435 (closed)
Edited by Christina Agapopoulou