1 #ifndef St_tpcPedestalC_h
2 #define St_tpcPedestalC_h
5 #include "tables/St_tpcPedestal_Table.h"
10 tpcPedestal_st *Struct(Int_t i = 0) {
return ((St_tpcPedestal*) Table())->GetTable()+i;}
11 UInt_t getNumRows() {
return GetNRows();}
12 Float_t& Pedestal(Int_t sector = 1, Int_t row = 1, Int_t pad = 1)
13 {
return Struct(sector-1)->Pedestal[row-1][pad-1];}
14 Float_t& Rms(Int_t sector = 1, Int_t row = 1, Int_t pad = 1)
15 {
return Struct(sector-1)->Rms[row-1][pad-1];}
21 ClassDefChair(St_tpcPedestal, tpcPedestal_st )