Skip to content

Commit 6bf3f96

Browse files
authored
Fixing build error
1 parent 6f9fd3a commit 6bf3f96

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

PWGCF/FemtoUniverse/Tasks/femtoUniversePairTaskTrackTrackSpherHarMultKtExtended.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -652,7 +652,7 @@ struct femtoUniversePairTaskTrackTrackSpherHarMultKtExtended {
652652
/// \param parts femtoUniverseParticles table (in case of Monte Carlo joined with FemtoUniverseMCLabels)
653653
/// \param magFieldTesla magnetic field of the collision
654654
/// \param multCol multiplicity of the collision
655-
template <bool isMC, typename PartitionType, typename PartType>
655+
template <bool isMC, typename PartitionType>
656656
void doMixedEvent(PartitionType groupPartsOne, PartitionType groupPartsTwo, float magFieldTesla, int multCol, int ContType)
657657
{
658658

@@ -748,17 +748,17 @@ struct femtoUniversePairTaskTrackTrackSpherHarMultKtExtended {
748748
if (cfgProcessPM) {
749749
auto groupPartsOne = partsOne->sliceByCached(aod::femtouniverseparticle::fdCollisionId, collision1.globalIndex(), cache);
750750
auto groupPartsTwo = partsTwo->sliceByCached(aod::femtouniverseparticle::fdCollisionId, collision2.globalIndex(), cache);
751-
doMixedEvent<false>(groupPartsOne, groupPartsTwo, , magFieldTesla1, multiplicityCol, 1);
751+
doMixedEvent<false>(groupPartsOne, groupPartsTwo, magFieldTesla1, multiplicityCol, 1);
752752
}
753753
if (cfgProcessPP) {
754754
auto groupPartsOne = partsOne->sliceByCached(aod::femtouniverseparticle::fdCollisionId, collision1.globalIndex(), cache);
755755
auto groupPartsTwo = partsOne->sliceByCached(aod::femtouniverseparticle::fdCollisionId, collision2.globalIndex(), cache);
756-
doMixedEvent<false>(groupPartsOne, groupPartsTwo, , magFieldTesla1, multiplicityCol, 2);
756+
doMixedEvent<false>(groupPartsOne, groupPartsTwo, magFieldTesla1, multiplicityCol, 2);
757757
}
758758
if (cfgProcessMM) {
759759
auto groupPartsOne = partsTwo->sliceByCached(aod::femtouniverseparticle::fdCollisionId, collision1.globalIndex(), cache);
760760
auto groupPartsTwo = partsTwo->sliceByCached(aod::femtouniverseparticle::fdCollisionId, collision2.globalIndex(), cache);
761-
doMixedEvent<false>(groupPartsOne, groupPartsTwo, , magFieldTesla1, multiplicityCol, 3);
761+
doMixedEvent<false>(groupPartsOne, groupPartsTwo, magFieldTesla1, multiplicityCol, 3);
762762
}
763763
}
764764
delete randgen;

0 commit comments

Comments
 (0)