Back to home page

EIC code displayed by LXR

 
 

    


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

0001 /**
0002  * traccc library, part of the ACTS project (R&D line)
0003  *
0004  * (c) 2025 CERN for the benefit of the ACTS project
0005  *
0006  * Mozilla Public License Version 2.0
0007  */
0008 
0009 #pragma once
0010 
0011 // Local include(s).
0012 #include "traccc/alpaka/utils/queue.hpp"
0013 #include "utils.hpp"
0014 
0015 namespace traccc::alpaka::details {
0016 
0017 /// Helper function for getting a @c Queue out of @c queue (non-const)
0018 Queue& get_queue(queue& q);
0019 
0020 /// Helper function for getting a @c Queue out of @c queue (const)
0021 const Queue& get_queue(const queue& q);
0022 
0023 }  // namespace traccc::alpaka::details