// @(#)root/tree:$Id$
// 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_TLeafD
#define ROOT_TLeafD


//////////////////////////////////////////////////////////////////////////
//                                                                      //
// TLeafD                                                               //
//                                                                      //
// A TLeaf for a 64 bit floating point data type.                       //
//                                                                      //
//////////////////////////////////////////////////////////////////////////

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

class TLeafD : public TLeaf {

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

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

   virtual void    Export(TClonesArray *list, Int_t n);
   virtual void    FillBasket(TBuffer &b);
   const char     *GetTypeName() const {return "Double_t";}
   Double_t        GetValue(Int_t i=0) const;
   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 &b);
   virtual void    ReadBasketExport(TBuffer &b, TClonesArray *list, Int_t n);
   virtual void    ReadValue(std::istream& s, Char_t delim = ' ');
   virtual void    SetAddress(void *add=0);

   ClassDef(TLeafD,1);  //A TLeaf for a 64 bit floating point data type.
};

// if leaf is a simple type, i must be set to 0
// if leaf is an array, i is the array element number to be returned
inline Double_t TLeafD::GetValue(Int_t i) const { return fValue[i]; }

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