Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-07-03 04:17:40

0001 #ifndef DataFormats_HcalDigi_interface_alpaka_HcalDigiDeviceCollection_h
0002 #define DataFormats_HcalDigi_interface_alpaka_HcalDigiDeviceCollection_h
0003 
0004 #include "DataFormats/Portable/interface/alpaka/PortableCollection.h"
0005 #include "DataFormats/HcalDigi/interface/HcalDigiSoA.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     // HcalDigiSoA in device global memory
0017     using Phase1DigiDeviceCollection = PortableCollection<HcalPhase1DigiSoA>;
0018     using Phase0DigiDeviceCollection = PortableCollection<HcalPhase0DigiSoA>;
0019 
0020   }  // namespace hcal
0021 }  // namespace ALPAKA_ACCELERATOR_NAMESPACE
0022 
0023 #endif