00001 // $Id: TXXXParameter.h 478 2009-10-29 12:26:09Z linev $ 00002 //----------------------------------------------------------------------- 00003 // The GSI Online Offline Object Oriented (Go4) Project 00004 // Experiment Data Processing at EE department, GSI 00005 //----------------------------------------------------------------------- 00006 // Copyright (C) 2000- GSI Helmholtzzentrum für Schwerionenforschung GmbH 00007 // Planckstr. 1, 64291 Darmstadt, Germany 00008 // Contact: http://go4.gsi.de 00009 //----------------------------------------------------------------------- 00010 // This software can be used under the license agreements as stated 00011 // in Go4License.txt file which is part of the distribution. 00012 //----------------------------------------------------------------------- 00013 00014 #ifndef TXXXParameter_H 00015 #define TXXXParameter_H 00016 00017 #include "TGo4Parameter.h" 00018 00019 #define __ARRAYSIZE__ 100 00020 #define __MEVX__ 5 00021 #define __MEVY__ 10 00022 00023 00024 class TXXXParameter : public TGo4Parameter { 00025 public: 00026 TXXXParameter(const char* name = 0); 00027 00028 Float_t frP1; 00029 Float_t frP2; 00030 Int_t fiNum; 00031 Bool_t fbEnab; 00032 Double_t fdTest; 00033 Short_t fsTest; 00034 Char_t fcTest; 00035 Long_t flTest; 00036 TString fxInputfile; 00037 Int_t fiDataArray[__ARRAYSIZE__]; 00038 Double_t fdMeV[__MEVX__][__MEVY__]; 00039 UInt_t fuNum; 00040 Double_t fdTestarr[__MEVX__]; 00041 UShort_t fuShort; 00042 UChar_t fuChar; 00043 ULong_t fuLong; 00044 00045 ClassDef(TXXXParameter,1) 00046 }; 00047 00048 #endif