// $Id$ // // File: DReaction_factory_n3pi_skim.h // Created: Tue Apr 15 21:00:39 EDT 2014 // Creator: pmatt (on Darwin pmattLaptop 10.8.0 i386) // #ifndef _DReaction_factory_n3pi_skim_ #define _DReaction_factory_n3pi_skim_ #include #include #include #include #include #include using namespace std; using namespace jana; class DReaction_factory_n3pi_skim : public jana::JFactory { public: DReaction_factory_n3pi_skim() { // This is so that the created DReaction objects persist throughout the life of the program instead of being cleared each event. SetFactoryFlag(PERSISTANT); } const char* Tag(void){return "n3pi_skim";} private: jerror_t init(void); ///< Called once at program start. jerror_t fini(void); ///< Called after last event of last event source has been processed. deque dReactionStepPool; //to prevent memory leaks }; #endif // _DReaction_factory_n3pi_skim_