File indexing completed on 2025-01-18 10:14:11
0001
0002
0003
0004 #ifndef VECGEOM_VOLUMES_SPECIALIZEDSPHERE_H_
0005 #define VECGEOM_VOLUMES_SPECIALIZEDSPHERE_H_
0006
0007 #include "VecGeom/base/Global.h"
0008 #include "VecGeom/volumes/kernel/SphereImplementation.h"
0009 #include "VecGeom/volumes/PlacedSphere.h"
0010 #include "VecGeom/volumes/SpecializedPlacedVolImplHelper.h"
0011 #include "VecGeom/volumes/UnplacedSphere.h"
0012
0013 #include <stdio.h>
0014
0015 namespace vecgeom {
0016 inline namespace VECGEOM_IMPL_NAMESPACE {
0017
0018 template <TranslationCode transCodeT, RotationCode rotCodeT>
0019 using SpecializedSphere = SIMDSpecializedVolImplHelper<SphereImplementation, transCodeT, rotCodeT>;
0020 using SimpleSphere = SpecializedSphere<translation::kGeneric, rotation::kGeneric>;
0021 }
0022 }
0023
0024 #endif