diff --git a/Analysis/Tasks/PWGLF/cascadefinder.cxx b/Analysis/Tasks/PWGLF/cascadefinder.cxx index 6b23254efb01a..150aa0780ac0d 100644 --- a/Analysis/Tasks/PWGLF/cascadefinder.cxx +++ b/Analysis/Tasks/PWGLF/cascadefinder.cxx @@ -120,7 +120,7 @@ struct cascadeprefilter { aod::V0DataExt const& V0s) { for (auto& t0 : goodPosTracks) { - if (!(t0.flags() & 0x40)) { + if (!(t0.trackType() & o2::aod::track::TPCrefit)) { continue; //TPC refit } if (t0.tpcNClsCrossedRows() < mincrossedrows) { @@ -129,7 +129,7 @@ struct cascadeprefilter { cascGoodPosTracks(t0.globalIndex(), t0.collisionId(), t0.dcaXY()); } for (auto& t0 : goodNegTracks) { - if (!(t0.flags() & 0x40)) { + if (!(t0.trackType() & o2::aod::track::TPCrefit)) { continue; //TPC refit } if (t0.tpcNClsCrossedRows() < mincrossedrows) { diff --git a/Analysis/Tasks/PWGLF/lambdakzerofinder.cxx b/Analysis/Tasks/PWGLF/lambdakzerofinder.cxx index ffc5cd1f14f5f..00ab268fd1828 100644 --- a/Analysis/Tasks/PWGLF/lambdakzerofinder.cxx +++ b/Analysis/Tasks/PWGLF/lambdakzerofinder.cxx @@ -93,7 +93,7 @@ struct lambdakzeroprefilter { soa::Join const& tracks) { for (auto& t0 : goodPosTracks) { - if (!(t0.flags() & 0x40)) { + if (!(t0.trackType() & o2::aod::track::TPCrefit)) { continue; //TPC refit } if (t0.tpcNClsCrossedRows() < mincrossedrows) { @@ -102,7 +102,7 @@ struct lambdakzeroprefilter { v0GoodPosTracks(t0.globalIndex(), t0.collisionId(), t0.dcaXY()); } for (auto& t0 : goodNegTracks) { - if (!(t0.flags() & 0x40)) { + if (!(t0.trackType() & o2::aod::track::TPCrefit)) { continue; //TPC refit } if (t0.tpcNClsCrossedRows() < mincrossedrows) { diff --git a/Analysis/Tasks/multiplicityQa.cxx b/Analysis/Tasks/multiplicityQa.cxx index ecffbf3077d8e..9a305a7443906 100644 --- a/Analysis/Tasks/multiplicityQa.cxx +++ b/Analysis/Tasks/multiplicityQa.cxx @@ -35,10 +35,10 @@ struct MultiplicityQaTask { OutputObj hMultV0MvsT0M{TH2F("hMultV0MvsT0M", ";V0M;T0M", 200, 0., 50000., 200, 0., 200000.)}; //For vertex-Z corrections - OutputObj hVtxProfV0M{TProfile("hVtxProfV0M", "", 600, 0., 240000.)}; - OutputObj hVtxProfT0M{TProfile("hVtxProfT0M", "", 10000, 0., 200000.)}; - OutputObj hVtxProfZNA{TProfile("hVtxProfZNA", "", 600, 0., 240000.)}; - OutputObj hVtxProfZNC{TProfile("hVtxProfZNC", "", 600, 0., 240000.)}; + OutputObj hVtxProfV0M{TProfile("hVtxProfV0M", "", 150, -15, 15)}; + OutputObj hVtxProfT0M{TProfile("hVtxProfT0M", "", 150, -15, 15)}; + OutputObj hVtxProfZNA{TProfile("hVtxProfZNA", "", 150, -15, 15)}; + OutputObj hVtxProfZNC{TProfile("hVtxProfZNC", "", 150, -15, 15)}; OutputObj hMultNtrackletsVsV0M{TProfile("hMultNtrackletsVsV0M", "", 50000, 0., 50000.)};