Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-17 08:35:35

0001 #ifndef VECGEOM_SURFACE_DEVICESTORAGE_H_
0002 #define VECGEOM_SURFACE_DEVICESTORAGE_H_
0003 
0004 namespace vgbrep {
0005 
0006 template <typename Real_t>
0007 struct SurfData;
0008 struct VolumeTree;
0009 
0010 namespace globaldevicesurfdata {
0011 
0012 /// @brief Storage for device pointer to surface data
0013 /// @tparam Real_t Precision type
0014 template <typename Real_t>
0015 VECCORE_ATT_DEVICE SurfData<Real_t> *gSurfDataDevice = nullptr;
0016 
0017 } // namespace globaldevicesurfdata
0018 } // namespace vgbrep
0019 
0020 #endif