/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DetectorDescription/Parser/src/DDLBox.h
34 строки
953 B
Cms Build
Clang-Format
11 май 2019, 12:09
11 май 2019, 12:09
02cea70
Код
Авторство
О чём код?
#ifndef DDLBox_H #define DDLBox_H #include <string> // ------------------------------------------------------------------------- // Includes // ------------------------------------------------------------------------- #include "DDLSolid.h" class DDCompactView; class DDLElementRegistry; /// DDLBox processes Box elements. /** @class DDLBox * @author Michael Case * * DDLBox.h - description * ------------------- * begin: Wed Oct 24 2001 * email: case@ucdhep.ucdavis.edu * * This is the Box element processor. * */ class DDLBox final : public DDLSolid { public: DDLBox(DDLElementRegistry* myreg); void processElement(const std::string& name, const std::string& nmspace, DDCompactView& cpv) override; }; #endif