Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:14:11

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 elliptical tube volume
0006 /// @file volumes/SpecializedEllipticalTube.h
0007 /// @author Raman Sehgal, Evgueni Tcherniaev
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 } // namespace VECGEOM_IMPL_NAMESPACE
0029 } // namespace vecgeom
0030 
0031 #endif // VECGEOM_VOLUMES_SPECIALIZEDELLIPTICALTUBE_H_