00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef STSVTT0_HH
00020 #define STSVTT0_HH
00021
00022 #include "StObject.h"
00023
00024 class StSvtConfig;
00025 class svg_geom_st;
00026 class svg_shape_st;
00027 class srs_srspar_st;
00028
00029 class StSvtT0: public StObject
00030 {
00031 public:
00032 StSvtT0();
00033 virtual ~StSvtT0();
00034
00035 StSvtT0(const StSvtT0&);
00036 StSvtT0& operator = (const StSvtT0&);
00037
00038 void setT0(double x, int readoutBox){t0[readoutBox-1]=x;}
00039 void setFsca(double x){fsca=x;}
00040
00041 double getT0(int readoutBox=1){return t0[readoutBox-1];}
00042 double getFsca(){return fsca;}
00043
00044 private:
00045
00046 double t0[24];
00047 double fsca;
00048
00049 ClassDef(StSvtT0,1)
00050 };
00051
00052 #endif