Skip to content

Commit 3f6173e

Browse files
committed
Disable combinatorics in CKF by default
Turns out that for our ODD-tuned default parameters, we can now get away with non-combinatorial Kálmán filtering. This commit disables the combinatorics and increases the $\chi^2$ cut to compensate.
1 parent 1c85202 commit 3f6173e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/include/traccc/finding/finding_config.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ struct finding_config {
2323
unsigned int max_num_branches_per_seed = 10;
2424

2525
/// Maximum number of branches per surface
26-
unsigned int max_num_branches_per_surface = 2;
26+
unsigned int max_num_branches_per_surface = 1;
2727

2828
/// Min/Max number of track candidates per track
2929
unsigned int min_track_candidates_per_track = 3;
@@ -40,7 +40,7 @@ struct finding_config {
4040
unsigned int max_step_counts_for_next_surface = 100;
4141

4242
/// Maximum Chi-square that is allowed for branching
43-
float chi2_max = 10.f;
43+
float chi2_max = 100.f;
4444

4545
/// Propagation configuration
4646
detray::propagation::config propagation{};

0 commit comments

Comments
 (0)