File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -837,7 +837,7 @@ struct Derivedcascadeanalysis {
837837 }
838838 }
839839
840- if (posExtra.tpcCrossedRows () < candidateSelectionValues.mintpccrrows || negExtra.tpcCrossedRows () < candidateSelectionValues.mintpccrrows || bachExtra.tpcCrossedRows () < candidateSelectionValues.mintpccrrows )
840+ if (std::abs ( posExtra.tpcCrossedRows ()) < candidateSelectionValues.mintpccrrows || std::abs ( negExtra.tpcCrossedRows ()) < candidateSelectionValues.mintpccrrows || std::abs ( bachExtra.tpcCrossedRows () ) < candidateSelectionValues.mintpccrrows )
841841 continue ;
842842 histos.fill (HIST (" hCandidate" ), ++counter);
843843
@@ -859,7 +859,7 @@ struct Derivedcascadeanalysis {
859859 float cascptotmom = std::hypot (casc.px (), casc.py (), casc.pz ());
860860 float ctau = -10 ;
861861
862- cut = ctau ;
862+ cut = candidateSelectionValues. proplifetime ;
863863 histos.fill (HIST (" hCutValue" ), 21 , cut);
864864
865865 if (posExtra.hasTOF ()) {
@@ -1129,7 +1129,7 @@ struct Derivedcascadeanalysis {
11291129 }
11301130 }
11311131
1132- if (posExtra.tpcCrossedRows () < candidateSelectionValues.mintpccrrows || negExtra.tpcCrossedRows () < candidateSelectionValues.mintpccrrows || bachExtra.tpcCrossedRows () < candidateSelectionValues.mintpccrrows )
1132+ if (std::abs ( posExtra.tpcCrossedRows ()) < candidateSelectionValues.mintpccrrows || std::abs ( negExtra.tpcCrossedRows ()) < candidateSelectionValues.mintpccrrows || std::abs ( bachExtra.tpcCrossedRows () ) < candidateSelectionValues.mintpccrrows )
11331133 continue ;
11341134 histos.fill (HIST (" hCandidate" ), ++counter);
11351135
You can’t perform that action at this time.
0 commit comments