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) 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/thread_id.hpp"
0010 #include "reify_cluster_data.cuh"
0011 
0012 // Project include(s).
0013 #include "traccc/clusterization/device/reify_cluster_data.hpp"
0014 
0015 namespace traccc::cuda::kernels {
0016 __global__ void reify_cluster_data(
0017     vecmem::data::vector_view<const unsigned int> disjoint_set_view,
0018     vecmem::data::vector_view<const unsigned int> permutation_map_view,
0019     traccc::edm::silicon_cluster_collection::view cluster_view) {
0020   device::reify_cluster_data(details::thread_id1{}.getGlobalThreadId(),
0021                              disjoint_set_view, permutation_map_view,
0022                              cluster_view);
0023 }
0024 }  // namespace traccc::cuda::kernels