File indexing completed on 2026-05-04 08:54:16
0001
0002
0003
0004 #ifndef VECGEOM_VOLUMES_SPECIALIZEDPOLYHEDRON_H_
0005 #define VECGEOM_VOLUMES_SPECIALIZEDPOLYHEDRON_H_
0006
0007 #include "VecGeom/base/Global.h"
0008
0009 #include "VecGeom/volumes/kernel/PolyhedronImplementation.h"
0010 #include "VecGeom/volumes/PlacedPolyhedron.h"
0011 #include "VecGeom/volumes/SpecializedPlacedVolImplHelper.h"
0012
0013 namespace vecgeom {
0014
0015 inline namespace VECGEOM_IMPL_NAMESPACE {
0016
0017 template <Polyhedron::EInnerRadii innerRadiiT, Polyhedron::EPhiCutout phiCutoutT>
0018 using SpecializedPolyhedron = SpecializedVolImplHelper<PolyhedronImplementation<innerRadiiT, phiCutoutT>>;
0019
0020 using SimplePolyhedron = SpecializedPolyhedron<Polyhedron::EInnerRadii::kGeneric, Polyhedron::EPhiCutout::kGeneric>;
0021
0022 }
0023
0024 }
0025
0026 #endif