ROOT  6.07/01
Reference Guide
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
TLeafF.cxx
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 /** \class TLeafF
13 A TLeaf for a 32 bit floating point data type.
14 */
15 
16 #include "TLeafF.h"
17 #include "TBranch.h"
18 #include "TBuffer.h"
19 #include "TClonesArray.h"
20 #include "Riostream.h"
21 
23 
24 ////////////////////////////////////////////////////////////////////////////////
25 /// Default constructor for LeafF.
26 
27 TLeafF::TLeafF(): TLeaf()
28 {
29  fLenType = 4;
30  fMinimum = 0;
31  fMaximum = 0;
32  fValue = 0;
33  fPointer = 0;
34 }
35 
36 ////////////////////////////////////////////////////////////////////////////////
37 /// Create a LeafF.
38 
39 TLeafF::TLeafF(TBranch *parent, const char *name, const char *type)
40  :TLeaf(parent, name,type)
41 {
42  fLenType = 4;
43  fMinimum = 0;
44  fMaximum = 0;
45  fValue = 0;
46  fPointer = 0;
47 }
48 
49 ////////////////////////////////////////////////////////////////////////////////
50 /// Default destructor for a LeafF.
51 
53 {
54  if (ResetAddress(0,kTRUE)) delete [] fValue;
55 }
56 
57 ////////////////////////////////////////////////////////////////////////////////
58 /// Export element from local leaf buffer to ClonesArray.
59 
61 {
62  Float_t *value = fValue;
63  for (Int_t i=0;i<n;i++) {
64  char *first = (char*)list->UncheckedAt(i);
65  Float_t *ff = (Float_t*)&first[fOffset];
66  for (Int_t j=0;j<fLen;j++) {
67  ff[j] = value[j];
68  }
69  value += fLen;
70  }
71 }
72 
73 ////////////////////////////////////////////////////////////////////////////////
74 /// Pack leaf elements in Basket output buffer.
75 
77 {
78  Int_t len = GetLen();
79  if (fPointer) fValue = *fPointer;
80  b.WriteFastArray(fValue,len);
81 }
82 
83 ////////////////////////////////////////////////////////////////////////////////
84 /// Import element from ClonesArray into local leaf buffer.
85 
87 {
88  const Float_t kFloatUndefined = -9999.;
89  Int_t j = 0;
90  char *clone;
91  for (Int_t i=0;i<n;i++) {
92  clone = (char*)list->UncheckedAt(i);
93  if (clone) memcpy(&fValue[j],clone + fOffset, 4*fLen);
94  else memcpy(&fValue[j],&kFloatUndefined, 4*fLen);
95  j += fLen;
96  }
97 }
98 
99 ////////////////////////////////////////////////////////////////////////////////
100 /// Prints leaf value.
101 
103 {
105  printf("%g",value[l]);
106 }
107 
108 ////////////////////////////////////////////////////////////////////////////////
109 /// Read leaf elements from Basket input buffer.
110 
112 {
113  if (!fLeafCount && fNdata == 1) {
114  b.ReadFloat(fValue[0]);
115  }else {
116  if (fLeafCount) {
118  if (fLeafCount->GetBranch()->GetReadEntry() != entry) {
119  fLeafCount->GetBranch()->GetEntry(entry);
120  }
121  Int_t len = Int_t(fLeafCount->GetValue());
122  if (len > fLeafCount->GetMaximum()) {
123  printf("ERROR leaf:%s, len=%d and max=%d\n",GetName(),len,fLeafCount->GetMaximum());
124  len = fLeafCount->GetMaximum();
125  }
126  fNdata = len*fLen;
127  b.ReadFastArray(fValue,len*fLen);
128  } else {
130  }
131  }
132 }
133 
134 ////////////////////////////////////////////////////////////////////////////////
135 /// Read leaf elements from Basket input buffer and export buffer to
136 /// TClonesArray objects.
137 
139 {
140  if (n*fLen == 1) {
141  b >> fValue[0];
142  } else {
144  }
145 
146  Float_t *value = fValue;
147  for (Int_t i=0;i<n;i++) {
148  char *first = (char*)list->UncheckedAt(i);
149  Float_t *ff = (Float_t*)&first[fOffset];
150  for (Int_t j=0;j<fLen;j++) {
151  ff[j] = value[j];
152  }
153  value += fLen;
154  }
155 }
156 
157 ////////////////////////////////////////////////////////////////////////////////
158 /// Read a float from std::istream s and store it into the branch buffer.
159 
160 void TLeafF::ReadValue(std::istream &s, Char_t /*delim = ' '*/)
161 {
163  for (Int_t i=0;i<fLen;i++) s >> value[i];
164 }
165 
166 ////////////////////////////////////////////////////////////////////////////////
167 /// Set leaf buffer data address.
168 
169 void TLeafF::SetAddress(void *add)
170 {
171  if (ResetAddress(add) && (add!= fValue)) {
172  delete [] fValue;
173  }
174 
175  if (add) {
176  if (TestBit(kIndirectAddress)) {
177  fPointer = (Float_t**) add;
178  Int_t ncountmax = fLen;
179  if (fLeafCount) ncountmax = fLen*(fLeafCount->GetMaximum() + 1);
180  if ((fLeafCount && ncountmax > Int_t(fLeafCount->GetValue())) ||
181  ncountmax > fNdata || *fPointer == 0) {
182  if (*fPointer) delete [] *fPointer;
183  if (ncountmax > fNdata) fNdata = ncountmax;
184  *fPointer = new Float_t[fNdata];
185  }
186  fValue = *fPointer;
187  } else {
188  fValue = (Float_t*)add;
189  }
190  } else {
191  fValue = new Float_t[fNdata];
192  fValue[0] = 0;
193  }
194 }
virtual Int_t GetLen() const
Return the number of effective elements of this leaf.
Definition: TLeaf.cxx:276
Long64_t GetReadEntry() const
Definition: TBranch.h:169
A TLeaf describes individual elements of a TBranch See TBranch structure in TTree.
Definition: TLeaf.h:37
long long Long64_t
Definition: RtypesCore.h:69
virtual void ReadBasket(TBuffer &b)
Read leaf elements from Basket input buffer.
Definition: TLeafF.cxx:111
virtual void SetAddress(void *add=0)
Set leaf buffer data address.
Definition: TLeafF.cxx:169
float Float_t
Definition: RtypesCore.h:53
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:160
Buffer base class used for serializing objects.
Definition: TBuffer.h:42
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:60
TBranch * GetBranch() const
Definition: TLeaf.h:70
Int_t fLenType
Definition: TLeaf.h:43
virtual void * GetValuePointer() const
Definition: TLeafF.h:45
Int_t fLen
Number of elements in fAddress data buffer.
Definition: TLeaf.h:42
virtual Double_t GetValue(Int_t i=0) const
Definition: TLeaf.h:122
TLeafF()
Addresss of pointer to data buffer!
virtual Int_t GetMaximum() const
Definition: TLeaf.h:76
TObject * UncheckedAt(Int_t i) const
Definition: TObjArray.h:91
ClassImp(TLeafF) TLeafF
Default constructor for LeafF.
Definition: TLeafF.cxx:22
Float_t fMaximum
Definition: TLeafF.h:32
Int_t fNdata
Definition: TLeaf.h:41
PyObject * fValue
Bool_t TestBit(UInt_t f) const
Definition: TObject.h:173
bool first
Definition: line3Dfit.C:48
TLine * l
Definition: textangle.C:4
virtual Int_t GetEntry(Long64_t entry=0, Int_t getall=0)
Read all leaves of entry and return total number of bytes read.
Definition: TBranch.cxx:1199
virtual const char * GetName() const
Returns name of object.
Definition: TNamed.h:51
A TLeaf for a 32 bit floating point data type.
Definition: TLeafF.h:28
Long64_t entry
virtual void ReadFastArray(Bool_t *b, Int_t n)=0
virtual void WriteFastArray(const Bool_t *b, Int_t n)=0
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:138
Float_t ** fPointer
Pointer to data buffer.
Definition: TLeafF.h:34
int type
Definition: TGX11.cxx:120
ClassImp(TMCParticle) void TMCParticle printf(": p=(%7.3f,%7.3f,%9.3f) ;", fPx, fPy, fPz)
Float_t fMinimum
Definition: TLeafF.h:31
Float_t * fValue
Definition: TLeafF.h:33
#define name(a, b)
Definition: linkTestLib0.cpp:5
Int_t fOffset
Definition: TLeaf.h:44
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:86
TBranch * fBranch
Definition: TLeaf.h:48
virtual void FillBasket(TBuffer &b)
Pack leaf elements in Basket output buffer.
Definition: TLeafF.cxx:76
Int_t ResetAddress(void *add, Bool_t destructor=kFALSE)
Helper routine for TLeafX::SetAddress.
Definition: TLeaf.cxx:301
TLeaf * fLeafCount
Definition: TLeaf.h:47
virtual ~TLeafF()
Default destructor for a LeafF.
Definition: TLeafF.cxx:52
virtual void PrintValue(Int_t i=0) const
Prints leaf value.
Definition: TLeafF.cxx:102
virtual void ReadFloat(Float_t &f)=0
A TTree is a list of TBranches.
Definition: TBranch.h:58
const Bool_t kTRUE
Definition: Rtypes.h:91
float value
Definition: math.cpp:443
const Int_t n
Definition: legend1.C:16