@@ -142,8 +142,8 @@ struct lambdapolsp {
142142 Configurable<float > ConfDaughEta{" ConfDaughEta" , 0 .8f , " V0 Daugh sel: max eta" };
143143 Configurable<float > cfgDaughPrPt{" cfgDaughPrPt" , 0.4 , " minimum daughter proton pt" };
144144 Configurable<float > cfgDaughPiPt{" cfgDaughPiPt" , 0.2 , " minimum daughter pion pt" };
145- Configurable<float > rcrfc{" rcrfc" , 0 .8f , " Ratio of CR to FC" };
146- Configurable<float > ConfDaughTPCnclsMin{" ConfDaughTPCnclsMin" , 50 .f , " V0 Daugh sel: Min. nCls TPC" };
145+ // Configurable<float> rcrfc{"rcrfc", 0.8f, "Ratio of CR to FC"};
146+ // Configurable<float> ConfDaughTPCnclsMin{"ConfDaughTPCnclsMin", 50.f, "V0 Daugh sel: Min. nCls TPC"};
147147 Configurable<float > ConfDaughPIDCuts{" ConfDaughPIDCuts" , 3 , " PID selections for Lambda daughters" };
148148 Configurable<bool > usesubdet{" usesubdet" , false , " use subdet" };
149149 Configurable<bool > useAccCorr{" useAccCorr" , false , " use acceptance correction" };
@@ -483,12 +483,13 @@ struct lambdapolsp {
483483 /* if (TMath::Abs(eta) > ConfDaughEta) {
484484 return false;
485485 }*/
486+ /*
486487 if (tpcNClsF < ConfDaughTPCnclsMin) {
487488 return false;
488489 }
489490 if (track.tpcCrossedRowsOverFindableCls() < rcrfc) {
490491 return false;
491- }
492+ } */
492493
493494 if (pid == 0 && TMath::Abs (track.tpcNSigmaPr ()) > ConfDaughPIDCuts) {
494495 return false ;
@@ -541,13 +542,14 @@ struct lambdapolsp {
541542 if (posTrackExtra.tpcNClsCrossedRows () < cfgTPCcluster || negTrackExtra.tpcNClsCrossedRows () < cfgTPCcluster) {
542543 return false ;
543544 }
545+ /*
544546 if (posTrackExtra.tpcNClsFound() < ConfDaughTPCnclsMin || negTrackExtra.tpcNClsFound() < ConfDaughTPCnclsMin) {
545547 return false;
546548 }
547549 if (posTrackExtra.tpcCrossedRowsOverFindableCls() < rcrfc || negTrackExtra.tpcCrossedRowsOverFindableCls() < rcrfc) {
548550 return false;
549551 }
550-
552+ */
551553 // check TPC PID
552554 if (pid == 0 && ((std::abs (posTrackExtra.tpcNSigmaPr ()) > ConfDaughPIDCuts) || (std::abs (negTrackExtra.tpcNSigmaPi ()) > ConfDaughPIDCuts))) {
553555 return false ;
@@ -586,13 +588,13 @@ struct lambdapolsp {
586588 // check TPC tracking properties
587589 if (posTrackExtra.tpcNClsCrossedRows () < cfgTPCcluster || negTrackExtra.tpcNClsCrossedRows () < cfgTPCcluster) {
588590 return false ;
589- }
590- if (posTrackExtra.tpcNClsFound () < ConfDaughTPCnclsMin || negTrackExtra.tpcNClsFound () < ConfDaughTPCnclsMin) {
591- return false ;
592- }
593- if (posTrackExtra.tpcCrossedRowsOverFindableCls () < rcrfc || negTrackExtra.tpcCrossedRowsOverFindableCls () < rcrfc) {
594- return false ;
595- }
591+ } /*
592+ if (posTrackExtra.tpcNClsFound() < ConfDaughTPCnclsMin || negTrackExtra.tpcNClsFound() < ConfDaughTPCnclsMin) {
593+ return false;
594+ }
595+ if (posTrackExtra.tpcCrossedRowsOverFindableCls() < rcrfc || negTrackExtra.tpcCrossedRowsOverFindableCls() < rcrfc) {
596+ return false;
597+ } */
596598 // check TPC PID
597599 if (((std::abs (posTrackExtra.tpcNSigmaPi ()) > ConfDaughPIDCuts) || (std::abs (negTrackExtra.tpcNSigmaPi ()) > ConfDaughPIDCuts))) {
598600 return false ;
0 commit comments