@@ -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