Skip to content

Commit 2555598

Browse files
committed
Please consider the following formatting changes
1 parent 45bfab2 commit 2555598

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

PWGJE/TableProducer/tableDiffWake.cxx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -220,36 +220,36 @@ struct TableDiffWake {
220220

221221
int64_t particlePx = (track.px() * 6000);
222222
if (particlePx < 0)
223-
substituteP |= static_cast<uint64_t>1 << uppermostBit;
223+
substituteP |= static_cast < uint64_t > 1 << uppermostBit;
224224
if (particlePx < 0)
225225
particlePx = (-1) * particlePx;
226226
for (int8_t i_bit = lowermostBit; i_bit < uppermostBit; i_bit++) {
227-
if ((particlePx & (static_cast<int64_t>1 << i_bit)))
228-
substituteP |= static_cast<uint64_t>1 << i_bit;
227+
if ((particlePx & (static_cast < int64_t > 1 << i_bit)))
228+
substituteP |= static_cast < uint64_t > 1 << i_bit;
229229
}
230230

231231
uppermostBit = 41;
232232
lowermostBit = 21;
233233
int64_t particlePy = (track.py() * 6000);
234234
if (particlePy < 0)
235-
substituteP |= static_cast<uint64_t>1 << uppermostBit;
235+
substituteP |= static_cast < uint64_t > 1 << uppermostBit;
236236
if (particlePy < 0)
237237
particlePy = (-1) * particlePy;
238238
for (int8_t i_bit = lowermostBit; i_bit < uppermostBit; i_bit++) {
239-
if ((particlePy & (static_cast<int64_t>1 << (i_bit - lowermostBit))))
240-
substituteP |= static_cast<uint64_t>1 << i_bit;
239+
if ((particlePy & (static_cast < int64_t > 1 << (i_bit - lowermostBit))))
240+
substituteP |= static_cast < uint64_t > 1 << i_bit;
241241
}
242242

243243
uppermostBit = 62;
244244
lowermostBit = 42;
245245
int64_t particlePz = (track.pz() * 6000);
246246
if (particlePz < 0)
247-
substituteP |= static_cast<uint64_t>1 << uppermostBit;
247+
substituteP |= static_cast < uint64_t > 1 << uppermostBit;
248248
if (particlePz < 0)
249249
particlePz = (-1) * particlePz;
250250
for (int8_t i_bit = lowermostBit; i_bit < uppermostBit; i_bit++) {
251-
if ((particlePz & (static_cast<int64_t>1 << (i_bit - lowermostBit))))
252-
substituteP |= static_cast<uint64_t>1 << i_bit;
251+
if ((particlePz & (static_cast < int64_t > 1 << (i_bit - lowermostBit))))
252+
substituteP |= static_cast < uint64_t > 1 << i_bit;
253253
}
254254

255255
// dEdx

0 commit comments

Comments
 (0)