// $Id$ // // File: DFactoryGenerator_Bee.h // Created: Thu Nov 10 13:25:05 EST 2016 // Creator: cfanelli (on Linux ifarm1101 2.6.32-431.el6.x86_64 x86_64) // #ifndef _DFactoryGenerator_Bee_ #define _DFactoryGenerator_Bee_ #include #include #include "DReaction_factory_Bee.h" class DFactoryGenerator_Bee : public jana::JFactoryGenerator { public: virtual const char* className(void){return static_className();} static const char* static_className(void){return "DFactoryGenerator_Bee";} jerror_t GenerateFactories(jana::JEventLoop* locEventLoop) { locEventLoop->AddFactory(new DReaction_factory_Bee()); return NOERROR; } }; #endif // _DFactoryGenerator_Bee_