/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DetectorDescription/Parser/src/DDLAlgorithm.h
33 строки
800 B
Cms Build
Clang-Format
11 май 2019, 12:09
11 май 2019, 12:09
02cea70
Код
Авторство
О чём код?
#ifndef DDL_ALGORITHM_H #define DDL_ALGORITHM_H #include <string> #include "DDXMLElement.h" class DDCompactView; class DDLElementRegistry; /// DDLAlgorithm processes Algorithm elements. /** @class DDLAlgorithm * @author Michael Case * * DDLAlgorithm.h - description * ------------------- * begin: Saturday November 29, 2003 * email: case@ucdhep.ucdavis.edu * * This element is used to algorithmically create and position detector * LogicalParts. * */ class DDLAlgorithm final : public DDXMLElement { public: DDLAlgorithm(DDLElementRegistry* myreg); void preProcessElement(const std::string& name, const std::string& nmspace, DDCompactView& cpv) override; void processElement(const std::string& name, const std::string& nmspace, DDCompactView& cpv) override; }; #endif