Back to home page

EIC code displayed by LXR

 
 

    


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

0001 /// \file SpecializedScaledShape.h
0002 /// \author Mihaela Gheata (mihaela.gheata@cern.ch)
0003 
0004 #ifndef VECGEOM_VOLUMES_SPECIALIZEDSCALEDSHAPE_H_
0005 #define VECGEOM_VOLUMES_SPECIALIZEDSCALEDSHAPE_H_
0006 
0007 #include "VecGeom/base/Global.h"
0008 #include "VecGeom/volumes/kernel/ScaledShapeImplementation.h"
0009 #include "VecGeom/volumes/PlacedScaledShape.h"
0010 #include "VecGeom/volumes/UnplacedScaledShape.h"
0011 #include "VecGeom/volumes/SpecializedPlacedVolImplHelper.h"
0012 
0013 namespace vecgeom {
0014 
0015 inline namespace VECGEOM_IMPL_NAMESPACE {
0016 
0017 template <TranslationCode transCodeT, RotationCode rotCodeT>
0018 using SpecializedScaledShape = LoopSpecializedVolImplHelper<ScaledShapeImplementation, transCodeT, rotCodeT>;
0019 // SIMD interface below to be enabled when available in UnplacedVolume
0020 // using SpecializedScaledShape = SIMDSpecializedVolImplHelper<ScaledShapeImplementation, transCodeT, rotCodeT>;
0021 
0022 using SimpleScaledShape = SpecializedScaledShape<translation::kGeneric, rotation::kGeneric>;
0023 }
0024 } // End global namespace
0025 
0026 #endif // VECGEOM_VOLUMES_SPECIALIZEDSCALEDSHAPE_H_