Skip to content

Commit b2023bd

Browse files
committed
remove unused parameter
1 parent 1f5ce61 commit b2023bd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

PWGCF/TwoParticleCorrelations/Tasks/longRangeDihadronCor.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -600,7 +600,7 @@ struct LongRangeDihadronCor {
600600
}
601601

602602
template <CorrelationContainer::CFStep step, typename TFT0s>
603-
void fillCorrelationsFT0AFT0C(TFT0s const& ft0, float posZ, int system, float cent, float eventWeight) // function to fill the Output functions (sparse) and the delta eta and delta phi histograms
603+
void fillCorrelationsFT0AFT0C(TFT0s const& ft0, float posZ, int system, float eventWeight) // function to fill the Output functions (sparse) and the delta eta and delta phi histograms
604604
{
605605
int fSampleIndex = gRandom->Uniform(0, cfgSampleSize);
606606

@@ -973,7 +973,7 @@ struct LongRangeDihadronCor {
973973

974974
sameFt0aFt0c->fillEvent(tracks.size(), CorrelationContainer::kCFStepReconstructed);
975975
const auto& ft0 = collision.foundFT0();
976-
fillCorrelationsFT0AFT0C<CorrelationContainer::kCFStepReconstructed>(ft0, collision.posZ(), SameEvent, cent, weightCent);
976+
fillCorrelationsFT0AFT0C<CorrelationContainer::kCFStepReconstructed>(ft0, collision.posZ(), SameEvent, weightCent);
977977
}
978978
PROCESS_SWITCH(LongRangeDihadronCor, processSameFt0aFt0c, "Process same event for FT0A-FT0C correlation", false);
979979

@@ -1032,7 +1032,7 @@ struct LongRangeDihadronCor {
10321032
if (!cfgCentTableUnavailable)
10331033
getCentralityWeight(weightCent, cent1);
10341034
const auto& ft0 = collision2.foundFT0();
1035-
fillCorrelationsFT0AFT0C<CorrelationContainer::kCFStepReconstructed>(ft0, collision1.posZ(), MixedEvent, cent1, eventWeight * weightCent);
1035+
fillCorrelationsFT0AFT0C<CorrelationContainer::kCFStepReconstructed>(ft0, collision1.posZ(), MixedEvent, eventWeight * weightCent);
10361036
}
10371037
}
10381038
PROCESS_SWITCH(LongRangeDihadronCor, processMixedFt0aFt0c, "Process mixed events for FT0A-FT0C correlation", false);

0 commit comments

Comments
 (0)