Skip to content

Commit

Permalink
Decrease cut on min number of hits only in RKFittingSmoother
Browse files Browse the repository at this point in the history
  • Loading branch information
mmasciov committed Oct 4, 2022
1 parent 0a8e500 commit ca47429
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Expand Up @@ -65,7 +65,7 @@ namespace {
desc.add<int>("MaxNumberOfOutliers", 3);
desc.add<int>("MinDof", 2);
desc.add<bool>("NoOutliersBeginEnd", false);
desc.add<int>("MinNumberOfHits", 3);
desc.add<int>("MinNumberOfHits", 5);
desc.add<int>("MinNumberOfHitsHighEta", 5);
desc.add<double>("HighEtaSwitch", 5.0);
desc.add<bool>("RejectTracks", true);
Expand Down
3 changes: 2 additions & 1 deletion TrackingTools/TrackFitters/python/RungeKuttaFitters_cff.py
Expand Up @@ -16,7 +16,8 @@
RKFittingSmoother = TrackingTools.TrackFitters.KFFittingSmoother_cfi.KFFittingSmoother.clone(
ComponentName = 'RKFittingSmoother',
Fitter = 'RKFitter',
Smoother = 'RKSmoother'
Smoother = 'RKSmoother',
MinNumberOfHits = 3
)

KFFittingSmootherWithOutliersRejectionAndRK = RKFittingSmoother.clone(
Expand Down

0 comments on commit ca47429

Please sign in to comment.