Skip to content

Commit 3d476db

Browse files
committed
modify calling function
1 parent 43467e4 commit 3d476db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PWGUD/Tasks/flowCorrelationsUpc.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ struct FlowCorrelationsUpc {
253253

254254
registry.fill(HIST("eventcount"), SameEvent); // because its same event i put it in the 1 bin
255255
fillYield(collision, tracks);
256-
fillCorrelations<CorrelationContainer::kCFStepReconstructed>(tracks, tracks, collision.posZ(), SameEvent, tracks.size()); // fill the SE histogram and Sparse
256+
fillCorrelations<CorrelationContainer::kCFStepReconstructed>(tracks, tracks, collision.posZ(), SameEvent); // fill the SE histogram and Sparse
257257
}
258258
PROCESS_SWITCH(FlowCorrelationsUpc, processSame, "Process same event", true);
259259

@@ -271,7 +271,7 @@ struct FlowCorrelationsUpc {
271271

272272
for (auto const& [collision1, tracks1, collision2, tracks2] : pairs) {
273273
registry.fill(HIST("eventcount"), MixedEvent); // fill the mixed event in the 3 bin
274-
fillCorrelations<CorrelationContainer::kCFStepReconstructed>(tracks1, tracks2, collision1.posZ(), MixedEvent, tracks1.size());
274+
fillCorrelations<CorrelationContainer::kCFStepReconstructed>(tracks1, tracks2, collision1.posZ(), MixedEvent);
275275
}
276276
}
277277
PROCESS_SWITCH(FlowCorrelationsUpc, processMixed, "Process mixed events", true);

0 commit comments

Comments
 (0)