Functions | |
| bool | GoodTrack (MIPPTrackSummary *trk) |
| bool DSTUtil::NuMI::GoodTrack | ( | MIPPTrackSummary * | trk | ) |
Definition at line 1866 of file DSTUtil.cxx.
References MIPPTrackSummary::gof, and MIPPTrackSummary::ntpchit.
01867 { 01868 if (trk->gof < 0.0001) return false; 01869 01870 if (trk->ntpchit < 20 || trk->ntpchit > 90) return false; 01871 01872 return true; 01873 }
1.4.7