/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWCore/Sources/interface/VectorInputSourceFactory.h
31 строка
961 B
W. David Dagenhart
Changes from scram build code-format-all
03 май 2019, 18:48
03 май 2019, 18:48
22c28dc
Код
Авторство
О чём код?
#ifndef FWCore_Sources_VectorInputSourceFactory_h #define FWCore_Sources_VectorInputSourceFactory_h #include "FWCore/PluginManager/interface/PluginFactory.h" #include "FWCore/Sources/interface/VectorInputSource.h" #include <memory> #include <string> namespace edm { struct VectorInputSourceDescription; class ParameterSet; typedef VectorInputSource*(ISVecFunc)(ParameterSet const&, VectorInputSourceDescription const&); typedef edmplugin::PluginFactory<ISVecFunc> VectorInputSourcePluginFactory; class VectorInputSourceFactory { public: ~VectorInputSourceFactory(); static VectorInputSourceFactory const* get(); std::unique_ptr<VectorInputSource> makeVectorInputSource(ParameterSet const&, VectorInputSourceDescription const&) const; private: VectorInputSourceFactory(); static VectorInputSourceFactory const singleInstance_; }; } // namespace edm #endif