Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:05:32

0001 #ifndef DDL_Cone_H
0002 #define DDL_Cone_H
0003 
0004 #include <string>
0005 
0006 // -------------------------------------------------------------------------
0007 // Includes
0008 // -------------------------------------------------------------------------
0009 #include "DDLSolid.h"
0010 
0011 class DDCompactView;
0012 class DDLElementRegistry;
0013 
0014 /// DDLCone processes all Cone elements.
0015 /** @class DDLCone
0016  * @author Michael Case
0017  *                                                  
0018  *  DDLCone.h  -  description
0019  *  -------------------
0020  *  begin: Mon Oct 29 2001
0021  *  email: case@ucdhep.ucdavis.edu
0022  *       
0023  *  This processes DDL Cone and Cons elements.
0024  *                                                                         
0025  */
0026 
0027 class DDLCone final : public DDLSolid {
0028 public:
0029   DDLCone(DDLElementRegistry* myreg);
0030 
0031   void processElement(const std::string& name, const std::string& nmspace, DDCompactView& cpv) override;
0032 };
0033 
0034 #endif