Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:58:25

0001 #ifndef CalibMuon_DTCalibration_DTVDriftPluginFactory_h
0002 #define CalibMuon_DTCalibration_DTVDriftPluginFactory_h
0003 
0004 /** \class DTVDriftPluginFactory
0005  *  Factory of seal plugins for vDrfit computation.
0006  *  The plugins are concrete implementations of DTVDriftBaseAlgo.
0007  *
0008  *  \author A. Vilela Pereira
0009  */
0010 
0011 #include "FWCore/PluginManager/interface/PluginFactory.h"
0012 #include "FWCore/Framework/interface/ConsumesCollector.h"
0013 
0014 namespace edm {
0015   class ParameterSet;
0016   class ConsumesCollector;
0017 }  // namespace edm
0018 namespace dtCalibration {
0019   class DTVDriftBaseAlgo;
0020 }
0021 
0022 typedef edmplugin::PluginFactory<dtCalibration::DTVDriftBaseAlgo *(const edm::ParameterSet &, edm::ConsumesCollector)>
0023     DTVDriftPluginFactory;
0024 #endif