File indexing completed on 2026-09-14 09:26:31
0001
0002
0003
0004
0005
0006
0007 #ifndef VECGEOM_VOLUMES_SPECIALIZEDTRAPEZOID_H_
0008 #define VECGEOM_VOLUMES_SPECIALIZEDTRAPEZOID_H_
0009
0010 #include "VecGeom/base/Global.h"
0011
0012 #include "VecGeom/volumes/kernel/TrapezoidImplementation.h"
0013 #include "VecGeom/volumes/PlacedTrapezoid.h"
0014 #include "VecGeom/volumes/SpecializedPlacedVolImplHelper.h"
0015 #include "VecGeom/volumes/UnplacedTrapezoid.h"
0016
0017 namespace vecgeom {
0018 inline namespace VECGEOM_IMPL_NAMESPACE {
0019
0020 using SpecializedTrapezoid = SpecializedVolImplHelper<TrapezoidImplementation>;
0021
0022 using SimpleTrapezoid = SpecializedTrapezoid;
0023
0024 }
0025 }
0026
0027 #endif