1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef DataFormats_PortableTestObjects_interface_TestHostObject_h
#define DataFormats_PortableTestObjects_interface_TestHostObject_h
#include "DataFormats/Portable/interface/PortableHostObject.h"
#include "DataFormats/PortableTestObjects/interface/TestStruct.h"
namespace portabletest {
// struct with x, y, z, id fields in host memory
using TestHostObject = PortableHostObject<TestStruct>;
} // namespace portabletest
#endif // DataFormats_PortableTestObjects_interface_TestHostObject_h
|