File indexing completed on 2025-12-16 10:33:36
0001
0002
0003 #ifndef VECGEOM_VOLUMES_SPECIALIZEDTORUS2_H_
0004 #define VECGEOM_VOLUMES_SPECIALIZEDTORUS2_H_
0005
0006 #include "VecGeom/base/Global.h"
0007
0008 #include "VecGeom/volumes/kernel/TorusImplementation2.h"
0009 #include "VecGeom/volumes/PlacedTorus2.h"
0010 #include "VecGeom/volumes/SpecializedPlacedVolImplHelper.h"
0011
0012
0013
0014 namespace vecgeom {
0015 inline namespace VECGEOM_IMPL_NAMESPACE {
0016
0017
0018
0019
0020 template <TranslationCode transCodeT, RotationCode rotCodeT>
0021 using SpecializedTorus2 = LoopSpecializedVolImplHelper<TorusImplementation2, transCodeT, rotCodeT>;
0022
0023 using SimpleTorus2 = SpecializedTorus2<translation::kGeneric, rotation::kGeneric>;
0024
0025 }
0026 }
0027
0028 #endif