Back to home page

EIC code displayed by LXR

 
 

    


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

0001 #ifndef VECGEOM_VOLUMES_SPECIALIZEDCUTTUBE_H_
0002 #define VECGEOM_VOLUMES_SPECIALIZEDCUTTUBE_H_
0003 
0004 #include "VecGeom/base/Global.h"
0005 
0006 #include "VecGeom/volumes/kernel/CutTubeImplementation.h"
0007 #include "VecGeom/volumes/PlacedCutTube.h"
0008 #include "VecGeom/volumes/SpecializedPlacedVolImplHelper.h"
0009 #include "VecGeom/volumes/UnplacedCutTube.h"
0010 
0011 namespace vecgeom {
0012 inline namespace VECGEOM_IMPL_NAMESPACE {
0013 
0014 template <TranslationCode transCodeT, RotationCode rotCodeT>
0015 using SpecializedCutTube = SIMDSpecializedVolImplHelper<CutTubeImplementation, transCodeT, rotCodeT>;
0016 
0017 using SimpleCutTube = SpecializedCutTube<translation::kGeneric, rotation::kGeneric>;
0018 }
0019 } // End global namespace
0020 
0021 #endif