Skip to content

Commit

Permalink
Change the default smoother to two-filters smoother (#842)
Browse files Browse the repository at this point in the history
* Change the default smoother to two-filters smoother

* Use the RTS smoother for drift chamber tests
  • Loading branch information
beomki-yeo authored Feb 5, 2025
1 parent 9ab2654 commit ae79eb3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion core/include/traccc/fitting/fitting_config.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ struct fitting_config {
detray::muon<traccc::scalar>();

/// Smoothing with backward filter
bool use_backward_filter = false;
bool use_backward_filter = true;
traccc::scalar covariance_inflation_factor = 1e3f;
};

Expand Down
1 change: 1 addition & 0 deletions tests/cpu/test_kalman_fitter_wire_chamber.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ TEST_P(KalmanFittingWireChamberTests, Run) {
static_cast<float>(mask_tolerance);
fit_cfg.propagation.navigation.search_window = search_window;
fit_cfg.ptc_hypothesis = ptc;
fit_cfg.use_backward_filter = false;
fit_cfg.covariance_inflation_factor = 1.f;
traccc::host::kalman_fitting_algorithm fitting(fit_cfg, host_mr);

Expand Down

0 comments on commit ae79eb3

Please sign in to comment.