File indexing completed on 2026-09-20 09:29:52
0001
0002
0003
0004
0005
0006
0007
0008
0009 #ifndef VECGEOM_VOLUMES_SPECIALIZEDORB_H_
0010 #define VECGEOM_VOLUMES_SPECIALIZEDORB_H_
0011
0012 #include "VecGeom/base/Global.h"
0013
0014 #include "VecGeom/volumes/kernel/OrbImplementation.h"
0015 #include "VecGeom/volumes/PlacedOrb.h"
0016 #include "VecGeom/volumes/SpecializedPlacedVolImplHelper.h"
0017 #include "VecGeom/volumes/UnplacedOrb.h"
0018
0019 #include <stdio.h>
0020
0021 namespace vecgeom {
0022 inline namespace VECGEOM_IMPL_NAMESPACE {
0023
0024 using SpecializedOrb = SpecializedVolImplHelper<OrbImplementation>;
0025
0026 using SimpleOrb = SpecializedOrb;
0027 }
0028 }
0029
0030 #endif