Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef RecoLocalMuon_DTTTrigSyncFactory_H
0002 #define RecoLocalMuon_DTTTrigSyncFactory_H
0003 
0004 /** \class DTTTrigSyncFactory
0005  *  Factory of seal plugins for TTrig syncronization during RecHit reconstruction.
0006  *  The plugins are concrete implementations of  DTTTrigBaseSync case class.
0007  *
0008  *  \author G. Cerminara - INFN Torino
0009  */
0010 #include "FWCore/PluginManager/interface/PluginFactory.h"
0011 #include "FWCore/Framework/interface/FrameworkfwdMostUsed.h"
0012 
0013 namespace edm {
0014   class ParameterSet;
0015 }
0016 class DTTTrigBaseSync;
0017 
0018 typedef edmplugin::PluginFactory<DTTTrigBaseSync *(const edm::ParameterSet &, edm::ConsumesCollector)>
0019     DTTTrigSyncFactory;
0020 #endif