// $Id$ // // File: DFactoryGenerator.h // Created: Thu Aug 7 10:01:18 EDT 2014 // Creator: jrsteven (on Linux ifarm1102 2.6.32-220.7.1.el6.x86_64 x86_64) // #ifndef _DFactoryGenerator_ #define _DFactoryGenerator_ #include #include #include "DEventRFBunch_factory_L3.h" class DFactoryGenerator_EventRFBunch_L3 : public jana::JFactoryGenerator { public: virtual const char* className(void){return static_className();} static const char* static_className(void){return "DFactoryGenerator_EventRFBunch_L3";} jerror_t GenerateFactories(jana::JEventLoop* locEventLoop) { // add custom trigger factories to plugin locEventLoop->AddFactory(new DEventRFBunch_factory_L3()); return NOERROR; } }; #endif // _DFactoryGenerator_