/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DetectorDescription/Parser/src/DDLTubs.h
28 строк
562 B
Cms Build
Clang-Format
11 май 2019, 12:09
11 май 2019, 12:09
02cea70
Код
Авторство
О чём код?
#ifndef DETECTOR_DESCRIPTION_PARSER_DDLTUBS_H #define DETECTOR_DESCRIPTION_PARSER_DDLTUBS_H #include <string> #include <vector> #include "DDLSolid.h" class DDCompactView; class DDLElementRegistry; /// DDLTubs processes Tubs elements. /** @class DDLTubs * * DDLTubs.h - description * * Tube and Tubs elements are handled by this processor. * */ class DDLTubs final : public DDLSolid { public: DDLTubs(DDLElementRegistry* myreg); void processElement(const std::string& name, const std::string& nmspace, DDCompactView& cpv) override; }; #endif