1
2
3
4
5
6
7
8
9
10
|
#ifndef DataFormats_BeamSpot_interface_BeamSpotHost_h
#define DataFormats_BeamSpot_interface_BeamSpotHost_h
#include "DataFormats/BeamSpot/interface/BeamSpotPOD.h"
#include "DataFormats/Portable/interface/PortableHostObject.h"
// simplified representation of the beamspot data, in host memory
using BeamSpotHost = PortableHostObject<BeamSpotPOD>;
#endif // DataFormats_BeamSpot_interface_BeamSpotHost_h
|