/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Alignment/CommonAlignmentMonitor/src/AlignmentMonitorPluginFactory.cc
51 строка
2 KB
Cms Build
Clang-Format
11 май 2019, 12:07
11 май 2019, 12:07
a1e800b
Код
Авторство
О чём код?
// -*- C++ -*- // // Package: CommonAlignmentMonitor // Class : AlignmentMonitorPluginFactory // // Implementation: // <Notes on implementation> // // Original Author: Jim Pivarski // Created: Mon Apr 23 15:30:20 CDT 2007 // $Id: AlignmentMonitorPluginFactory.cc,v 1.1 2007/04/23 22:19:14 pivarski Exp $ // // system include files // user include files #include "Alignment/CommonAlignmentMonitor/interface/AlignmentMonitorPluginFactory.h" EDM_REGISTER_PLUGINFACTORY(AlignmentMonitorPluginFactory, "AlignmentMonitorPluginFactory"); // // // // constants, enums and typedefs // // // // // // // static data member definitions // // // // AlignmentMonitorPluginFactory AlignmentMonitorPluginFactory::theInstance; // // // // // constructors and destructor // // // // //__________________________________________________________________________________________________ // AlignmentMonitorPluginFactory::AlignmentMonitorPluginFactory() // : seal::PluginFactory<AlignmentMonitorBase* (const edm::ParameterSet&)>("AlignmentMonitorPluginFactory") // { } // // //__________________________________________________________________________________________________ // // AlignmentMonitorPluginFactory* AlignmentMonitorPluginFactory::get() { // return &theInstance; // } // // //__________________________________________________________________________________________________ // // AlignmentMonitorBase* // AlignmentMonitorPluginFactory::getMonitor(std::string name, const edm::ParameterSet& config) { // return theInstance.create(name, config); // }