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 /// \brief Declaration of the Specialized Orb volume
0006 /// \file volumes/SpecializedOrb.h
0007 /// \author Raman Sehgal
0008 
0009 #ifndef VECGEOM_VOLUMES_SPECIALIZEDORB_H_
0010 #define VECGEOM_VOLUMES_SPECIALIZEDORB_H_
0011 
0012 #include "VecGeom/base/Global.h"
0013 
0014 #include "VecGeom/volumes/kernel/OrbImplementation.h"
0015 #include "VecGeom/volumes/PlacedOrb.h"
0016 #include "VecGeom/volumes/SpecializedPlacedVolImplHelper.h"
0017 #include "VecGeom/volumes/UnplacedOrb.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 SpecializedOrb = SIMDSpecializedVolImplHelper<OrbImplementation, transCodeT, rotCodeT>;
0026 
0027 using SimpleOrb = SpecializedOrb<translation::kGeneric, rotation::kGeneric>;
0028 } // namespace VECGEOM_IMPL_NAMESPACE
0029 } // namespace vecgeom
0030 
0031 #endif // VECGEOM_VOLUMES_SPECIALIZEDORB_H_