Skip to content

Commit

Permalink
Fix missing case
Browse files Browse the repository at this point in the history
  • Loading branch information
cortesep committed Oct 23, 2024
1 parent 3b36d1f commit c7dbdb1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Detectors/ZDC/reconstruction/src/DigiReco.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,9 @@ void DigiReco::init()
}
}
}
}else{
// Fill mask to identify TDC channels
mTDCMask[itdc] = (0x1 << (4 * ropt.tmod[itdc] + ropt.tch[itdc]));
}
next_itdc:;
if (mVerbosity > DbgZero) {
Expand Down Expand Up @@ -356,6 +359,9 @@ void DigiReco::init()
}
}
}
} else {
// Fill mask to identify all channels
mChMask[ich] = (0x1 << (4 * ropt.amod[ich] + ropt.ach[ich]));
}
next_ich:;
if (mVerbosity > DbgZero) {
Expand Down

0 comments on commit c7dbdb1

Please sign in to comment.