ROOT logo
// @(#)root/tree:$Id: TLeafC.h 20882 2007-11-19 11:31:26Z rdm $
// Author: Rene Brun   17/03/97

/*************************************************************************
 * 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_TLeafC
#define ROOT_TLeafC


//////////////////////////////////////////////////////////////////////////
//                                                                      //
// TLeafC                                                               //
//                                                                      //
// A TLeaf for a variable length string.                                //
//                                                                      //
//////////////////////////////////////////////////////////////////////////

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

class TLeafC : public TLeaf {

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

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

   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;
   virtual void   *GetValuePointer() const {return fValue;}
   char           *GetValueString()  const {return fValue;}
   virtual void    Import(TClonesArray *list, Int_t n);
   virtual void    PrintValue(Int_t i=0) const;
   virtual void    ReadBasket(TBuffer &b);
   virtual void    ReadBasketExport(TBuffer &b, TClonesArray *list, Int_t n);
   virtual void    ReadValue(ifstream & s);
   virtual void    SetAddress(void *add=0);
   
   ClassDef(TLeafC,1);  //A TLeaf for a variable length string.
};

inline Double_t TLeafC::GetValue(Int_t i) const { return fValue[i]; }

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