StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StFpdMaker.h
1 /***************************************************************************
2  *
3  * $Id: StFpdMaker.h,v 1.3 2014/08/06 11:43:15 jeromel Exp $
4  *
5  * Author: AKIO OGAWA
6  *
7  ***************************************************************************
8  *
9  * Description: FPD offline software
10  ***************************************************************************
11  *
12  * $Log: StFpdMaker.h,v $
13  * Revision 1.3 2014/08/06 11:43:15 jeromel
14  * Suffix on literals need to be space (later gcc compiler makes it an error) - first wave of fixes
15  *
16  * Revision 1.2 2003/09/10 19:47:16 perev
17  * ansi corrs
18  *
19  * Revision 1.1 2002/01/16 20:21:07 akio
20  * first version
21  *
22  *
23  **************************************************************************/
24 #ifndef STAR_StFpdMaker
25 #define STAR_StFpdMaker
26 #include "StMaker.h"
27 
28 //#define FPDP_DEBUG
29 
30 class TH1F;
31 class StEvent;
32 class StDAQReader;
34 
35 // class definition
36 class StFpdMaker : public StMaker {
37 public:
38  StFpdMaker(const char *name="fpd");
39  virtual ~StFpdMaker();
40  virtual Int_t Init();
41  virtual Int_t Make();
42  virtual Int_t Finish();
43 
44  virtual const char *GetCVS() const
45  {static const char cvs[]="Tag " __DATE__ " " __TIME__ ; return cvs;}
46 
47 protected:
48 
49 private:
50  StEvent* mEvent;
51 
52  ClassDef(StFpdMaker,0) //StAF chain virtual base class for Makers
53 };
54 #endif
virtual Int_t Make()
Definition: StFpdMaker.cxx:56
virtual Int_t Finish()
Definition: StFpdMaker.cxx:163