/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DetectorDescription/Parser/src/DDLSpecPar.h
33 строки
744 B
Cms Build
Clang-Format
11 май 2019, 12:09
11 май 2019, 12:09
02cea70
Код
Авторство
О чём код?
#ifndef DDLSPECPAR_H #define DDLSPECPAR_H #include <string> #include "DDXMLElement.h" class DDCompactView; class DDLElementRegistry; /// DDLSpecPar processes SpecPar elements. /** @class DDLSpecPar * @author Michael Case * * DDLSpecPar.h - description * ------------------- * begin: Tue Nov 21 2001 * email: case@ucdhep.ucdavis.edu * * This element is used to specify parameters for a part in the detector. * PartSelector provides a way to associate Parameters with specific parts * of the detector. * */ class DDLSpecPar final : public DDXMLElement { public: DDLSpecPar(DDLElementRegistry* myreg); void processElement(const std::string& name, const std::string& nmspace, DDCompactView& cpv) override; }; #endif