StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StFmsBitCheckMaker.h
1 #ifndef ST_FMS_BITCHECK_MAKER_H
2 #define ST_FMS_BITCHECK_MAKER_H
3 
4 #include "StMaker.h"
5 
6 class StFmsBitCheckMaker : public StMaker {
7 public:
8  StFmsBitCheckMaker(const char* name = "bitcheck");
9 
10  void Clear(Option_t* option = "");
11  int Init();
12  int InitRun(int runNumber);
13  int Make();
14  int Finish();
15  void setRun(int v) {mRun=v;}
16  void setPrint(int v) {mPrint=v;}
17 
18 private:
19  int mRun;
20  int mPrint;
21 
22  ClassDef(StFmsBitCheckMaker,0);
23 };
24 
25 #endif
26 
void Clear(Option_t *option="")
User defined functions.