ROOT logo
// @(#)root/tree:$Id: TLeafB.h 20882 2007-11-19 11:31:26Z rdm $
// Author: Rene Brun   12/01/96

/*************************************************************************
 * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers.               *
 * All rights reserved.                                                  *
 *                                                                       *
 * For the licensing terms see $ROOTSYS/LICENSE.                         *
 * For the list of contributors see $ROOTSYS/README/CREDITS.             *
 *************************************************************************/

#ifndef ROOT_TLeafB
#define ROOT_TLeafB


//////////////////////////////////////////////////////////////////////////
//                                                                      //
// TLeafB                                                               //
//                                                                      //
// A TLeaf for an 8 bit Integer data type.                              //
//                                                                      //
//////////////////////////////////////////////////////////////////////////

#ifndef ROOT_TLeaf
#include "TLeaf.h"
#endif

class TLeafB : public TLeaf {

protected:
   Char_t       fMinimum;         //Minimum value if leaf range is specified
   Char_t       fMaximum;         //Maximum value if leaf range is specified
   Char_t       *fValue;          //!Pointer to data buffer
   Char_t       **fPointer;       //!Address of a pointer to data buffer!

public:
   TLeafB();
   TLeafB(TBranch *parent, const char* name, const char* type);
   virtual ~TLeafB();

   virtual void    Export(TClonesArray* list, Int_t n);
   virtual void    FillBasket(TBuffer& b);
   virtual Int_t   GetMaximum() const { return fMaximum; }
   virtual Int_t   GetMinimum() const { return fMinimum; }
   const char     *GetTypeName() const;
   Double_t        GetValue(Int_t i = 0) const { return IsUnsigned() ? ((UChar_t) fValue[i]) : fValue[i]; }
   virtual void   *GetValuePointer() const { return fValue; }
   virtual void    Import(TClonesArray* list, Int_t n);
   virtual void    PrintValue(Int_t i = 0) const;
   virtual void    ReadBasket(TBuffer&);
   virtual void    ReadBasketExport(TBuffer&, TClonesArray* list, Int_t n);
   virtual void    ReadValue(ifstream&);
   virtual void    SetAddress(void* addr = 0);
   virtual void    SetMaximum(Char_t max) { fMaximum = max; }
   virtual void    SetMinimum(Char_t min) { fMinimum = min; }
   
   ClassDef(TLeafB,1);  //A TLeaf for an 8 bit Integer data type.
};

#endif
 TLeafB.h:1
 TLeafB.h:2
 TLeafB.h:3
 TLeafB.h:4
 TLeafB.h:5
 TLeafB.h:6
 TLeafB.h:7
 TLeafB.h:8
 TLeafB.h:9
 TLeafB.h:10
 TLeafB.h:11
 TLeafB.h:12
 TLeafB.h:13
 TLeafB.h:14
 TLeafB.h:15
 TLeafB.h:16
 TLeafB.h:17
 TLeafB.h:18
 TLeafB.h:19
 TLeafB.h:20
 TLeafB.h:21
 TLeafB.h:22
 TLeafB.h:23
 TLeafB.h:24
 TLeafB.h:25
 TLeafB.h:26
 TLeafB.h:27
 TLeafB.h:28
 TLeafB.h:29
 TLeafB.h:30
 TLeafB.h:31
 TLeafB.h:32
 TLeafB.h:33
 TLeafB.h:34
 TLeafB.h:35
 TLeafB.h:36
 TLeafB.h:37
 TLeafB.h:38
 TLeafB.h:39
 TLeafB.h:40
 TLeafB.h:41
 TLeafB.h:42
 TLeafB.h:43
 TLeafB.h:44
 TLeafB.h:45
 TLeafB.h:46
 TLeafB.h:47
 TLeafB.h:48
 TLeafB.h:49
 TLeafB.h:50
 TLeafB.h:51
 TLeafB.h:52
 TLeafB.h:53
 TLeafB.h:54
 TLeafB.h:55
 TLeafB.h:56
 TLeafB.h:57
 TLeafB.h:58
 TLeafB.h:59
 TLeafB.h:60