File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Common/DCAFitter/include/DCAFitter Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -142,6 +142,8 @@ class DCAFitterN
142142 FailInv2ndDeriv, // inversion of 2nd derivatives failed
143143 FailCorrTracks, // correction of tracks to updated x failed
144144 FailCloserAlt, // alternative PCA is closer
145+ //
146+ NStatusesDefined
145147 };
146148
147149 static constexpr int getNProngs () { return N; }
@@ -989,7 +991,7 @@ GPUd() bool DCAFitterN<N, Args...>::minimizeChi2()
989991 }
990992
991993 if (mMaxDZIni > 0 && !roughDZCut ()) { // apply rough cut on tracks Z difference
992- mFitStatus [mCurHyp ] = FitStatus::RejTrackX ;
994+ mFitStatus [mCurHyp ] = FitStatus::RejTrackRoughZ ;
993995 return false ;
994996 }
995997
@@ -1063,7 +1065,7 @@ GPUd() bool DCAFitterN<N, Args...>::minimizeChi2NoErr()
10631065 setTrackPos (mTrPos [mCurHyp ][i], mCandTr [mCurHyp ][i]); // prepare positions
10641066 }
10651067 if (mMaxDZIni > 0 && !roughDZCut ()) { // apply rough cut on tracks Z difference
1066- mFitStatus [mCurHyp ] = FitStatus::RejTrackX ;
1068+ mFitStatus [mCurHyp ] = FitStatus::RejTrackRoughZ ;
10671069 return false ;
10681070 }
10691071
You can’t perform that action at this time.
0 commit comments