Skip to content

Commit 8f9b751

Browse files
committed
Shorten the namespace name, to stop freaking out clang-format.
1 parent 5d93a2c commit 8f9b751

2 files changed

+10
-13
lines changed

device/sycl/src/finding/combinatorial_kalman_filter_algorithm_constant_field_default_detector.sycl

+5-6
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#include <detray/propagator/rk_stepper.hpp>
1818

1919
namespace traccc::sycl {
20-
namespace kernels::combinatorial_kalman_filter_constant_field_default_detector {
20+
namespace kernels::ckf_cfield_defdet {
2121

2222
struct make_barcode_sequence;
2323
struct apply_interaction;
@@ -37,8 +37,7 @@ struct kernels {
3737
using prune_tracks_kernel_type = prune_tracks;
3838
}; // namespace kernels
3939

40-
} // namespace
41-
// kernels::combinatorial_kalman_filter_constant_field_default_detector
40+
} // namespace kernels::ckf_cfield_defdet
4241

4342
combinatorial_kalman_filter_algorithm::output_type
4443
combinatorial_kalman_filter_algorithm::operator()(
@@ -53,9 +52,9 @@ combinatorial_kalman_filter_algorithm::operator()(
5352
default_detector::device::algebra_type,
5453
detray::constrained_step<>>,
5554
detray::navigator<const default_detector::device>,
56-
kernels::combinatorial_kalman_filter_constant_field_default_detector::
57-
kernels>(det, field, measurements, seeds, m_config, m_mr, m_copy,
58-
details::get_queue(m_queue));
55+
kernels::ckf_cfield_defdet::kernels>(det, field, measurements, seeds,
56+
m_config, m_mr, m_copy,
57+
details::get_queue(m_queue));
5958
}
6059

6160
} // namespace traccc::sycl

device/sycl/src/finding/combinatorial_kalman_filter_algorithm_constant_field_telescope_detector.sycl

+5-7
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
#include <detray/propagator/rk_stepper.hpp>
1818

1919
namespace traccc::sycl {
20-
namespace kernels::
21-
combinatorial_kalman_filter_constant_field_telescope_detector {
20+
namespace kernels::ckf_cfield_teldet {
2221

2322
struct make_barcode_sequence;
2423
struct apply_interaction;
@@ -38,8 +37,7 @@ struct kernels {
3837
using prune_tracks_kernel_type = prune_tracks;
3938
}; // namespace kernels
4039

41-
} // namespace
42-
// kernels::combinatorial_kalman_filter_constant_field_telescope_detector
40+
} // namespace kernels::ckf_cfield_teldet
4341

4442
combinatorial_kalman_filter_algorithm::output_type
4543
combinatorial_kalman_filter_algorithm::operator()(
@@ -54,9 +52,9 @@ combinatorial_kalman_filter_algorithm::operator()(
5452
telescope_detector::device::algebra_type,
5553
detray::constrained_step<>>,
5654
detray::navigator<const telescope_detector::device>,
57-
kernels::combinatorial_kalman_filter_constant_field_telescope_detector::
58-
kernels>(det, field, measurements, seeds, m_config, m_mr, m_copy,
59-
details::get_queue(m_queue));
55+
kernels::ckf_cfield_teldet::kernels>(det, field, measurements, seeds,
56+
m_config, m_mr, m_copy,
57+
details::get_queue(m_queue));
6058
}
6159

6260
} // namespace traccc::sycl

0 commit comments

Comments
 (0)