StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StDetectorDbMaker.h
1 #ifndef STAR_StDetectorDbMaker
2 #define STAR_StDetectorDbMaker
3 
4 #ifndef STAR_StMaker
5 #include "StMaker.h"
6 #endif
7 
8 class StDetectorDbMaker : public StMaker {
9  public:
10  StDetectorDbMaker(const char *name="DetectorDb") : StMaker(name) {fgStDetectorDbMaker = this; }
11  virtual ~StDetectorDbMaker() {fgStDetectorDbMaker = 0;}
12  virtual Int_t InitRun(Int_t runumber);
13  virtual Int_t Make();
14  static StDetectorDbMaker *instance() {return fgStDetectorDbMaker;}
15  private:
16  static Int_t _debug;
17  virtual const char *GetCVS() const
18  {static const char cvs[]="Tag $Name: $ $Id: StDetectorDbMaker.h,v 1.5 2015/12/23 23:34:09 fisyak Exp $ built " __DATE__ " " __TIME__ ; return cvs;}
19  static StDetectorDbMaker *fgStDetectorDbMaker;
20  ClassDef(StDetectorDbMaker,0) //StAF chain virtual base class for Makers
21 };
22 
23 #endif
StMaker(const char *name="", const char *dummy=0)
Constructor & Destructor.
Definition: StMaker.cxx:188
virtual Int_t Make()