Skip to content

Commit 9a14a29

Browse files
committed
Fix: fix data type
1 parent 7486cf2 commit 9a14a29

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

PWGCF/Femto/Core/pairProcessHelpers.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ void processMixedEvent(T1 const& Collisions,
304304
T9& CprManager,
305305
T10& PcManager)
306306
{
307-
int lastCollisionIndex = -1;
307+
int64_t lastCollisionIndex = -1;
308308
int windowSizeRaw = 0;
309309
int windowSizeEffective = 0;
310310

@@ -411,7 +411,7 @@ void processMixedEvent(T1 const& Collisions,
411411
T15& CprManager,
412412
T16& PcManager)
413413
{
414-
int lastCollisionIndex = -1;
414+
int64_t lastCollisionIndex = -1;
415415
int windowSizeRaw = 0;
416416
int windowSizeEffective = 0;
417417

0 commit comments

Comments
 (0)