/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Geometry/MTDNumberingBuilder/plugins/ExtractStringFromDD.h
17 строк
466 B
Fabio Cossutti
Turn DDD in DD where relevant, following request of C. Vuosalo
12 май 2020, 11:22
12 май 2020, 11:22
c4ee4d1
Код
Авторство
О чём код?
#ifndef Geometry_MTDNumberingBuilder_ExtractStringFromDD_H #define Geometry_MTDNumberingBuilder_ExtractStringFromDD_H #include "FWCore/ParameterSet/interface/types.h" #include <string> /** * Helper function to extract a string from a SpecPar; only returns the * first one and complains if more than 1 is found. */ template <class FilteredView> class ExtractStringFromDD { public: static std::string getString(const std::string &, FilteredView *); }; #endif