00001 //------------------------------------------------------------- 00002 // Go4 Release Package v3.04-01 (build 30401) 00003 // 28-November-2008 00004 //--------------------------------------------------------------- 00005 // The GSI Online Offline Object Oriented (Go4) Project 00006 // Experiment Data Processing at EE department, GSI 00007 //--------------------------------------------------------------- 00008 // 00009 //Copyright (C) 2000- Gesellschaft f. Schwerionenforschung, GSI 00010 // Planckstr. 1, 64291 Darmstadt, Germany 00011 //Contact: http://go4.gsi.de 00012 //---------------------------------------------------------------- 00013 //This software can be used under the license agreements as stated 00014 //in Go4License.txt file which is part of the distribution. 00015 //---------------------------------------------------------------- 00016 #ifndef TXXXParameter_H 00017 #define TXXXParameter_H 00018 00019 #include "TGo4Parameter.h" 00020 00021 #define __ARRAYSIZE__ 100 00022 #define __MEVX__ 5 00023 #define __MEVY__ 10 00024 00025 00026 class TXXXParameter : public TGo4Parameter { 00027 public: 00028 TXXXParameter(); 00029 TXXXParameter(const char* name); 00030 virtual ~TXXXParameter(); 00031 00032 Int_t PrintParameter(Text_t * n, Int_t); 00033 Bool_t UpdateFrom(TGo4Parameter *); 00034 Float_t frP1; 00035 Float_t frP2; 00036 Int_t fiNum; 00037 Bool_t fbEnab; 00038 Double_t fdTest; 00039 Short_t fsTest; 00040 Char_t fcTest; 00041 Long_t flTest; 00042 TString fxInputfile; 00043 Int_t fiDataArray[__ARRAYSIZE__]; 00044 Double_t fdMeV[__MEVX__][__MEVY__]; 00045 UInt_t fuNum; 00046 Double_t fdTestarr[__MEVX__]; 00047 UShort_t fuShort; 00048 UChar_t fuChar; 00049 ULong_t fuLong; 00050 00051 ClassDef(TXXXParameter,1) 00052 }; 00053 00054 #endif 00055 00056 //----------------------------END OF GO4 SOURCE FILE ---------------------