// $Id$ // // File: DParticle_factory_Kalman.cc // Created: Thu Sep 4 14:02:44 EDT 2008 // Creator: davidl (on Darwin harriet.jlab.org 8.11.1 i386) // // This is a copy of the DParticle_factory.cc file except // it is hardwired to use the "Kalman" tagged track fitting // algorithm. This is so one can get tracks fit by the Kalman // and ALT1 methods simultaneously in the same program for the // same event. #include #include #include using namespace std; #include "DParticle_factory_Kalman.h" #include #include #include #include using namespace jana; //------------------ // init //------------------ jerror_t DParticle_factory_Kalman::init(void) { DEBUG_LEVEL = 0; gPARMS->SetDefaultParameter("TRKFIT:DEBUG_LEVEL", DEBUG_LEVEL); return NOERROR; } //------------------ // brun //------------------ jerror_t DParticle_factory_Kalman::brun(jana::JEventLoop *loop, int runnumber) { return NOERROR; } //------------------ // evnt //------------------ jerror_t DParticle_factory_Kalman::evnt(JEventLoop *loop, int eventnumber) { return NOERROR; } //------------------ // erun //------------------ jerror_t DParticle_factory_Kalman::erun(void) { return NOERROR; } //------------------ // fini //------------------ jerror_t DParticle_factory_Kalman::fini(void) { return NOERROR; }