@@ -128,7 +128,7 @@ struct LambdaJetpolarization {
128128 Configurable<bool > requireTPC{" requireTPC" , true , " require TPC hit" };
129129 Configurable<float > yMin{" yMin" , -0 .5f , " minimum y" };
130130 Configurable<float > yMCcut{" yMCcut" , +0 .5f , " maximum y" };
131- Configurable<float > v0rejLambda{" v0rejLambda" , 0.00 , " V0 rej Lambda" };
131+ Configurable<float > v0rejLambda{" v0rejLambda" , 0.01 , " V0 rej Lambda" };
132132 Configurable<float > v0accLambda{" v0accLambda" , 0.075 , " V0 acc Lambda" };
133133 Configurable<bool > ifinitpasslambda{" ifinitpasslambda" , 0 , " ifinitpasslambda" };
134134 Configurable<bool > ifpasslambda{" ifpasslambda" , 1 , " ifpasslambda" };
@@ -2372,7 +2372,7 @@ struct LambdaJetpolarization {
23722372 registryData.fill (HIST (" MC/hMassVsPtAntiLambdaVsCentFT0M_MC" ), v0.pt (), mcCollision.centFT0M (), v0.mAntiLambda ());
23732373 }
23742374
2375- } else if (std::abs (v0.mLambda () - o2::constants::physics::MassLambda0) < 0.01 ) {
2375+ } else if (std::abs (v0.mLambda () - o2::constants::physics::MassLambda0) < v0rejLambda ) {
23762376 if (pdgMother == pdgXiMinus) {
23772377 registryData.fill (HIST (" MC/hFDVsPtLambdaVsMotherPt_DoubleCharged_MC" ), v0.pt (), ptMotherMC, mcCollision.centFT0M ());
23782378 }
@@ -2397,7 +2397,7 @@ struct LambdaJetpolarization {
23972397 continue ;
23982398 }
23992399 auto v0mcparticle = v0.mcParticle ();
2400- if (std::abs (v0mcparticle.y ()) > 0 . 5f ) {
2400+ if (std::abs (v0mcparticle.y ()) > yMCcut ) {
24012401 continue ;
24022402 }
24032403 if (v0.v0Type () != v0TypeSelection) {
@@ -2490,7 +2490,7 @@ struct LambdaJetpolarization {
24902490 continue ;
24912491 }
24922492
2493- } else if (std::abs (v0.mLambda () - o2::constants::physics::MassLambda0) < 0.01 ) {
2493+ } else if (std::abs (v0.mLambda () - o2::constants::physics::MassLambda0) < v0rejLambda ) {
24942494 if (pdgMother == pdgXiMinus) {
24952495 continue ;
24962496 }
@@ -2558,7 +2558,7 @@ struct LambdaJetpolarizationMCcount {
25582558 return ;
25592559 }
25602560 registry.fill (HIST (" hEventSelection" ), 1.5 );
2561- if (eventPosZselection && abs (mcCollision.posZ ()) > 10 . f ) {
2561+ if (eventPosZselection && abs (mcCollision.posZ ()) > zVtx ) {
25622562 return ;
25632563 }
25642564 registry.fill (HIST (" hEventSelection" ), 2.5 );
0 commit comments