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 #pragma once
0009 
0010 // Project include(s).
0011 #include "traccc/edm/silicon_cluster_collection.hpp"
0012 
0013 // VecMem include(s).
0014 #include <vecmem/containers/data/vector_view.hpp>
0015 namespace traccc::cuda::kernels {
0016 
0017 /// Fill the cluster collection with the cell indices
0018 ///
0019 /// @param disjoint_set_view The cluster/measurement index of each cell
0020 /// @param cluster_view The collection to fill
0021 ///
0022 __global__ void reify_cluster_data(
0023     vecmem::data::vector_view<const unsigned int> disjoint_set_view,
0024     vecmem::data::vector_view<const unsigned int> permutation_map_view,
0025     traccc::edm::silicon_cluster_collection::view cluster_view);
0026 
0027 }  // namespace traccc::cuda::kernels