/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DetectorDescription/Parser/src/DDLAssembly.h
29 строк
777 B
Ianna Osborne
implement assembly in dd core
16 июн 2021, 18:26
16 июн 2021, 18:26
ed325fa
Код
Авторство
О чём код?
#ifndef DDL_Assembly_H #define DDL_Assembly_H #include <string> #include "DDLSolid.h" class DDCompactView; class DDLElementRegistry; /// DDLAssembly processes Assembly elements. /** @class DDLAssembly * @author Ianna Osborne * * DDLAssembly.h - description * * This is the Assembly processor. * */ class DDLAssembly final : public DDLSolid { public: DDLAssembly(DDLElementRegistry* myreg); void processElement(const std::string& name, const std::string& nmspace, DDCompactView& cpv) override; void preProcessElement(const std::string& name, const std::string& nmspace, DDCompactView& cpv) override; }; #endif