Back to home page

EIC code displayed by LXR

 
 

    


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

0001 /// @file: SpecializedTrapezoid.h
0002 /// @author Guilherme Lima (lima@fnal.gov)
0003 //
0004 //  2016-07-22 Guilherme Lima  Created
0005 //
0006 
0007 #ifndef VECGEOM_VOLUMES_SPECIALIZEDTRAPEZOID_H_
0008 #define VECGEOM_VOLUMES_SPECIALIZEDTRAPEZOID_H_
0009 
0010 #include "VecGeom/base/Global.h"
0011 
0012 #include "VecGeom/volumes/kernel/TrapezoidImplementation.h"
0013 #include "VecGeom/volumes/PlacedTrapezoid.h"
0014 #include "VecGeom/volumes/SpecializedPlacedVolImplHelper.h"
0015 #include "VecGeom/volumes/UnplacedTrapezoid.h"
0016 
0017 namespace vecgeom {
0018 inline namespace VECGEOM_IMPL_NAMESPACE {
0019 
0020 template <TranslationCode transCodeT, RotationCode rotCodeT>
0021 using SpecializedTrapezoid = SIMDSpecializedVolImplHelper<TrapezoidImplementation, transCodeT, rotCodeT>;
0022 
0023 using SimpleTrapezoid = SpecializedTrapezoid<translation::kGeneric, rotation::kGeneric>;
0024 
0025 } // inline NS
0026 } // vecgeom NS
0027 
0028 #endif