3737#include < Framework/runDataProcessing.h>
3838
3939// Event selection: Only events that contain track above some threshold
40- //
40+ //
4141// -------------------------------------------------------------------------------------------
4242// TRACK DATA
4343// -------------------------------------------------------------------------------------------
@@ -178,7 +178,7 @@ struct TableDiffWake {
178178 // ------- Only events with track above some thresh ----------
179179
180180 bool eventHighpT = false ;
181- for (auto const & track : tracks) {
181+ for (auto const & track : tracks) {
182182
183183 if (!track.isGlobalTrack ())
184184 continue ;
@@ -206,7 +206,7 @@ struct TableDiffWake {
206206 substituteEp2,
207207 substituteEp3);
208208
209- for (auto const & track : tracks) {
209+ for (auto const & track : tracks) {
210210
211211 // Track cut
212212 if (!track.isGlobalTrack ())
@@ -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