Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-16 10:33:36

0001 /// \file SpecializedTorus2.h
0002 
0003 #ifndef VECGEOM_VOLUMES_SPECIALIZEDTORUS2_H_
0004 #define VECGEOM_VOLUMES_SPECIALIZEDTORUS2_H_
0005 
0006 #include "VecGeom/base/Global.h"
0007 
0008 #include "VecGeom/volumes/kernel/TorusImplementation2.h"
0009 #include "VecGeom/volumes/PlacedTorus2.h"
0010 #include "VecGeom/volumes/SpecializedPlacedVolImplHelper.h"
0011 
0012 //#include <stdio.h>
0013 
0014 namespace vecgeom {
0015 inline namespace VECGEOM_IMPL_NAMESPACE {
0016 
0017 // NOTE: we may want to specialize the torus like we do for the tube
0018 // at the moment this is not done
0019 
0020 template <TranslationCode transCodeT, RotationCode rotCodeT>
0021 using SpecializedTorus2 = LoopSpecializedVolImplHelper<TorusImplementation2, transCodeT, rotCodeT>;
0022 
0023 using SimpleTorus2 = SpecializedTorus2<translation::kGeneric, rotation::kGeneric>;
0024 
0025 } // namespace VECGEOM_IMPL_NAMESPACE
0026 } // namespace vecgeom
0027 
0028 #endif // VECGEOM_VOLUMES_SPECIALIZEDTORUS2_H_