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
0013
0014
0015
0016
0017
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