00001 // $Id: TGo4TreeStoreParameter.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 TGO4TREESTOREPARAMETER_H 00015 #define TGO4TREESTOREPARAMETER_H 00016 00017 #include "TGo4EventStoreParameter.h" 00018 #include "TString.h" 00019 00020 class TGo4TreeStoreParameter : public TGo4EventStoreParameter { 00021 friend class TGo4TreeStore; 00022 00023 public: 00024 TGo4TreeStoreParameter() ; 00025 00026 TGo4TreeStoreParameter(const char* name, 00027 Int_t splitlevel=1, 00028 Int_t bufsize=64000, 00029 const char* filename=0, 00030 Int_t compression=5); 00031 00032 virtual ~TGo4TreeStoreParameter() ; 00033 00036 virtual Int_t PrintParameter(Text_t* buffer=0, Int_t buflen=0); 00037 00039 virtual Bool_t UpdateFrom(TGo4Parameter* rhs); 00040 00041 private: 00042 Int_t fiSplit; 00043 Int_t fiBufsize; 00044 Int_t fiCompression; 00045 00048 TString fxBranchFile; 00049 00050 ClassDef(TGo4TreeStoreParameter,1) 00051 }; 00052 00053 #endif //TGO4TREESTOREPARAMETER_H