/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
RecoLocalTracker/SiStripClusterizer/interface/StripClusterizerAlgorithmFactory.h
18 строк
569 B
Dan Riley
This commit adds fillDescriptions to SiStripClusterizerFromRaw and the
20 мар 2023, 16:29
20 мар 2023, 16:29
a56c8ae
Код
Авторство
О чём код?
#ifndef RecoLocalTracker_StripClusterizerAlgorithmFactory_h #define RecoLocalTracker_StripClusterizerAlgorithmFactory_h namespace edm { class ParameterSet; class ParameterSetDescription; } // namespace edm class StripClusterizerAlgorithm; #include <memory> #include "FWCore/Framework/interface/ConsumesCollector.h" class StripClusterizerAlgorithmFactory { public: static std::unique_ptr<StripClusterizerAlgorithm> create(edm::ConsumesCollector&&, const edm::ParameterSet&); static void fillDescriptions(edm::ParameterSetDescription& clusterizer); }; #endif