/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Geometry/MuonNumbering/interface/MuonDDDConstants.h
34 строки
710 B
Cms Build
Clang-Format
19 июн 2019, 14:24
19 июн 2019, 14:24
515df7e
Код
Авторство
О чём код?
#ifndef Geometry_MuonNumbering_MuonDDDConstant_h #define Geometry_MuonNumbering_MuonDDDConstant_h /** \class MuonDDDConstants * * this class reads the constant section of * the muon-numbering xml-file * * \author Arno Straessner, CERN <arno.straessner@cern.ch> * modified by: * Michael Case, <michael.case@cern.ch>, 2006/10/05 * */ #include <string> #include <map> #include <iostream> class DDCompactView; class MuonDDDConstants { public: MuonDDDConstants(const DDCompactView& cpv); int getValue(const std::string& name) const; void addValue(const std::string& name, const int& value); MuonDDDConstants() = delete; private: std::map<std::string, int> namesAndValues_; }; #endif