File indexing completed on 2025-01-18 10:14:11
0001
0002
0003
0004
0005
0006
0007
0008
0009 #ifndef VECGEOM_VOLUMES_SPECIALIZEDELLIPTICALTUBE_H_
0010 #define VECGEOM_VOLUMES_SPECIALIZEDELLIPTICALTUBE_H_
0011
0012 #include "VecGeom/base/Global.h"
0013
0014 #include "VecGeom/volumes/kernel/EllipticalTubeImplementation.h"
0015 #include "VecGeom/volumes/PlacedEllipticalTube.h"
0016 #include "VecGeom/volumes/SpecializedPlacedVolImplHelper.h"
0017 #include "VecGeom/volumes/UnplacedEllipticalTube.h"
0018
0019 #include <stdio.h>
0020
0021 namespace vecgeom {
0022 inline namespace VECGEOM_IMPL_NAMESPACE {
0023
0024 template <TranslationCode transCodeT, RotationCode rotCodeT>
0025 using SpecializedEllipticalTube = SIMDSpecializedVolImplHelper<EllipticalTubeImplementation, transCodeT, rotCodeT>;
0026
0027 using SimpleEllipticalTube = SpecializedEllipticalTube<translation::kGeneric, rotation::kGeneric>;
0028 }
0029 }
0030
0031 #endif