Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:30:45

0001 #ifndef GEMDigitizer_ME0DigiModelFactory_h
0002 #define GEMDigitizer_ME0DigiModelFactory_h
0003 
0004 /** \class ME0DigiModelFactory
0005  *
0006  * Factory of seal plugins for ME0Digitizer
0007  *
0008  * \author Roumyana Hadjiiska
0009  *
0010  */
0011 #include "FWCore/PluginManager/interface/PluginFactory.h"
0012 
0013 namespace edm {
0014   class ParameterSet;
0015 }
0016 
0017 class ME0DigiModel;
0018 
0019 typedef edmplugin::PluginFactory<ME0DigiModel *(const edm::ParameterSet &)> ME0DigiModelFactory;
0020 
0021 #endif