@@ -1457,7 +1457,7 @@ struct HfTrackIndexSkimCreator {
14571457 Configurable<LabeledArray<double >> cutsDstarToD0Pi{" cutsDstarToD0Pi" , {hf_cuts_presel_dstar::Cuts[0 ], hf_cuts_presel_dstar::NBinsPt, hf_cuts_presel_dstar::NCutVars, hf_cuts_presel_dstar::labelsPt, hf_cuts_presel_dstar::labelsCutVar}, " D*+->D0pi selections per pT bin" };
14581458
14591459 // Species-differential track min pT selection for 3-prong candidates
1460- Configurable<LabeledArray<float >> ptProngMin3Prong{" ptProngMin3Prong" , {hf_cuts_presel_3prong::ptProngMin[0 ], hf_cuts_presel_3prong::NSpecies, 1 , hf_cuts_presel_3prong::labelsPtProngMin , hf_cuts_presel_3prong::labelsMinPt }, " Min pT selection for prongs of 3-prong candidates in GeV/c" };
1460+ Configurable<LabeledArray<float >> ptProngMin3Prong{" ptProngMin3Prong" , {hf_cuts_presel_3prong::ptProngMin[0 ], hf_cuts_presel_3prong::NSpecies, 1 , hf_cuts_presel_3prong::labelsSpecies , hf_cuts_presel_3prong::labelsPtProngMin }, " Min pT selection for prongs of 3-prong candidates in GeV/c" };
14611461
14621462 // proton PID selections for Lc and Xic
14631463 Configurable<bool > applyProtonPidForLcToPKPi{" applyProtonPidForLcToPKPi" , false , " Apply proton PID for Lc->pKpi" };
@@ -1892,7 +1892,7 @@ struct HfTrackIndexSkimCreator {
18921892 }
18931893
18941894 // invariant mass
1895- if (( config.debug || TESTBIT (isSelected, iDecay3P) )) {
1895+ if (config.debug || TESTBIT (isSelected, iDecay3P)) {
18961896 const double minMass = cut3Prong[iDecay3P].get (binPt, 0u );
18971897 const double maxMass = cut3Prong[iDecay3P].get (binPt, 1u );
18981898 if (minMass >= 0 . && maxMass > 0 .) { // no need to check isSelected but to avoid mistakes
@@ -2032,7 +2032,7 @@ struct HfTrackIndexSkimCreator {
20322032 }
20332033
20342034 // decay length
2035- if (( config.debug || TESTBIT (isSelected, iDecay3P) )) {
2035+ if (config.debug || TESTBIT (isSelected, iDecay3P)) {
20362036 const auto decayLength = RecoDecay::distance (primVtx, secVtx);
20372037 if (decayLength < cut3Prong[iDecay3P].get (binPt, 3u )) { // 3u == decLenIndex[iDecay3P]
20382038 CLRBIT (isSelected, iDecay3P);
@@ -2043,7 +2043,7 @@ struct HfTrackIndexSkimCreator {
20432043 }
20442044
20452045 // prong daughter pT
2046- if (( config.debug || TESTBIT (isSelected, iDecay3P) )) {
2046+ if (config.debug || TESTBIT (isSelected, iDecay3P)) {
20472047 const auto ptProngMin = config.ptProngMin3Prong ->get (iDecay3P);
20482048 if (ptProngs[0 ] < ptProngMin || ptProngs[1 ] < ptProngMin || ptProngs[2 ] < ptProngMin) {
20492049 CLRBIT (isSelected, iDecay3P);
0 commit comments