Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-30 10:26:21

0001 // This file is part of VecGeom and is distributed under the
0002 // conditions in the file LICENSE.txt in the top directory.
0003 // For the full list of authors see CONTRIBUTORS.txt and `git log`.
0004 
0005 /// Declaration of the specialized ellipsoid volume
0006 /// @file volumes/SpecializedEllipsoid.h
0007 /// @author Evgueni Tcherniaev
0008 
0009 #ifndef VECGEOM_VOLUMES_SPECIALIZEDELLIPSOID_H_
0010 #define VECGEOM_VOLUMES_SPECIALIZEDELLIPSOID_H_
0011 
0012 #include "VecGeom/base/Global.h"
0013 
0014 #include "VecGeom/volumes/kernel/EllipsoidImplementation.h"
0015 #include "VecGeom/volumes/PlacedEllipsoid.h"
0016 #include "VecGeom/volumes/SpecializedPlacedVolImplHelper.h"
0017 #include "VecGeom/volumes/UnplacedEllipsoid.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 SpecializedEllipsoid = SIMDSpecializedVolImplHelper<EllipsoidImplementation, transCodeT, rotCodeT>;
0026 
0027 using SimpleEllipsoid = SpecializedEllipsoid<translation::kGeneric, rotation::kGeneric>;
0028 } // namespace VECGEOM_IMPL_NAMESPACE
0029 } // namespace vecgeom
0030 
0031 #endif // VECGEOM_VOLUMES_SPECIALIZEDELLIPSOID_H_