Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
TLeafO.h
Go to the documentation of this file.
1 // @(#)root/tree:$Id$
2 // Author: Philippe Canal 20/1/05
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2005, Rene Brun and Fons Rademakers. *
6  * All rights reserved. *
7  * *
8  * For the licensing terms see $ROOTSYS/LICENSE. *
9  * For the list of contributors see $ROOTSYS/README/CREDITS. *
10  *************************************************************************/
11 
12 #ifndef ROOT_TLeafO
13 #define ROOT_TLeafO
14 
15 
16 //////////////////////////////////////////////////////////////////////////
17 // //
18 // TLeafO //
19 // //
20 // A TLeaf for a bool data type. //
21 // //
22 //////////////////////////////////////////////////////////////////////////
23 
24 #include "TLeaf.h"
25 
26 class TLeafO : public TLeaf {
27 
28 protected:
29  Bool_t fMinimum; ///< Minimum value if leaf range is specified
30  Bool_t fMaximum; ///< Maximum value if leaf range is specified
31  Bool_t *fValue; ///<! Pointer to data buffer
32  Bool_t **fPointer; ///<! Address of a pointer to data buffer!
33 
34 public:
35  TLeafO();
36  TLeafO(TBranch *parent, const char *name, const char *type);
37  virtual ~TLeafO();
38 
39  virtual void Export(TClonesArray *list, Int_t n);
40  virtual void FillBasket(TBuffer &b);
41  virtual Int_t GetMaximum() const {return fMaximum;}
42  virtual Int_t GetMinimum() const {return fMinimum;}
43  const char *GetTypeName() const;
44  Double_t GetValue(Int_t i=0) const;
45  virtual void *GetValuePointer() const {return fValue;}
46  virtual Bool_t IncludeRange(TLeaf *);
47  virtual void Import(TClonesArray *list, Int_t n);
48  virtual void PrintValue(Int_t i=0) const;
49  virtual void ReadBasket(TBuffer &b);
50  virtual void ReadBasketExport(TBuffer &b, TClonesArray *list, Int_t n);
51  virtual void ReadValue(std::istream& s, Char_t delim = ' ');
52  virtual void SetAddress(void *add=0);
53  virtual void SetMaximum(Bool_t max) { fMaximum = max; }
54  virtual void SetMinimum(Bool_t min) { fMinimum = min; }
55 
56  ClassDef(TLeafO,1); //A TLeaf for an 8 bit Integer data type.
57 };
58 
59 inline Double_t TLeafO::GetValue(Int_t i) const { return fValue[i]; }
60 
61 #endif