Skip to content

Commit ca788fe

Browse files
ginnocenshahor02
authored andcommitted
reject tracks with very large IP from primary at preselection stage
1 parent 9a841ed commit ca788fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Analysis/Tasks/PWGHF/HFTrackIndexSkimsCreator.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ struct SelectTracks {
5454
status = 0;
5555
array<float, 2> dca;
5656
auto trackparvar0 = getTrackParCov(track);
57-
trackparvar0.propagateParamToDCA(vtxXYZ, d_bz, &dca); // get impact parameters
57+
trackparvar0.propagateParamToDCA(vtxXYZ, d_bz, &dca, 100.); // get impact parameters
5858
if (abs(dca[0]) < dcatoprimxymin)
5959
status = 0;
6060
if (b_dovalplots) {

0 commit comments

Comments
 (0)