00001 // $Id: TXXXParameter.h 825 2011-12-19 12:47:30Z 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 #include "TArrayI.h" 00020 00021 class TXXXParameter : public TGo4Parameter { 00022 public: 00023 TXXXParameter(const char* name = 0); 00024 virtual ~TXXXParameter() {} 00025 00026 Float_t frP1; // Offset for calibration 00027 Float_t frP2; // Factor for Calibration 00028 Bool_t fbHisto; // Enable Histogramming 00029 00030 TArrayI fArr; // example of usage of array in the parameter 00031 00032 ClassDef(TXXXParameter,1) 00033 }; 00034 00035 #endif