@@ -225,36 +225,36 @@ struct TableDiffWake {
225225
226226 int64_t particlePx = (track.px () * 6000 );
227227 if (particlePx < 0 )
228- substituteP |= static_cast < uint64_t > 1 << uppermostBit;
228+ substituteP |= static_cast < uint64_t > 1 << uppermostBit;
229229 if (particlePx < 0 )
230230 particlePx = (-1 ) * particlePx;
231231 for (int8_t i_bit = lowermostBit; i_bit < uppermostBit; i_bit++) {
232- if ((particlePx & (static_cast < int64_t > 1 << i_bit)))
233- substituteP |= static_cast < uint64_t > 1 << i_bit;
232+ if ((particlePx & (static_cast < int64_t > 1 << i_bit)))
233+ substituteP |= static_cast < uint64_t > 1 << i_bit;
234234 }
235235
236236 uppermostBit = 41 ;
237237 lowermostBit = 21 ;
238238 int64_t particlePy = (track.py () * 6000 );
239239 if (particlePy < 0 )
240- substituteP |= static_cast < uint64_t > 1 << uppermostBit;
240+ substituteP |= static_cast < uint64_t > 1 << uppermostBit;
241241 if (particlePy < 0 )
242242 particlePy = (-1 ) * particlePy;
243243 for (int8_t i_bit = lowermostBit; i_bit < uppermostBit; i_bit++) {
244- if ((particlePy & (static_cast < int64_t > 1 << (i_bit - lowermostBit))))
245- substituteP |= static_cast < uint64_t > 1 << i_bit;
244+ if ((particlePy & (static_cast < int64_t > 1 << (i_bit - lowermostBit))))
245+ substituteP |= static_cast < uint64_t > 1 << i_bit;
246246 }
247247
248248 uppermostBit = 62 ;
249249 lowermostBit = 42 ;
250250 int64_t particlePz = (track.pz () * 6000 );
251251 if (particlePz < 0 )
252- substituteP |= static_cast < uint64_t > 1 << uppermostBit;
252+ substituteP |= static_cast < uint64_t > 1 << uppermostBit;
253253 if (particlePz < 0 )
254254 particlePz = (-1 ) * particlePz;
255255 for (int8_t i_bit = lowermostBit; i_bit < uppermostBit; i_bit++) {
256- if ((particlePz & (static_cast < int64_t > 1 << (i_bit - lowermostBit))))
257- substituteP |= static_cast < uint64_t > 1 << i_bit;
256+ if ((particlePz & (static_cast < int64_t > 1 << (i_bit - lowermostBit))))
257+ substituteP |= static_cast < uint64_t > 1 << i_bit;
258258 }
259259
260260 // dEdx
0 commit comments