/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DetectorDescription/Parser/src/DDLNumeric.h
36 строк
991 B
Cms Build
Clang-Format
11 май 2019, 12:09
11 май 2019, 12:09
02cea70
Код
Авторство
О чём код?
#ifndef DDL_Numeric_H #define DDL_Numeric_H #include <map> #include <string> #include <vector> // ------------------------------------------------------------------------- // Includes // ------------------------------------------------------------------------- #include "DDXMLElement.h" #include "DetectorDescription/Core/interface/DDTypes.h" #include "DetectorDescription/Core/interface/DDNumeric.h" class DDCompactView; class DDLElementRegistry; /// DDLNumeric handles Numeric Elements /** @class DDLNumeric * @author Michael Case * * DDLNumeric.h - description * ------------------- * begin: Fri Nov 21 2003 * email: case@ucdhep.ucdavis.edu * * */ class DDLNumeric final : public DDXMLElement { public: DDLNumeric(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