diff --git a/Detectors/ITSMFT/common/reconstruction/src/PixelData.cxx b/Detectors/ITSMFT/common/reconstruction/src/PixelData.cxx index 9379540571b9b..04a2a485b2ace 100644 --- a/Detectors/ITSMFT/common/reconstruction/src/PixelData.cxx +++ b/Detectors/ITSMFT/common/reconstruction/src/PixelData.cxx @@ -20,5 +20,6 @@ using namespace o2::ITSMFT; void PixelData::sanityCheck() const { // make sure the mask used in this class are compatible with Alpide segmenations - static_assert(RowMask + 1 >= o2::ITSMFT::SegmentationAlpide::NRows); + static_assert(RowMask + 1 >= o2::ITSMFT::SegmentationAlpide::NRows, + "incompatible mask, does not match Alpide segmentations"); }