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