File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -120,6 +120,7 @@ struct AntinucleiInJets {
120120 Configurable<bool > applyItsPid{" applyItsPid" , true , " apply ITS PID" };
121121 Configurable<int > minItsNclusters{" minItsNclusters" , 5 , " minimum number of ITS clusters" };
122122 Configurable<int > minTpcNcrossedRows{" minTpcNcrossedRows" , 100 , " minimum number of TPC crossed pad rows" };
123+ Configurable<double > minChiSquareTpc{" minChiSquareTpc" , 0.0 , " minimum TPC chi^2/Ncls" };
123124 Configurable<double > maxChiSquareTpc{" maxChiSquareTpc" , 4.0 , " maximum TPC chi^2/Ncls" };
124125 Configurable<double > maxChiSquareIts{" maxChiSquareIts" , 36.0 , " maximum ITS chi^2/Ncls" };
125126 Configurable<double > minPt{" minPt" , 0.3 , " minimum pt of the tracks" };
@@ -565,6 +566,8 @@ struct AntinucleiInJets {
565566 return false ;
566567 if (track.tpcNClsCrossedRows () < minTpcNcrossedRows)
567568 return false ;
569+ if (track.tpcChi2NCl () < minChiSquareTpc)
570+ return false ;
568571 if (track.tpcChi2NCl () > maxChiSquareTpc)
569572 return false ;
570573 if (track.itsChi2NCl () > maxChiSquareIts)
You can’t perform that action at this time.
0 commit comments