Skip to content

Commit 6f72f9c

Browse files
committed
Please consider the following formatting changes
1 parent cd6e89e commit 6f72f9c

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

PWGJE/TableProducer/tableDiffWake.cxx

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
#include <Framework/runDataProcessing.h>
3838

3939
// Event selection: Only events that contain track above some threshold
40-
//
40+
//
4141
// -------------------------------------------------------------------------------------------
4242
// TRACK DATA
4343
// -------------------------------------------------------------------------------------------
@@ -226,36 +226,36 @@ struct TableDiffWake {
226226

227227
int64_t particlePx = (track.px() * 6000);
228228
if (particlePx < 0)
229-
substituteP |= static_cast<uint64_t>1 << uppermostBit;
229+
substituteP |= static_cast < uint64_t > 1 << uppermostBit;
230230
if (particlePx < 0)
231231
particlePx = (-1) * particlePx;
232232
for (int8_t i_bit = lowermostBit; i_bit < uppermostBit; i_bit++) {
233-
if ((particlePx & (static_cast<int64_t>1 << i_bit)))
234-
substituteP |= static_cast<uint64_t>1 << i_bit;
233+
if ((particlePx & (static_cast < int64_t > 1 << i_bit)))
234+
substituteP |= static_cast < uint64_t > 1 << i_bit;
235235
}
236236

237237
uppermostBit = 41;
238238
lowermostBit = 21;
239239
int64_t particlePy = (track.py() * 6000);
240240
if (particlePy < 0)
241-
substituteP |= static_cast<uint64_t>1 << uppermostBit;
241+
substituteP |= static_cast < uint64_t > 1 << uppermostBit;
242242
if (particlePy < 0)
243243
particlePy = (-1) * particlePy;
244244
for (int8_t i_bit = lowermostBit; i_bit < uppermostBit; i_bit++) {
245-
if ((particlePy & (static_cast<int64_t>1 << (i_bit - lowermostBit))))
246-
substituteP |= static_cast<uint64_t>1 << i_bit;
245+
if ((particlePy & (static_cast < int64_t > 1 << (i_bit - lowermostBit))))
246+
substituteP |= static_cast < uint64_t > 1 << i_bit;
247247
}
248248

249249
uppermostBit = 62;
250250
lowermostBit = 42;
251251
int64_t particlePz = (track.pz() * 6000);
252252
if (particlePz < 0)
253-
substituteP |= static_cast<uint64_t>1 << uppermostBit;
253+
substituteP |= static_cast < uint64_t > 1 << uppermostBit;
254254
if (particlePz < 0)
255255
particlePz = (-1) * particlePz;
256256
for (int8_t i_bit = lowermostBit; i_bit < uppermostBit; i_bit++) {
257-
if ((particlePz & (static_cast<int64_t>1 << (i_bit - lowermostBit))))
258-
substituteP |= static_cast<uint64_t>1 << i_bit;
257+
if ((particlePz & (static_cast < int64_t > 1 << (i_bit - lowermostBit))))
258+
substituteP |= static_cast < uint64_t > 1 << i_bit;
259259
}
260260

261261
// dEdx

0 commit comments

Comments
 (0)