Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-03-13 09:29:30

0001 /// \file SpecializedPolyhedron.h
0002 /// \author Johannes de Fine Licht (johannes.definelicht@cern.ch)
0003 
0004 #ifndef VECGEOM_VOLUMES_SPECIALIZEDPOLYHEDRON_H_
0005 #define VECGEOM_VOLUMES_SPECIALIZEDPOLYHEDRON_H_
0006 
0007 #include "VecGeom/base/Global.h"
0008 
0009 #include "VecGeom/volumes/kernel/PolyhedronImplementation.h"
0010 #include "VecGeom/volumes/PlacedPolyhedron.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, Polyhedron::EInnerRadii innerRadiiT,
0018           Polyhedron::EPhiCutout phiCutoutT>
0019 using SpecializedPolyhedron =
0020     LoopSpecializedVolImplHelper<PolyhedronImplementation<innerRadiiT, phiCutoutT>, transCodeT, rotCodeT>;
0021 
0022 using SimplePolyhedron = SpecializedPolyhedron<translation::kGeneric, rotation::kGeneric,
0023                                                Polyhedron::EInnerRadii::kGeneric, Polyhedron::EPhiCutout::kGeneric>;
0024 
0025 } // End inline namespace
0026 
0027 } // End global namespace
0028 
0029 #endif // VECGEOM_VOLUMES_SPECIALIZEDPOLYHEDRON_H_