StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
St_TpcSecRowCorC.h
1 #ifndef St_TpcSecRowCorC_h
2 #define St_TpcSecRowCorC_h
3 
4 #include "TChair.h"
5 #include "tables/St_TpcSecRowCor_Table.h"
6 
7 class St_TpcSecRowCorC : public TChair {
8  public:
9  TpcSecRowCor_st *Struct(Int_t i = 0) {return ((St_TpcSecRowCor*) Table())->GetTable()+i;}
10  UInt_t getNumRows() {return GetNRows();}
11  Float_t* GainScale(Int_t i = 0) {return Struct(i)->GainScale;}
12  Float_t* GainRms(Int_t i = 0) {return Struct(i)->GainRms;}
13  protected:
14  St_TpcSecRowCorC(St_TpcSecRowCor *table=0) : TChair(table) {}
15  virtual ~St_TpcSecRowCorC() {}
16  private:
17  ClassDef(St_TpcSecRowCorC,1) //C++ TChair for TpcSecRowCor table class
18 };
19 #endif
Definition: TChair.h:27