// $Id$ // // File: DReaction_factory_etaetaprm_nas.h // Created: Fri Jul 22 09:57:29 EDT 2016 // Creator: nathansparks (on Darwin MBP.local 15.5.0 i386) // #ifndef _DReaction_factory_etaetaprm_nas_ #define _DReaction_factory_etaetaprm_nas_ #include #include #include #include #include #include using namespace std; using namespace jana; class DReaction_factory_etaetaprm_nas : public jana::JFactory { public: DReaction_factory_etaetaprm_nas() { // 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 "etaetaprm_nas";} private: jerror_t brun(JEventLoop* locEventLoop, int32_t locRunNumber); jerror_t evnt(JEventLoop* locEventLoop, uint64_t locEventNumber); jerror_t fini(void); ///< Called after last event of last event source has been processed. double dBeamBunchPeriod; deque dReactionStepPool; //to prevent memory leaks }; #endif // _DReaction_factory_etaetaprm_nas_