// $Id$ // // File: DEventProcessor_L3.cc // Created: Mon Jul 27 08:48:21 EDT 2009 // Creator: davidl (on Linux jlabl2.jlab.org 2.6.18-128.1.14.el5 i686) // #include "DEventProcessor_L3.h" using namespace jana; //------------------ // DEventProcessor_L3 (Constructor) //------------------ DEventProcessor_L3::DEventProcessor_L3() { } //------------------ // ~DEventProcessor_L3 (Destructor) //------------------ DEventProcessor_L3::~DEventProcessor_L3() { } //------------------ // init //------------------ jerror_t DEventProcessor_L3::init(void) { // Create histograms here return NOERROR; } //------------------ // brun //------------------ jerror_t DEventProcessor_L3::brun(JEventLoop *eventLoop, int runnumber) { return NOERROR; } //------------------ // evnt //------------------ jerror_t DEventProcessor_L3::evnt(JEventLoop *loop, int eventnumber) { // Fill histograms here return NOERROR; } //------------------ // erun //------------------ jerror_t DEventProcessor_L3::erun(void) { // Any final calculations on histograms (like dividing them) // should be done here. This may get called more than once. return NOERROR; } //------------------ // fini //------------------ jerror_t DEventProcessor_L3::fini(void) { // If another DEventProcessor is in the list ahead of this one, then // it will have finished before this is called. e.g. closed the // ROOT file! return NOERROR; }