Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change the default smoother to two-filters smoother #842

Merged
merged 2 commits into from
Feb 5, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading