Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 10:51:49

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