Back to home page

EIC code displayed by LXR

 
 

    


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

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 
0016 namespace traccc::hip::kernels {
0017 
0018 /// Fill the cluster collection with the cell indices
0019 ///
0020 /// @param disjoint_set_view The cluster/measurement index of each cell
0021 /// @param permutation_map_view Maps sorted cell positions back to input indices
0022 /// @param cluster_view The collection to fill
0023 ///
0024 __global__ void reify_cluster_data(
0025     vecmem::data::vector_view<const unsigned int> disjoint_set_view,
0026     vecmem::data::vector_view<const unsigned int> permutation_map_view,
0027     traccc::edm::silicon_cluster_collection::view cluster_view);
0028 
0029 }  // namespace traccc::hip::kernels