Fix out-of-bound bug pointed out by Ryan McFadden.

This commit is contained in:
suter_a 2021-04-13 07:33:14 +02:00
parent 3fc410e7a7
commit b3cd31199e

View File

@ -7039,11 +7039,13 @@ void PMsrHandler::MakeDetectorGroupingString(TString str, PIntVector &group, TSt
UInt_t i=0, j=0;
do {
j = i;
if (j+1 < group.size()) {
while (group[j]+1 == group[j+1]) {
j++;
if (j == group.size()-1)
break;
}
}
if (j >= i+2) {
result += group[i];