File indexing completed on 2025-03-13 09:29:30
0001
0002
0003
0004
0005
0006
0007
0008 #ifndef VECGEOM_VOLUMES_SPECIALIZEDGENTRAP_H_
0009 #define VECGEOM_VOLUMES_SPECIALIZEDGENTRAP_H_
0010
0011 #include "VecGeom/base/Global.h"
0012 #include "VecGeom/volumes/kernel/GenTrapImplementation.h"
0013 #include "VecGeom/volumes/PlacedGenTrap.h"
0014 #include "VecGeom/volumes/UnplacedGenTrap.h"
0015 #include "VecGeom/volumes/SpecializedPlacedVolImplHelper.h"
0016
0017 #include <stdio.h>
0018
0019 namespace vecgeom {
0020
0021 inline namespace VECGEOM_IMPL_NAMESPACE {
0022
0023 template <TranslationCode transCodeT, RotationCode rotCodeT>
0024 using SpecializedGenTrap = SIMDSpecializedVolImplHelper<GenTrapImplementation, transCodeT, rotCodeT>;
0025
0026 using SimpleGenTrap = SpecializedGenTrap<translation::kGeneric, rotation::kGeneric>;
0027 }
0028 }
0029
0030 #endif