/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWCore/Framework/src/ComponentMaker.cc
21 строка
659 B
W. David Dagenhart
Remove SubProcess from EventSetup code
21 июл 2025, 23:06
21 июл 2025, 23:06
e21788c
Код
Авторство
О чём код?
#include "FWCore/Framework/interface/ComponentMaker.h" #include <atomic> namespace edm { namespace eventsetup { ComponentDescription ComponentMakerBaseHelper::createComponentDescription(ParameterSet const& iConfiguration) const { ComponentDescription description; description.type_ = iConfiguration.getParameter<std::string>("@module_type"); description.label_ = iConfiguration.getParameter<std::string>("@module_label"); description.pid_ = iConfiguration.id(); static std::atomic<unsigned int> s_id{0}; description.id_ = s_id++; return description; } } // namespace eventsetup } // namespace edm