StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StSstSurveyC.h
1 #ifndef StSstSurvey_h
2 #define StSstSurvey_h
3 
4 #include "St_SurveyC.h"
5 
6 class StoscOnTpc : public St_SurveyC {
7  public:
8  static StoscOnTpc* instance();
9  StoscOnTpc(St_Survey *table=0) : St_SurveyC(table) {}
10  virtual ~StoscOnTpc() {fgInstance = 0;}
11  private:
12  static StoscOnTpc* fgInstance;
13  ClassDef(StoscOnTpc,1) //C++ TChair for oscOnTpc
14 };
15 
16 class StsstOnOsc : public St_SurveyC {
17  public:
18  static StsstOnOsc* instance();
19  StsstOnOsc(St_Survey *table=0) : St_SurveyC(table) {}
20  virtual ~StsstOnOsc() {fgInstance = 0;}
21  private:
22  static StsstOnOsc* fgInstance;
23  ClassDef(StsstOnOsc,1) //C++ TChair for sstOnOsc
24 };
25 
26 class StsstLadderOnSst : public St_SurveyC {
27  public:
28  static StsstLadderOnSst* instance();
29  StsstLadderOnSst(St_Survey *table=0) : St_SurveyC(table) {}
30  virtual ~StsstLadderOnSst() {fgInstance = 0;}
31  private:
32  static StsstLadderOnSst* fgInstance;
33  ClassDef(StsstLadderOnSst,1) //C++ TChair for sstLadderOnSst
34 };
36  public:
37  static StsstSensorOnLadder* instance();
38  StsstSensorOnLadder(St_Survey *table=0) : St_SurveyC(table) {}
39  virtual ~StsstSensorOnLadder() {fgInstance = 0;}
40  private:
41  static StsstSensorOnLadder* fgInstance;
42  ClassDef(StsstSensorOnLadder,1) //C++ TChair for sstSensorOnLadder
43 };
44 
45 #endif