File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 99// granted to it by virtue of its status as an Intergovernmental Organization
1010// or submit itself to any jurisdiction.
1111// /
12- // / \file NucleiTPCPbPb .cxx
12+ // / \file nucleitpcpbpb .cxx
1313// /
1414// / \brief This task use global tracks and used for primary selection analysis using TPC detector.
1515// / It currently contemplates 6 particle types:
@@ -95,7 +95,7 @@ std::vector<std::shared_ptr<TH2>> hNsigmaPt;
9595std::vector<std::shared_ptr<TH2>> hmass;
9696} // namespace
9797// ----------------------------------------------------------------------------------------------------------------
98- struct NucleitpcPbPb {
98+ struct nucleitpcpbpb {
9999 Preslice<aod::TrackAssoc> perCollision = aod::track_association::collisionId;
100100 HistogramRegistry histos{" histos" , {}, OutputObjHandlingPolicy::AnalysisObject};
101101 Configurable<int > cfgDebug{" cfgDebug" , 1 , " debug level" };
@@ -240,7 +240,8 @@ struct NucleitpcPbPb {
240240 continue ;
241241 if (track.tpcNClsFound () < cfgTrackPIDsettings->get (i, " minTPCnCls" ) && cfgTPCNClsfoundRequire)
242242 continue ;
243- if (((track.tpcNClsCrossedRows () < cfgTrackPIDsettings->get (i, " minTPCnClsCrossedRows" )) || track.tpcNClsCrossedRows () < 0.8 * track.tpcNClsFindable ()) && cfgTPCNClsCrossedRowsRequire)
243+ double min_value = 0.8 ;
244+ if (((track.tpcNClsCrossedRows () < cfgTrackPIDsettings->get (i, " minTPCnClsCrossedRows" )) || track.tpcNClsCrossedRows () < min_value * track.tpcNClsFindable ()) && cfgTPCNClsCrossedRowsRequire)
244245 continue ;
245246 if (track.tpcChi2NCl () > cfgTrackPIDsettings->get (i, " maxTPCchi2" ) && cfgmaxTPCchi2Require)
246247 continue ;
You can’t perform that action at this time.
0 commit comments