File indexing completed on 2026-09-24 09:28:00
0001
0002
0003
0004 #ifndef VECGEOM_VOLUMES_SPECIALIZEDSPHERE_H_
0005 #define VECGEOM_VOLUMES_SPECIALIZEDSPHERE_H_
0006
0007 #include "VecGeom/base/Global.h"
0008 #include "VecGeom/volumes/kernel/SphereImplementation.h"
0009 #include "VecGeom/volumes/PlacedSphere.h"
0010 #include "VecGeom/volumes/SpecializedPlacedVolImplHelper.h"
0011 #include "VecGeom/volumes/UnplacedSphere.h"
0012
0013 #include <stdio.h>
0014
0015 namespace vecgeom {
0016 inline namespace VECGEOM_IMPL_NAMESPACE {
0017
0018 using SpecializedSphere = SpecializedVolImplHelper<SphereImplementation>;
0019 using SimpleSphere = SpecializedSphere;
0020 }
0021 }
0022
0023 #endif