@@ -242,7 +242,7 @@ struct PhiStrangenessCorrelation {
242242 Configurable<bool > selectPionInSigRegion{" selectPionInSigRegion" , true , " Select Pion candidates in signal region" };
243243 Configurable<float > pidTPCMax{" pidTPCMax" , 2 .0f , " Maximum nSigma TPC" };
244244 Configurable<float > pidTOFMax{" pidTOFMax" , 2 .0f , " Maximum nSigma TOF" };
245- Configurable<float > tofPIDThreshold{" tofPIDThreshold" , 0 .5f , " Minimum pT after which TOF PID is applicable" };
245+ // Configurable<float> tofPIDThreshold{"tofPIDThreshold", 0.5f, "Minimum pT after which TOF PID is applicable"};
246246 } pionConfigs;
247247
248248 // Configurables on phi pT bins
@@ -515,10 +515,10 @@ struct PhiStrangenessCorrelation {
515515 const bool applyPionNSigmaCut = (analysisMode == kDeltaYvsDeltaPhi ) && pionConfigs.selectPionInSigRegion ;
516516 const float & pidTPCMax = pionConfigs.pidTPCMax ;
517517 const float & pidTOFMax = pionConfigs.pidTOFMax ;
518- const float & tofPIDThreshold = pionConfigs.tofPIDThreshold ;
518+ // const float& tofPIDThreshold = pionConfigs.tofPIDThreshold;
519519
520520 auto isPionValid = [&](const auto & pion) {
521- return (!applyEfficiency || pion.pt () <= binspTPi->back ()) && (!applyPionNSigmaCut || pion.inNSigmaRegion (pidTPCMax, tofPIDThreshold, pidTOFMax));
521+ return (!applyEfficiency || pion.pt () <= binspTPi->back ()) && (!applyPionNSigmaCut || pion.inNSigmaRegion (pidTPCMax, pidTOFMax));
522522 };
523523
524524 for (const auto & phiCand : phiCandidates) {
@@ -741,10 +741,10 @@ struct PhiStrangenessCorrelation {
741741 const bool applyPionNSigmaCut = (analysisMode == kDeltaYvsDeltaPhi ) && pionConfigs.selectPionInSigRegion ;
742742 const float & pidTPCMax = pionConfigs.pidTPCMax ;
743743 const float & pidTOFMax = pionConfigs.pidTOFMax ;
744- const float & tofPIDThreshold = pionConfigs.tofPIDThreshold ;
744+ // const float& tofPIDThreshold = pionConfigs.tofPIDThreshold;
745745
746746 auto isPionValid = [&](const auto & pion) {
747- return (!applyEfficiency || pion.pt () <= binspTPi->back ()) && (!applyPionNSigmaCut || pion.inNSigmaRegion (pidTPCMax, tofPIDThreshold, pidTOFMax));
747+ return (!applyEfficiency || pion.pt () <= binspTPi->back ()) && (!applyPionNSigmaCut || pion.inNSigmaRegion (pidTPCMax, pidTOFMax));
748748 };
749749
750750 auto tuplePhiPion = std::make_tuple (phiCandidates, pionTracks);
@@ -835,10 +835,10 @@ struct PhiStrangenessCorrelation {
835835 const bool applyPionNSigmaCut = (analysisMode == kDeltaYvsDeltaPhi ) && pionConfigs.selectPionInSigRegion ;
836836 const float & pidTPCMax = pionConfigs.pidTPCMax ;
837837 const float & pidTOFMax = pionConfigs.pidTOFMax ;
838- const float & tofPIDThreshold = pionConfigs.tofPIDThreshold ;
838+ // const float& tofPIDThreshold = pionConfigs.tofPIDThreshold;
839839
840840 auto isPionValid = [&](const auto & pion) {
841- return !applyPionNSigmaCut || pion.inNSigmaRegion (pidTPCMax, tofPIDThreshold, pidTOFMax);
841+ return !applyPionNSigmaCut || pion.inNSigmaRegion (pidTPCMax, pidTOFMax);
842842 };
843843
844844 std::unordered_map<int , std::vector<int >> collsGrouped;
0 commit comments