/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DetectorDescription/Parser/src/DDLSolid.h
37 строк
1 KB
Cms Build
Clang-Format
11 май 2019, 12:09
11 май 2019, 12:09
02cea70
Код
Авторство
О чём код?
#ifndef DDLSolid_H #define DDLSolid_H #include <string> // ------------------------------------------------------------------------- // Includes // ------------------------------------------------------------------------- #include "DDXMLElement.h" class DDCompactView; class DDLElementRegistry; /// DDLSolid processes Box elements. /** @class DDLSolid * @author Michael Case * * DDLSolid.h - description * ------------------- * begin: Thu Oct 03, 2002 * email: case@ucdhep.ucdavis.edu * * This class currently serves one purpose only. That is to create a * reference to the most recently processed DDLSolid, no matter whether * it is an Box, Boolean, Cone, Cons, Polyhedra, Polycone, Reflection, * Shapeless, Trapezoid, Trd1, Tube or Tubs! * */ class DDLSolid : public DDXMLElement { public: /// Constructor DDLSolid(DDLElementRegistry* myreg); void setReference(const std::string& nmspace, DDCompactView& cpv); }; #endif