Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-09-14 09:26:31

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 using SpecializedTrapezoid = SpecializedVolImplHelper<TrapezoidImplementation>;
0021 
0022 using SimpleTrapezoid = SpecializedTrapezoid;
0023 
0024 } // namespace VECGEOM_IMPL_NAMESPACE
0025 } // namespace vecgeom
0026 
0027 #endif