Logo ROOT   6.14/05
Reference Guide
TLeafF.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_TLeafF
13 #define ROOT_TLeafF
14 
15 
16 //////////////////////////////////////////////////////////////////////////
17 // //
18 // TLeafF //
19 // //
20 // A TLeaf for a 32 bit floating point data type. //
21 // //
22 //////////////////////////////////////////////////////////////////////////
23 
24 #include "TLeaf.h"
25 
26 class TLeafF : public TLeaf {
27 
28 protected:
29  Float_t fMinimum; ///< Minimum value if leaf range is specified
30  Float_t fMaximum; ///< Maximum value if leaf range is specified
31  Float_t *fValue; ///<! Pointer to data buffer
32  Float_t **fPointer; ///<! Address of pointer to data buffer!
33 
34 public:
35  TLeafF();
36  TLeafF(TBranch *parent, const char *name, const char *type);
37  virtual ~TLeafF();
38 
39  virtual void Export(TClonesArray *list, Int_t n);
40  virtual void FillBasket(TBuffer &b);
41  const char *GetTypeName() const {return "Float_t";}
42  Double_t GetValue(Int_t i=0) const;
43  virtual void *GetValuePointer() const {return fValue;}
44  virtual void Import(TClonesArray *list, Int_t n);
45  virtual void PrintValue(Int_t i=0) const;
46  virtual void ReadBasket(TBuffer &b);
47  virtual void ReadBasketExport(TBuffer &b, TClonesArray *list, Int_t n);
48  virtual void ReadValue(std::istream& s, Char_t delim = ' ');
49  virtual void SetAddress(void *add=0);
50 
51  ClassDef(TLeafF,1); //A TLeaf for a 32 bit floating point data type.
52 };
53 
54 // if leaf is a simple type, i must be set to 0
55 // if leaf is an array, i is the array element number to be returned
56 inline Double_t TLeafF::GetValue(Int_t i) const { return fValue[i]; }
57 
58 #endif
A TLeaf describes individual elements of a TBranch See TBranch structure in TTree.
Definition: TLeaf.h:32
virtual void ReadBasket(TBuffer &b)
Read leaf elements from Basket input buffer.
Definition: TLeafF.cxx:113
virtual void SetAddress(void *add=0)
Set leaf buffer data address.
Definition: TLeafF.cxx:171
float Float_t
Definition: RtypesCore.h:53
Buffer base class used for serializing objects.
Definition: TBuffer.h:40
int Int_t
Definition: RtypesCore.h:41
virtual void Export(TClonesArray *list, Int_t n)
Export element from local leaf buffer to ClonesArray.
Definition: TLeafF.cxx:62
#define ClassDef(name, id)
Definition: Rtypes.h:320
virtual void * GetValuePointer() const
Definition: TLeafF.h:43
TLeafF()
Default constructor for LeafF.
Definition: TLeafF.cxx:29
Float_t fMaximum
Maximum value if leaf range is specified.
Definition: TLeafF.h:30
A TLeaf for a 32 bit floating point data type.
Definition: TLeafF.h:26
virtual void ReadBasketExport(TBuffer &b, TClonesArray *list, Int_t n)
Read leaf elements from Basket input buffer and export buffer to TClonesArray objects.
Definition: TLeafF.cxx:140
Float_t ** fPointer
! Address of pointer to data buffer!
Definition: TLeafF.h:32
double Double_t
Definition: RtypesCore.h:55
virtual void ReadValue(std::istream &s, Char_t delim=' ')
Read a float from std::istream s and store it into the branch buffer.
Definition: TLeafF.cxx:162
int type
Definition: TGX11.cxx:120
Float_t fMinimum
Minimum value if leaf range is specified.
Definition: TLeafF.h:29
static constexpr double s
Float_t * fValue
! Pointer to data buffer
Definition: TLeafF.h:31
virtual void PrintValue(Int_t i=0) const
Prints leaf value.
Definition: TLeafF.cxx:104
char Char_t
Definition: RtypesCore.h:29
An array of clone (identical) objects.
Definition: TClonesArray.h:32
virtual void Import(TClonesArray *list, Int_t n)
Import element from ClonesArray into local leaf buffer.
Definition: TLeafF.cxx:88
virtual void FillBasket(TBuffer &b)
Pack leaf elements in Basket output buffer.
Definition: TLeafF.cxx:78
you should not use this method at all Int_t Int_t Double_t Double_t Double_t Int_t Double_t Double_t Double_t Double_t b
Definition: TRolke.cxx:630
virtual ~TLeafF()
Default destructor for a LeafF.
Definition: TLeafF.cxx:54
A TTree is a list of TBranches.
Definition: TBranch.h:62
const Int_t n
Definition: legend1.C:16
char name[80]
Definition: TGX11.cxx:109
const char * GetTypeName() const
Definition: TLeafF.h:41
Double_t GetValue(Int_t i=0) const
Definition: TLeafF.h:56