File indexing completed on 2025-01-30 10:26:22
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 template <TranslationCode transCodeT, RotationCode rotCodeT>
0021 using SpecializedTrapezoid = SIMDSpecializedVolImplHelper<TrapezoidImplementation, transCodeT, rotCodeT>;
0022
0023 using SimpleTrapezoid = SpecializedTrapezoid<translation::kGeneric, rotation::kGeneric>;
0024
0025 }
0026 }
0027
0028 #endif