File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
PWGEM/Dilepton/TableProducer Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -201,7 +201,7 @@ struct skimmerPrimaryMFTTrack {
201201 // chi2/ndf MFT < 4
202202 // |dcaXY| < 0.05 cm
203203
204- if (mfttrack.nClusters () < 5 || mfttrack.chi2 () / ndf > 4 .f || std::fabs (dcaXY) > 0.05 ) {
204+ if (mfttrack.nClusters () < 5 || mfttrack.chi2 () / ndf > 4 .f || std::fabs (dcaXY) > 0.06 ) {
205205 return ;
206206 }
207207
@@ -222,6 +222,9 @@ struct skimmerPrimaryMFTTrack {
222222 trackBit |= static_cast <uint16_t >(RefMFTTrackBit::kChi2MFT2 );
223223 }
224224
225+ if (std::fabs (dcaXY) < 0.05 ) {
226+ trackBit |= static_cast <uint16_t >(RefMFTTrackBit::kDCAxy005cm );
227+ }
225228 if (std::fabs (dcaXY) < 0.04 ) {
226229 trackBit |= static_cast <uint16_t >(RefMFTTrackBit::kDCAxy004cm );
227230 }
You can’t perform that action at this time.
0 commit comments