main-coverity-FPGATrackSimConfTools
track.getBarcode() == std::numeric_limits<long>::max())
always returns false, as track.getBarcode returns a uint32_t.
Use correct type for max comparison.
Edited by Shaun Roe
GitLab jobs artifacts no longer stored forever as of Monday, November 4th 08:30h. Further information under https://cern.ch/otg0152576
track.getBarcode() == std::numeric_limits<long>::max())
always returns false, as track.getBarcode returns a uint32_t.
Use correct type for max comparison.