File indexing completed on 2025-01-30 10:26:22
0001
0002
0003
0004 #ifndef VECGEOM_VOLUMES_SPECIALIZEDTESSELLATED_H_
0005 #define VECGEOM_VOLUMES_SPECIALIZEDTESSELLATED_H_
0006
0007 #include "VecGeom/base/Global.h"
0008
0009 #include "VecGeom/volumes/kernel/TessellatedImplementation.h"
0010 #include "VecGeom/volumes/PlacedTessellated.h"
0011 #include "VecGeom/volumes/SpecializedPlacedVolImplHelper.h"
0012
0013 namespace vecgeom {
0014 inline namespace VECGEOM_IMPL_NAMESPACE {
0015
0016 template <TranslationCode transCodeT, RotationCode rotCodeT>
0017 using SpecializedTessellated = LoopSpecializedVolImplHelper<TessellatedImplementation, transCodeT, rotCodeT>;
0018
0019 using SimpleTessellated = SpecializedTessellated<translation::kGeneric, rotation::kGeneric>;
0020 }
0021 }
0022
0023 #endif