File indexing completed on 2025-01-18 10:14:11
0001 #ifndef VECGEOM_VOLUMES_SPECIALIZEDPLACEDSEXTRU_H_
0002 #define VECGEOM_VOLUMES_SPECIALIZEDPLACEDSEXTRU_H_
0003
0004 #include "VecGeom/base/Global.h"
0005
0006 #include "VecGeom/volumes/kernel/SExtruImplementation.h"
0007 #include "VecGeom/volumes/PlacedSExtru.h"
0008 #include "VecGeom/volumes/SpecializedPlacedVolImplHelper.h"
0009
0010 namespace vecgeom {
0011 inline namespace VECGEOM_IMPL_NAMESPACE {
0012
0013 template <TranslationCode transCodeT, RotationCode rotCodeT>
0014 using SpecializedSExtru = LoopSpecializedVolImplHelper<SExtruImplementation, transCodeT, rotCodeT>;
0015
0016 using SimpleSExtru = SpecializedSExtru<translation::kGeneric, rotation::kGeneric>;
0017 }
0018 }
0019
0020 #endif