Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef DETECTOR_DESCRIPTION_PARSER_DDLTUBS_H
0002 #define DETECTOR_DESCRIPTION_PARSER_DDLTUBS_H
0003 
0004 #include <string>
0005 #include <vector>
0006 
0007 #include "DDLSolid.h"
0008 
0009 class DDCompactView;
0010 class DDLElementRegistry;
0011 
0012 /// DDLTubs processes Tubs elements.
0013 /** @class DDLTubs
0014  *
0015  *  DDLTubs.h  -  description
0016  *
0017  *  Tube and Tubs elements are handled by this processor.
0018  *
0019  */
0020 
0021 class DDLTubs final : public DDLSolid {
0022 public:
0023   DDLTubs(DDLElementRegistry* myreg);
0024 
0025   void processElement(const std::string& name, const std::string& nmspace, DDCompactView& cpv) override;
0026 };
0027 
0028 #endif