Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-07-26 08:22:10

0001 /** TRACCC library, part of the ACTS project (R&D line)
0002  *
0003  * (c) 2023-2025 CERN for the benefit of the ACTS project
0004  *
0005  * Mozilla Public License Version 2.0
0006  */
0007 
0008 // Local include(s).
0009 #include "../../utils/global_index.hpp"
0010 #include "build_tracks.cuh"
0011 
0012 // Project include(s).
0013 #include "traccc/edm/track_parameters.hpp"
0014 #include "traccc/finding/candidate_link.hpp"
0015 #include "traccc/finding/device/build_tracks.hpp"
0016 #include "traccc/finding/finding_config.hpp"
0017 
0018 namespace traccc::cuda::kernels {
0019 
0020 __global__ void build_tracks(
0021     const __grid_constant__ bool run_mbf,
0022     const __grid_constant__ measurement_selector::config calib_cfg,
0023     const __grid_constant__ device::build_tracks_payload payload) {
0024   device::build_tracks(details::global_index1(), run_mbf, calib_cfg, payload);
0025 }
0026 }  // namespace traccc::cuda::kernels