Skip to content

Commit 4092819

Browse files
committed
Shrink ODD seeding delta-r cut
The delta-r cut we have currently is set to 280mm, which is insanely huge; this commit reduces this cut to 80mm which is more in line with the ODD geometry.
1 parent 36f8a7e commit 4092819

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/include/traccc/seeding/detail/seeding_config.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ struct seedfinder_config {
4343
// minimum distance in mm in r between two measurements within one seed
4444
float deltaRMin = 20 * unit<float>::mm;
4545
// maximum distance in mm in r between two measurements within one seed
46-
float deltaRMax = 280 * unit<float>::mm;
46+
float deltaRMax = 80 * unit<float>::mm;
4747

4848
// FIXME: this is not used yet
4949
// float upperPtResolutionPerSeed = 20* Acts::GeV;

0 commit comments

Comments
 (0)