GSI Object Oriented Online Offline (Go4)  GO4-6.3.0
TGo4BackStoreParameter.h
Go to the documentation of this file.
1 // $Id$
2 //-----------------------------------------------------------------------
3 // The GSI Online Offline Object Oriented (Go4) Project
4 // Experiment Data Processing at EE department, GSI
5 //-----------------------------------------------------------------------
6 // Copyright (C) 2000- GSI Helmholtzzentrum fuer Schwerionenforschung GmbH
7 // Planckstr. 1, 64291 Darmstadt, Germany
8 // Contact: http://go4.gsi.de
9 //-----------------------------------------------------------------------
10 // This software can be used under the license agreements as stated
11 // in Go4License.txt file which is part of the distribution.
12 //-----------------------------------------------------------------------
13 
14 #ifndef TGO4BACKSTOREPARAMETER_H
15 #define TGO4BACKSTOREPARAMETER_H
16 
18 
20 
21  public:
23 
24  TGo4BackStoreParameter(const char *name,
25  Int_t splitlevel = 99,
26  Int_t bufsize = 32000);
27 
28  virtual ~TGo4BackStoreParameter();
29 
30  void Print(Option_t *opt = "") const override;
31 
33  Bool_t UpdateFrom(TGo4Parameter *rhs) override;
34 
35  Int_t GetSplitlevel() const { return fiSplit; }
36  void SetSplitlevel(Int_t split) { fiSplit = split; }
37 
38  Int_t GetBufsize() const { return fiBufsize; }
39  void SetBufsize(Int_t bufsize) { fiBufsize = bufsize; }
40 
41  private:
42 
44  Int_t fiSplit{99};
45 
47  Int_t fiBufsize{64000};
48 
49  ClassDefOverride(TGo4BackStoreParameter,1)
50 };
51 
52 #endif //TGO4BACKSTOREPARAMETER_H
void SetSplitlevel(Int_t split)
void Print(Option_t *opt="") const override
Bool_t UpdateFrom(TGo4Parameter *rhs) override
void SetBufsize(Int_t bufsize)