|
37 | 37 | #include <Framework/runDataProcessing.h> |
38 | 38 |
|
39 | 39 | // Event selection: Only events that contain track above some threshold |
40 | | -// |
| 40 | +// |
41 | 41 | // ------------------------------------------------------------------------------------------- |
42 | 42 | // TRACK DATA |
43 | 43 | // ------------------------------------------------------------------------------------------- |
@@ -226,36 +226,36 @@ struct TableDiffWake { |
226 | 226 |
|
227 | 227 | int64_t particlePx = (track.px() * 6000); |
228 | 228 | if (particlePx < 0) |
229 | | - substituteP |= static_cast<uint64_t>1 << uppermostBit; |
| 229 | + substituteP |= static_cast < uint64_t > 1 << uppermostBit; |
230 | 230 | if (particlePx < 0) |
231 | 231 | particlePx = (-1) * particlePx; |
232 | 232 | 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; |
235 | 235 | } |
236 | 236 |
|
237 | 237 | uppermostBit = 41; |
238 | 238 | lowermostBit = 21; |
239 | 239 | int64_t particlePy = (track.py() * 6000); |
240 | 240 | if (particlePy < 0) |
241 | | - substituteP |= static_cast<uint64_t>1 << uppermostBit; |
| 241 | + substituteP |= static_cast < uint64_t > 1 << uppermostBit; |
242 | 242 | if (particlePy < 0) |
243 | 243 | particlePy = (-1) * particlePy; |
244 | 244 | 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; |
247 | 247 | } |
248 | 248 |
|
249 | 249 | uppermostBit = 62; |
250 | 250 | lowermostBit = 42; |
251 | 251 | int64_t particlePz = (track.pz() * 6000); |
252 | 252 | if (particlePz < 0) |
253 | | - substituteP |= static_cast<uint64_t>1 << uppermostBit; |
| 253 | + substituteP |= static_cast < uint64_t > 1 << uppermostBit; |
254 | 254 | if (particlePz < 0) |
255 | 255 | particlePz = (-1) * particlePz; |
256 | 256 | 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; |
259 | 259 | } |
260 | 260 |
|
261 | 261 | // dEdx |
|
0 commit comments