Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-06-22 02:23:21

0001 #ifndef DataFormats_HcalRecHit_alpaka_HcalRecHitDeviceCollection_h
0002 #define DataFormats_HcalRecHit_alpaka_HcalRecHitDeviceCollection_h
0003 
0004 #include "DataFormats/Portable/interface/alpaka/PortableCollection.h"
0005 #include "DataFormats/HcalRecHit/interface/HcalRecHitSoA.h"
0006 #include "HeterogeneousCore/AlpakaInterface/interface/config.h"
0007 
0008 namespace ALPAKA_ACCELERATOR_NAMESPACE {
0009 
0010   namespace hcal {
0011 
0012     // make the names from the top-level hcal namespace visible for unqualified lookup
0013     // inside the ALPAKA_ACCELERATOR_NAMESPACE::hcal namespace
0014     using namespace ::hcal;
0015 
0016     // HcalRecHitSoA in device global memory
0017     using RecHitDeviceCollection = PortableCollection<HcalRecHitSoA>;
0018   }  // namespace hcal
0019 
0020 }  // namespace ALPAKA_ACCELERATOR_NAMESPACE
0021 
0022 #endif