@@ -413,13 +413,11 @@ struct Filter2Prong {
413413 PROCESS_SWITCH (Filter2Prong, processDataInvMass, " Process data generic 2-prong candidates with invariant mass method" , false );
414414
415415 // Phi and V0s invariant mass method candidate finder. Only works for non-identical daughters of opposite charge for now.
416- void processDataV0 (aod::Collisions::iterator const & collision, aod::BCsWithTimestamps const &, aod::CFCollRefs const & cfcollisions, aod::CFTrackRefs const & cftracks, Filter2Prong::PIDTrack const & tracks , aod::V0Datas const & V0s)
416+ void processDataV0 (aod::Collisions::iterator const & collision, aod::BCsWithTimestamps const &, aod::CFCollRefs const & cfcollisions, aod::CFTrackRefs const & cftracks, Filter2Prong::PIDTrack const &, aod::V0Datas const & V0s)
417417 {
418418 if (cfcollisions.size () <= 0 || cftracks.size () <= 0 )
419419 return ; // rejected collision
420420
421- o2::aod::ITSResponse itsResponse;
422-
423421 for (const auto & v0 : V0s) { // Loop over V0 candidates
424422 if (!isV0TrackSelected (v0)) { // Quality selection for V0 prongs
425423 continue ;
@@ -456,7 +454,7 @@ struct Filter2Prong {
456454 PROCESS_SWITCH (Filter2Prong, processDataV0, " Process data V0 candidates with invariant mass method" , false );
457455
458456 // Phi and V0s invariant mass method candidate finder. Only works for non-identical daughters of opposite charge for now.
459- void processDataPhi (aod::Collisions::iterator const & collision , aod::BCsWithTimestamps const &, aod::CFCollRefs const & cfcollisions, aod::CFTrackRefs const & cftracks, Filter2Prong::PIDTrack const & tracks)
457+ void processDataPhi (aod::Collisions::iterator const &, aod::BCsWithTimestamps const &, aod::CFCollRefs const & cfcollisions, aod::CFTrackRefs const & cftracks, Filter2Prong::PIDTrack const & tracks)
460458 {
461459 if (cfcollisions.size () <= 0 || cftracks.size () <= 0 )
462460 return ; // rejected collision
0 commit comments