@@ -1431,8 +1431,6 @@ struct AnalysisSameEventPairing {
14311431
14321432 HistogramManager* fHistMan = nullptr ;
14331433 MixingHandler fMixingHandler ;
1434- // dataframe counter, part of the track identity in the mixing pools
1435- uint64_t fMixingDataFrameSequence = 0 ;
14361434
14371435 o2::analysis::DQMlResponse<float > fDQMlResponse ;
14381436 std::vector<float > fOutputMlPsi2ee ; // TODO: check this is needed or not
@@ -1994,10 +1992,6 @@ struct AnalysisSameEventPairing {
19941992 // constexpr bool fillFlowReso = eventHasQvector || eventHasQvectorCentr;
19951993 bool isSelectedBDT = false ;
19961994 fNPairPerEvent = 0 ;
1997- uint64_t currentMixingDataFrameSequence = 0 ;
1998- if (fConfigRunMixingAcrossTFs ) {
1999- currentMixingDataFrameSequence = ++fMixingDataFrameSequence ;
2000- }
20011995
20021996 for (auto const & event : events) {
20031997 if (!event.isEventSelected_bit (0 )) {
@@ -2512,7 +2506,7 @@ struct AnalysisSameEventPairing {
25122506 continue ;
25132507 }
25142508 auto t1 = assoc.template reducedtrack_as <TTracks>();
2515- MixingHandler::MixingTrack mixingTrack (t1.pt (), t1.eta (), t1.phi (), trackFilterForMixing, currentMixingDataFrameSequence, static_cast < uint64_t >(assoc. reducedtrackId ()), static_cast < int8_t >(t1. sign ()) );
2509+ MixingHandler::MixingTrack mixingTrack (t1.pt (), t1.eta (), t1.phi (), trackFilterForMixing);
25162510 if (t1.sign () > 0 ) {
25172511 mixingEvent.AddTrack1 (mixingTrack);
25182512 } else {
@@ -2543,9 +2537,9 @@ struct AnalysisSameEventPairing {
25432537 }
25442538 // run ++ pairing
25452539 for (auto const & t2 : poolEvent.tracks1 ) {
2546- // check the two-track filter for the mixed pair and skip the same track associated to both collisions
2540+ // check the two-track filter for the mixed pair
25472541 uint32_t mixedTwoTrackFilter = t1.filteringFlags & t2.filteringFlags ;
2548- if (!mixedTwoTrackFilter || t1. IsSamePhysicalTrack (t2) ) {
2542+ if (!mixedTwoTrackFilter) {
25492543 continue ;
25502544 }
25512545 VarManager::FillPairMEAcrossTFs (t1, t2);
@@ -2573,9 +2567,9 @@ struct AnalysisSameEventPairing {
25732567 }
25742568 // run -- pairing
25752569 for (auto const & t2 : poolEvent.tracks2 ) {
2576- // check the two-track filter for the mixed pair and skip the same track associated to both collisions
2570+ // check the two-track filter for the mixed pair
25772571 uint32_t mixedTwoTrackFilter = t1.filteringFlags & t2.filteringFlags ;
2578- if (!mixedTwoTrackFilter || t1. IsSamePhysicalTrack (t2) ) {
2572+ if (!mixedTwoTrackFilter) {
25792573 continue ;
25802574 }
25812575 VarManager::FillPairMEAcrossTFs (t1, t2);
0 commit comments