00001 // $Id: StjTreeEntryMaker.cxx,v 1.3 2008/08/10 23:04:36 tai Exp $ 00002 // Copyright (C) 2008 Tai Sakuma <sakuma@bnl.gov> 00003 00004 #include "StjTreeEntryMaker.h" 00005 00006 #include "StjTreeEntryCoordinator.h" 00007 00008 #include <TFile.h> 00009 00010 ClassImp(StjTreeEntryMaker) 00011 00012 Int_t StjTreeEntryMaker::Init() 00013 { 00014 _coord->Init(); 00015 return kStOk; 00016 } 00017 00018 Int_t StjTreeEntryMaker::Make() 00019 { 00020 _coord->Make(); 00021 if(_coord->eof()) return kStEOF; 00022 return kStOk; 00023 } 00024 00025 00026
1.5.9