// $Id$ // // File: DEventProcessor_bcal_hists.h // Created: Mon Apr 3 11:38:03 EDT 2006 // Creator: davidl (on Darwin swire-b241.jlab.org 8.4.0 powerpc) // #ifndef _DEventProcessor_upv_hists_ #define _DEventProcessor_upv_hists_ #include #include #include #include class DEventProcessor_upv_hists:public JEventProcessor{ public: DEventProcessor_upv_hists(){}; ~DEventProcessor_upv_hists(){}; const char* className(void){return "DEventProcessor_upv_hists";} private: jerror_t init(void); ///< Called once at program start. jerror_t brun(JEventLoop *eventLoop, int runnumber); ///< Called everytime a new run number is detected. jerror_t evnt(JEventLoop *eventLoop, int eventnumber); ///< Called every event. jerror_t erun(void); ///< Called everytime run number changes, provided brun has been called. jerror_t fini(void); ///< Called after last event of last event source has been processed. TH2F* xy_shower; TH1F* z_shower; TH1F* E_shower; TH1F* Etotal; }; #endif // _DEventProcessor_upv_hists_