File indexing completed on 2023-03-17 11:05:42
0001 #ifndef HeterogeneousCore_AlpakaTest_interface_AlpakaESTestSoA_h
0002 #define HeterogeneousCore_AlpakaTest_interface_AlpakaESTestSoA_h
0003
0004 #include "DataFormats/SoATemplate/interface/SoACommon.h"
0005 #include "DataFormats/SoATemplate/interface/SoALayout.h"
0006 #include "DataFormats/SoATemplate/interface/SoAView.h"
0007
0008 namespace cms::alpakatest {
0009
0010 GENERATE_SOA_LAYOUT(AlpakaESTestSoALayoutA, SOA_COLUMN(int, z))
0011 GENERATE_SOA_LAYOUT(AlpakaESTestSoALayoutC, SOA_COLUMN(int, x))
0012 GENERATE_SOA_LAYOUT(AlpakaESTestSoALayoutD, SOA_COLUMN(int, y))
0013
0014 using AlpakaESTestSoAA = AlpakaESTestSoALayoutA<>;
0015 using AlpakaESTestSoAC = AlpakaESTestSoALayoutC<>;
0016 using AlpakaESTestSoAD = AlpakaESTestSoALayoutD<>;
0017 }
0018
0019 #endif