Logo ROOT   6.08/07
Reference Guide
TLeafL.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 TLeafL
13 \ingroup tree
14 
15 A TLeaf for a 64 bit Integer data type.
16 */
17 
18 #include "TLeafL.h"
19 #include "TBranch.h"
20 #include "TBuffer.h"
21 #include "TClonesArray.h"
22 #include "Riostream.h"
23 
25 
26 ////////////////////////////////////////////////////////////////////////////////
27 /// Default constructor for LeafL.
28 
30 {
31  fLenType = sizeof(Long64_t);
32  fMinimum = 0;
33  fMaximum = 0;
34  fValue = 0;
35  fPointer = 0;
36 }
37 
38 ////////////////////////////////////////////////////////////////////////////////
39 /// Create a LeafL.
40 
41 TLeafL::TLeafL(TBranch *parent, const char *name, const char *type)
42  :TLeaf(parent, name,type)
43 {
44  fLenType = sizeof(Long64_t);
45  fMinimum = 0;
46  fMaximum = 0;
47  fValue = 0;
48  fPointer = 0;
49 }
50 
51 ////////////////////////////////////////////////////////////////////////////////
52 /// Default destructor for a LeafL.
53 
55 {
56  if (ResetAddress(0,kTRUE)) delete [] fValue;
57 }
58 
59 ////////////////////////////////////////////////////////////////////////////////
60 /// Export element from local leaf buffer to ClonesArray.
61 
63 {
64  Long64_t *value = fValue;
65  for (Int_t i=0;i<n;i++) {
66  char *first = (char*)list->UncheckedAt(i);
67  Long64_t *ii = (Long64_t*)&first[fOffset];
68  for (Int_t j=0;j<fLen;j++) {
69  ii[j] = value[j];
70  }
71  value += fLen;
72  }
73 }
74 
75 ////////////////////////////////////////////////////////////////////////////////
76 /// Pack leaf elements in Basket output buffer.
77 
79 {
80  Int_t i;
81  Int_t len = GetLen();
82  if (fPointer) fValue = *fPointer;
83  if (IsRange()) {
84  if (fValue[0] > fMaximum) fMaximum = fValue[0];
85  }
86  if (IsUnsigned()) {
87  for (i=0;i<len;i++) b << (ULong64_t)fValue[i];
88  } else {
89  b.WriteFastArray(fValue,len);
90  }
91 }
92 
93 ////////////////////////////////////////////////////////////////////////////////
94 /// Returns name of leaf type.
95 
96 const char *TLeafL::GetTypeName() const
97 {
98  if (fIsUnsigned) return "ULong64_t";
99  return "Long64_t";
100 }
101 
102 ////////////////////////////////////////////////////////////////////////////////
103 /// Returns current value of leaf.
104 /// - if leaf is a simple type, i must be set to 0
105 /// - if leaf is an array, i is the array element number to be returned
106 
108 {
109  if (fIsUnsigned) return (Double_t)((ULong64_t)fValue[i]);
110  return fValue[i];
111 }
112 
113 ////////////////////////////////////////////////////////////////////////////////
114 /// Returns current value of leaf
115 /// - if leaf is a simple type, i must be set to 0
116 /// - if leaf is an array, i is the array element number to be returned
117 
119 {
120  if (fIsUnsigned) return (LongDouble_t)((ULong64_t)fValue[i]);
121  return fValue[i];
122 }
123 
124 ////////////////////////////////////////////////////////////////////////////////
125 /// Import element from ClonesArray into local leaf buffer.
126 
128 {
129  const Int_t kIntUndefined = -9999;
130  Int_t j = 0;
131  char *clone;
132  for (Int_t i=0;i<n;i++) {
133  clone = (char*)list->UncheckedAt(i);
134  if (clone) memcpy(&fValue[j],clone + fOffset, 8*fLen);
135  else memcpy(&fValue[j],&kIntUndefined, 8*fLen);
136  j += fLen;
137  }
138 }
139 
140 ////////////////////////////////////////////////////////////////////////////////
141 /// Prints leaf value.
142 
144 {
145  if (fIsUnsigned) {
146  ULong64_t *uvalue = (ULong64_t*)GetValuePointer();
147  printf("%llu",uvalue[l]);
148  } else {
149  Long64_t *value = (Long64_t*)GetValuePointer();
150  printf("%lld",value[l]);
151  }
152 }
153 
154 ////////////////////////////////////////////////////////////////////////////////
155 /// Read leaf elements from Basket input buffer.
156 
158 {
159  if (!fLeafCount && fNdata == 1) {
160  b.ReadLong64(fValue[0]);
161  } else {
162  if (fLeafCount) {
163  Long64_t entry = fBranch->GetReadEntry();
164  if (fLeafCount->GetBranch()->GetReadEntry() != entry) {
165  fLeafCount->GetBranch()->GetEntry(entry);
166  }
167  Int_t len = Int_t(fLeafCount->GetValue());
168  if (len > fLeafCount->GetMaximum()) {
169  printf("ERROR leaf:%s, len=%d and max=%d\n",GetName(),len,fLeafCount->GetMaximum());
170  len = fLeafCount->GetMaximum();
171  }
172  fNdata = len*fLen;
173  b.ReadFastArray(fValue,len*fLen);
174  } else {
176  }
177  }
178 }
179 
180 ////////////////////////////////////////////////////////////////////////////////
181 /// Read leaf elements from Basket input buffer and export buffer to
182 /// TClonesArray objects.
183 
185 {
186  if (n*fLen == 1) {
187  b >> fValue[0];
188  } else {
190  }
191  Long64_t *value = fValue;
192  for (Int_t i=0;i<n;i++) {
193  char *first = (char*)list->UncheckedAt(i);
194  Long64_t *ii = (Long64_t*)&first[fOffset];
195  for (Int_t j=0;j<fLen;j++) {
196  ii[j] = value[j];
197  }
198  value += fLen;
199  }
200 }
201 
202 ////////////////////////////////////////////////////////////////////////////////
203 /// Read a long integer from std::istream s and store it into the branch buffer.
204 
205 void TLeafL::ReadValue(std::istream &s, Char_t /*delim = ' '*/)
206 {
207 #if defined(_MSC_VER) && (_MSC_VER<1300)
208  printf("Due to a bug in VC++6, the function TLeafL::ReadValue is dummy\n");
209 #else
210  if (fIsUnsigned) {
211  ULong64_t *uvalue = (ULong64_t*)GetValuePointer();
212  for (Int_t i=0;i<fLen;i++) s >> uvalue[i];
213  } else {
214  Long64_t *value = (Long64_t*)GetValuePointer();
215  for (Int_t i=0;i<fLen;i++) s >> value[i];
216  }
217 #endif
218 }
219 
220 ////////////////////////////////////////////////////////////////////////////////
221 /// Set leaf buffer data address.
222 
223 void TLeafL::SetAddress(void *add)
224 {
225  if (ResetAddress(add) && (add!=fValue)) {
226  delete [] fValue;
227  }
228  if (add) {
229  if (TestBit(kIndirectAddress)) {
230  fPointer = (Long64_t**) add;
231  Int_t ncountmax = fLen;
232  if (fLeafCount) ncountmax = fLen*(fLeafCount->GetMaximum() + 1);
233  if ((fLeafCount && ncountmax > Int_t(fLeafCount->GetValue())) ||
234  ncountmax > fNdata || *fPointer == 0) {
235  if (*fPointer) delete [] *fPointer;
236  if (ncountmax > fNdata) fNdata = ncountmax;
237  *fPointer = new Long64_t[fNdata];
238  }
239  fValue = *fPointer;
240  } else {
241  fValue = (Long64_t*)add;
242  }
243  } else {
244  fValue = new Long64_t[fNdata];
245  fValue[0] = 0;
246  }
247 }
248 
Long64_t fMinimum
Minimum value if leaf range is specified.
Definition: TLeafL.h:32
virtual const char * GetName() const
Returns name of object.
Definition: TNamed.h:51
A TLeaf describes individual elements of a TBranch See TBranch structure in TTree.
Definition: TLeaf.h:37
virtual void Import(TClonesArray *list, Int_t n)
Import element from ClonesArray into local leaf buffer.
Definition: TLeafL.cxx:127
long long Long64_t
Definition: RtypesCore.h:69
virtual Double_t GetValue(Int_t i=0) const
Returns current value of leaf.
Definition: TLeafL.cxx:107
Long64_t ** fPointer
! Address of pointer to data buffer
Definition: TLeafL.h:35
Bool_t TestBit(UInt_t f) const
Definition: TObject.h:157
virtual Bool_t IsUnsigned() const
Definition: TLeaf.h:91
Buffer base class used for serializing objects.
Definition: TBuffer.h:42
virtual void * GetValuePointer() const
Definition: TLeafL.h:50
int Int_t
Definition: RtypesCore.h:41
Int_t fLenType
Number of bytes for this data type.
Definition: TLeaf.h:43
const char * GetTypeName() const
Returns name of leaf type.
Definition: TLeafL.cxx:96
virtual Double_t GetValue(Int_t i=0) const
Definition: TLeaf.h:122
virtual void ReadValue(std::istream &s, Char_t delim=' ')
Read a long integer from std::istream s and store it into the branch buffer.
Definition: TLeafL.cxx:205
virtual void ReadBasketExport(TBuffer &b, TClonesArray *list, Int_t n)
Read leaf elements from Basket input buffer and export buffer to TClonesArray objects.
Definition: TLeafL.cxx:184
virtual Bool_t IsRange() const
Definition: TLeaf.h:90
Int_t fLen
Number of fixed length elements.
Definition: TLeaf.h:42
Long64_t * fValue
! Pointer to data buffer
Definition: TLeafL.h:34
virtual void FillBasket(TBuffer &b)
Pack leaf elements in Basket output buffer.
Definition: TLeafL.cxx:78
virtual Int_t GetLen() const
Return the number of effective elements of this leaf.
Definition: TLeaf.cxx:279
Long64_t fMaximum
Maximum value if leaf range is specified.
Definition: TLeafL.h:33
virtual void PrintValue(Int_t i=0) const
Prints leaf value.
Definition: TLeafL.cxx:143
virtual void ReadBasket(TBuffer &b)
Read leaf elements from Basket input buffer.
Definition: TLeafL.cxx:157
Int_t fNdata
! Number of elements in fAddress data buffer
Definition: TLeaf.h:41
PyObject * fValue
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:1217
long double LongDouble_t
Definition: RtypesCore.h:57
virtual LongDouble_t GetValueLongDouble(Int_t i=0) const
Returns current value of leaf.
Definition: TLeafL.cxx:118
TLeafL()
Default constructor for LeafL.
Definition: TLeafL.cxx:29
virtual void ReadFastArray(Bool_t *b, Int_t n)=0
virtual void WriteFastArray(const Bool_t *b, Int_t n)=0
Data member is a pointer to an array of basic types.
Definition: TLeaf.h:59
TObject * UncheckedAt(Int_t i) const
Definition: TObjArray.h:91
virtual Int_t GetMaximum() const
Definition: TLeaf.h:76
#define ClassImp(name)
Definition: Rtypes.h:279
double Double_t
Definition: RtypesCore.h:55
int type
Definition: TGX11.cxx:120
unsigned long long ULong64_t
Definition: RtypesCore.h:70
Bool_t fIsUnsigned
(=kTRUE if unsigned, kFALSE otherwise)
Definition: TLeaf.h:46
virtual void SetAddress(void *add=0)
Set leaf buffer data address.
Definition: TLeafL.cxx:223
virtual void ReadLong64(Long64_t &l)=0
Int_t fOffset
Offset in ClonesArray object (if one)
Definition: TLeaf.h:44
char Char_t
Definition: RtypesCore.h:29
An array of clone (identical) objects.
Definition: TClonesArray.h:32
virtual ~TLeafL()
Default destructor for a LeafL.
Definition: TLeafL.cxx:54
TBranch * fBranch
! Pointer to supporting branch (we do not own the branch)
Definition: TLeaf.h:48
Int_t ResetAddress(void *add, Bool_t destructor=kFALSE)
Helper routine for TLeafX::SetAddress.
Definition: TLeaf.cxx:304
TLeaf * fLeafCount
Pointer to Leaf count if variable length (we do not own the counter)
Definition: TLeaf.h:47
Long64_t GetReadEntry() const
Definition: TBranch.h:170
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
A TLeaf for a 64 bit Integer data type.
Definition: TLeafL.h:29
Definition: first.py:1
TBranch * GetBranch() const
Definition: TLeaf.h:70
A TTree is a list of TBranches.
Definition: TBranch.h:58
const Bool_t kTRUE
Definition: Rtypes.h:91
const Int_t n
Definition: legend1.C:16
virtual void Export(TClonesArray *list, Int_t n)
Export element from local leaf buffer to ClonesArray.
Definition: TLeafL.cxx:62
char name[80]
Definition: TGX11.cxx:109