StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StGmtSurveyC.h
1 #ifndef StGmtSurvey_h
2 #define StGmtSurvey_h
3 
4 #include "St_SurveyC.h"
5 
6 class StGmtOnTpc : public St_SurveyC {
7  public:
8  static StGmtOnTpc* instance();
9  StGmtOnTpc(St_Survey *table=0) : St_SurveyC(table) {}
10  virtual ~StGmtOnTpc() {fgInstance = 0;}
11  private:
12  static StGmtOnTpc* fgInstance;
13  ClassDef(StGmtOnTpc,1) //C++ TChair
14 };
15 
16 
17 class StGmtOnModule : public St_SurveyC {
18  public:
19  static StGmtOnModule* instance();
20  StGmtOnModule(St_Survey *table=0) : St_SurveyC(table) {}
21  virtual ~StGmtOnModule() {fgInstance = 0;}
22  private:
23  static StGmtOnModule* fgInstance;
24  ClassDef(StGmtOnModule,1) //C++ TChair
25 };
26 
27 #endif