Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:56:12

0001 // -*- C++ -*-
0002 //
0003 // Package:     CommonAlignmentMonitor
0004 // Class  :     AlignmentMonitorPluginFactory
0005 //
0006 // Implementation:
0007 //     <Notes on implementation>
0008 //
0009 // Original Author:  Jim Pivarski
0010 //         Created:  Mon Apr 23 15:30:20 CDT 2007
0011 // $Id: AlignmentMonitorPluginFactory.cc,v 1.1 2007/04/23 22:19:14 pivarski Exp $
0012 //
0013 
0014 // system include files
0015 
0016 // user include files
0017 #include "Alignment/CommonAlignmentMonitor/interface/AlignmentMonitorPluginFactory.h"
0018 
0019 EDM_REGISTER_PLUGINFACTORY(AlignmentMonitorPluginFactory, "AlignmentMonitorPluginFactory");
0020 
0021 // //
0022 // // constants, enums and typedefs
0023 // //
0024 //
0025 // //
0026 // // static data member definitions
0027 // //
0028 //
0029 // AlignmentMonitorPluginFactory AlignmentMonitorPluginFactory::theInstance;
0030 //
0031 // //
0032 // // constructors and destructor
0033 // //
0034 //
0035 // //__________________________________________________________________________________________________
0036 // AlignmentMonitorPluginFactory::AlignmentMonitorPluginFactory()
0037 //    : seal::PluginFactory<AlignmentMonitorBase* (const edm::ParameterSet&)>("AlignmentMonitorPluginFactory")
0038 // { }
0039 //
0040 // //__________________________________________________________________________________________________
0041 //
0042 // AlignmentMonitorPluginFactory* AlignmentMonitorPluginFactory::get() {
0043 //   return &theInstance;
0044 // }
0045 //
0046 // //__________________________________________________________________________________________________
0047 //
0048 // AlignmentMonitorBase*
0049 // AlignmentMonitorPluginFactory::getMonitor(std::string name, const edm::ParameterSet& config) {
0050 //   return theInstance.create(name, config);
0051 // }