File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -221,7 +221,7 @@ struct TableDiffWake {
221221
222222 int64_t particlePx = (track.px () * 6000 );
223223 if (particlePx < 0 )
224- substituteP |= static_cast < uint64_t > 1 << uppermostBit;
224+ substituteP |= static_cast < uint64_t > 1 << uppermostBit;
225225 if (particlePx < 0 )
226226 particlePx = (-1 ) * particlePx;
227227 substituteP |= (particlePx & bitmask20Bits) << lowermostBit;
@@ -230,7 +230,7 @@ struct TableDiffWake {
230230 lowermostBit = 21 ;
231231 int64_t particlePy = (track.py () * 6000 );
232232 if (particlePy < 0 )
233- substituteP |= static_cast < uint64_t > 1 << uppermostBit;
233+ substituteP |= static_cast < uint64_t > 1 << uppermostBit;
234234 if (particlePy < 0 )
235235 particlePy = (-1 ) * particlePy;
236236 substituteP |= (particlePy & bitmask20Bits) << lowermostBit;
@@ -239,7 +239,7 @@ struct TableDiffWake {
239239 lowermostBit = 42 ;
240240 int64_t particlePz = (track.pz () * 6000 );
241241 if (particlePz < 0 )
242- substituteP |= static_cast < uint64_t > 1 << uppermostBit;
242+ substituteP |= static_cast < uint64_t > 1 << uppermostBit;
243243 if (particlePz < 0 )
244244 particlePz = (-1 ) * particlePz;
245245 substituteP |= (particlePz & bitmask20Bits) << lowermostBit;
You can’t perform that action at this time.
0 commit comments