// SurfCylinderParameters.h #ifndef SurfCylinderParameters_H #define SurfCylinderParameters_H // Put the SurfCylinder parameters into the global namespace. // This allows users to refer to parameter indices without // explicit qualification, e.g. IPHI instead of SurfCylinder::IPHI. #include "SurfCylinder.h" namespace trf { enum{ RADIUS = SurfCylinder::RADIUS, IPHI = SurfCylinder::IPHI, IZ = SurfCylinder::IZ, IALF = SurfCylinder::IALF, ITLM = SurfCylinder::ITLM, IQPT = SurfCylinder::IQPT }; } // end namespace trf #endif