ROOT  6.07/01
Reference Guide
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
TLeafD.h
Go to the documentation of this file.
1 // @(#)root/tree:$Id$
2 // Author: Rene Brun 12/01/96
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2000, 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_TLeafD
13 #define ROOT_TLeafD
14 
15 
16 //////////////////////////////////////////////////////////////////////////
17 // //
18 // TLeafD //
19 // //
20 // A TLeaf for a 64 bit floating point data type. //
21 // //
22 //////////////////////////////////////////////////////////////////////////
23 
24 #ifndef ROOT_TLeaf
25 #include "TLeaf.h"
26 #endif
27 
28 class TLeafD : public TLeaf {
29 
30 protected:
31  Double_t fMinimum; //Minimum value if leaf range is specified
32  Double_t fMaximum; //Maximum value if leaf range is specified
33  Double_t *fValue; //!Pointer to data buffer
34  Double_t **fPointer; //!Address of pointer to data buffer
35 
36 public:
37  TLeafD();
38  TLeafD(TBranch *parent, const char *name, const char *type);
39  virtual ~TLeafD();
40 
41  virtual void Export(TClonesArray *list, Int_t n);
42  virtual void FillBasket(TBuffer &b);
43  const char *GetTypeName() const {return "Double_t";}
44  Double_t GetValue(Int_t i=0) const;
45  virtual void *GetValuePointer() const {return fValue;}
46  virtual void Import(TClonesArray *list, Int_t n);
47  virtual void PrintValue(Int_t i=0) const;
48  virtual void ReadBasket(TBuffer &b);
49  virtual void ReadBasketExport(TBuffer &b, TClonesArray *list, Int_t n);
50  virtual void ReadValue(std::istream& s, Char_t delim = ' ');
51  virtual void SetAddress(void *add=0);
52 
53  ClassDef(TLeafD,1); //A TLeaf for a 64 bit floating point data type.
54 };
55 
56 // if leaf is a simple type, i must be set to 0
57 // if leaf is an array, i is the array element number to be returned
58 inline Double_t TLeafD::GetValue(Int_t i) const { return fValue[i]; }
59 
60 #endif
Double_t * fValue
Definition: TLeafD.h:33
A TLeaf describes individual elements of a TBranch See TBranch structure in TTree.
Definition: TLeaf.h:37
A TLeaf for a 64 bit floating point data type.
Definition: TLeafD.h:28
virtual ~TLeafD()
Default destructor for a LeafD.
Definition: TLeafD.cxx:52
virtual void FillBasket(TBuffer &b)
Pack leaf elements in Basket output buffer.
Definition: TLeafD.cxx:72
virtual void ReadBasketExport(TBuffer &b, TClonesArray *list, Int_t n)
Read leaf elements from Basket input buffer and export buffer to TClonesArray objects.
Definition: TLeafD.cxx:134
Buffer base class used for serializing objects.
Definition: TBuffer.h:42
int Int_t
Definition: RtypesCore.h:41
virtual void SetAddress(void *add=0)
Set leaf buffer data address.
Definition: TLeafD.cxx:157
virtual void PrintValue(Int_t i=0) const
Prints leaf value.
Definition: TLeafD.cxx:98
virtual void * GetValuePointer() const
Definition: TLeafD.h:45
virtual void Import(TClonesArray *list, Int_t n)
Import element from ClonesArray into local leaf buffer.
Definition: TLeafD.cxx:82
Double_t ** fPointer
Pointer to data buffer.
Definition: TLeafD.h:34
const char * GetTypeName() const
Definition: TLeafD.h:43
Double_t fMinimum
Definition: TLeafD.h:31
Double_t GetValue(Int_t i=0) const
Definition: TLeafD.h:58
ClassDef(TLeafD, 1)
double Double_t
Definition: RtypesCore.h:55
int type
Definition: TGX11.cxx:120
virtual void ReadBasket(TBuffer &b)
Read leaf elements from Basket input buffer.
Definition: TLeafD.cxx:107
#define name(a, b)
Definition: linkTestLib0.cpp:5
char Char_t
Definition: RtypesCore.h:29
An array of clone (identical) objects.
Definition: TClonesArray.h:32
virtual void ReadValue(std::istream &s, Char_t delim= ' ')
Read a double from std::istream s and store it into the branch buffer.
Definition: TLeafD.cxx:148
Double_t fMaximum
Definition: TLeafD.h:32
virtual void Export(TClonesArray *list, Int_t n)
Export element from local leaf buffer to ClonesArray.
Definition: TLeafD.cxx:60
A TTree is a list of TBranches.
Definition: TBranch.h:58
const Int_t n
Definition: legend1.C:16
TLeafD()
Address of pointer to data buffer.