Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef SimG4Core_SimWatcherFactory_H
0002 #define SimG4Core_SimWatcherFactory_H
0003 
0004 #include "SimG4Core/Watcher/interface/SimWatcher.h"
0005 #include "SimG4Core/Watcher/interface/SimWatcherMaker.h"
0006 
0007 #include "FWCore/PluginManager/interface/PluginFactory.h"
0008 
0009 typedef edmplugin::PluginFactory<SimWatcherMakerBase *()> SimWatcherFactory;
0010 
0011 // This pattern was taken from the framework factory code
0012 
0013 #define DEFINE_SIMWATCHER(type) DEFINE_EDM_PLUGIN(SimWatcherFactory, SimWatcherMaker<type>, #type)
0014 
0015 #endif