Warning, /acts/Traccc/device/cuda/src/finding/kernels/specializations/propagate_to_next_surface.cu.in is written in an unsupported language. File is not indexed.
0001 /** TRACCC library, part of the ACTS project (R&D line)
0002 *
0003 * (c) 2023-2026 CERN for the benefit of the ACTS project
0004 *
0005 * Mozilla Public License Version 2.0
0006 */
0007
0008 // Local include(s).
0009 #include "src/utils/magnetic_field_types.hpp"
0010 #include "src/finding/kernels/specializations/propagate_to_next_surface_src.cuh"
0011
0012 // Project include(s).
0013 #include "traccc/finding/details/combinatorial_kalman_filter_types.hpp"
0014 #include "traccc/geometry/detector.hpp"
0015
0016 // Covfie include(s).
0017 #include <covfie/core/field.hpp>
0018
0019 namespace traccc::cuda {
0020
0021 using bfield_t = covfie::field<@BFIELD_NAME@>::view_t;
0022 using propagator_t = traccc::details::ckf_propagator_t<@DETECTOR_NAME@::device, bfield_t>;
0023
0024 template void propagate_to_next_surface<propagator_t, bfield_t>(
0025 const dim3& grid_size, const dim3& block_size, std::size_t shared_mem_size,
0026 const cudaStream_t& stream, const finding_config&,
0027 const @DETECTOR_NAME@::device::const_view_type&,
0028 const bfield_t&,
0029 const device::propagate_to_next_surface_payload&);
0030
0031 } // namespace traccc::cuda