StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StjTreeEntryMaker.cxx
1 // $Id: StjTreeEntryMaker.cxx,v 1.3 2008/08/10 23:04:36 tai Exp $
2 // Copyright (C) 2008 Tai Sakuma <sakuma@bnl.gov>
3 
4 #include "StjTreeEntryMaker.h"
5 
6 #include "StjTreeEntryCoordinator.h"
7 
8 #include <TFile.h>
9 
10 ClassImp(StjTreeEntryMaker)
11 
12 Int_t StjTreeEntryMaker::Init()
13 {
14  _coord->Init();
15  return kStOk;
16 }
17 
19 {
20  _coord->Make();
21  if(_coord->eof()) return kStEOF;
22  return kStOk;
23 }
24 
25 
26 
Definition: Stypes.h:43
Definition: Stypes.h:41