/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWCore/ParameterSetReader/interface/ParameterSetReader.h
19 строк
651 B
Kevin Pedro
avoid unnecessary c-string conversions for pybind interface
14 сен 2023, 19:39
14 сен 2023, 19:39
2519f50
Код
Авторство
О чём код?
#ifndef FWCore_Framework_ParameterSetReader_h #define FWCore_Framework_ParameterSetReader_h #include "FWCore/ParameterSet/interface/ParameterSet.h" namespace edm { std::unique_ptr<edm::ParameterSet> getPSetFromConfig(const std::string& config); std::unique_ptr<edm::ParameterSet> readConfig(std::string const& config, const std::vector<std::string>& args); std::unique_ptr<edm::ParameterSet> readConfig(std::string const& config); void makeParameterSets(std::string const& configtext, std::unique_ptr<ParameterSet>& main); std::unique_ptr<edm::ParameterSet> readPSetsFrom(std::string const& fileOrString); } // namespace edm #endif