StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
SchedulerExample.h
1 /***************************************************************************
2  *
3  * $Id: SchedulerExample.h,v 1.2 2004/05/02 04:10:13 perev Exp $
4  * Author: Frank Laue, BNL, laue@bnl.gov
5  *
6  ***************************************************************************/
7 
8 #ifndef SchedulerExample_h
9 #define SchedulerExample_h
10 
11 #include "StMaker.h"
12 
13 #include <string>
14 using std::string;
15 
16 class StMuDstMaker;
17 class StMuDst;
18 class TH1D;
19 class TH2D;
20 class TH3D;
21 
22 
33 class SchedulerExample : public StMaker {
34  public:
35  SchedulerExample(const char* outputFile);
36  virtual ~SchedulerExample();
41  Int_t Init();
45  Int_t Make();
49  Int_t Finish();
50 
51  protected:
52  string mOutputFile;
55 
56  TH1D* mPt;
57  TH1D* mEta;
58  TH1D* mRefMultPos;
59  TH1D* mRefMultNeg;
60  TH1D* mRefMult;
61  TH3D* mVertex;
62 
63  ClassDef(SchedulerExample,0)
64 };
65 
66 #endif
67 
68 /***************************************************************************
69  *
70  * $Log: SchedulerExample.h,v $
71  * Revision 1.2 2004/05/02 04:10:13 perev
72  * private => protected
73  *
74  * Revision 1.1 2003/01/23 21:59:50 laue
75  * Modification to compile on Solaris.
76  *
77  *
78  **************************************************************************/
StMuDst * mMuDst
Pointer to the StMuDst class, which holds all the events information. Will be updated in the event lo...
StMuDstMaker * mMuDstMaker
Pointer to the StMuDstMaker which provides the events to analyse.
SchedulerExample(const char *outputFile)
Constructor, takes output filename as an agument.