StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StjTreeEntryMaker.h
1 // -*- mode: c++;-*-
2 // $Id: StjTreeEntryMaker.h,v 1.4 2008/08/10 23:04:36 tai Exp $
3 // Copyright (C) 2008 Tai Sakuma <sakuma@bnl.gov>
4 #ifndef STJTREEENTRYMAKER_H
5 #define STJTREEENTRYMAKER_H
6 
7 #include "StMaker.h"
8 
9 class TDirectory;
10 
12 
13 class StjTreeEntryMaker : public StMaker {
14 
15 public:
16  StjTreeEntryMaker(const Char_t *name, StjTreeEntryCoordinator* coord)
17  : StMaker(name), _coord(coord) { }
18  virtual ~StjTreeEntryMaker() { }
19 
20  StjTreeEntryCoordinator* coordinator() { return _coord; }
21 
22  Int_t Init();
23  Int_t Make();
24 
25 private:
26 
28 
29  ClassDef(StjTreeEntryMaker, 0)
30 
31 };
32 
33 #endif // STJTREEENTRYMAKER_H
StMaker(const char *name="", const char *dummy=0)
Constructor &amp; Destructor.
Definition: StMaker.cxx:188