Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
TLeafI.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 TLeafI
13 \ingroup tree
14 
15 A TLeaf for an Integer data type.
16 */
17 
18 #include "TLeafI.h"
19 #include "TBranch.h"
20 #include "TBuffer.h"
21 #include "TClonesArray.h"
22 #include "Riostream.h"
23 
24 ClassImp(TLeafI);
25 
26 ////////////////////////////////////////////////////////////////////////////////
27 /// Default constructor for LeafI.
28 
29 TLeafI::TLeafI(): TLeaf()
30 {
31  fLenType = 4;
32  fMinimum = 0;
33  fMaximum = 0;
34  fValue = 0;
35  fPointer = 0;
36 }
37 
38 ////////////////////////////////////////////////////////////////////////////////
39 /// Create a LeafI.
40 
41 TLeafI::TLeafI(TBranch *parent, const char *name, const char *type)
42  :TLeaf(parent, name,type)
43 {
44  fLenType = 4;
45  fMinimum = 0;
46  fMaximum = 0;
47  fValue = 0;
48  fPointer = 0;
49 }
50 
51 ////////////////////////////////////////////////////////////////////////////////
52 /// Default destructor for a LeafI.
53 
54 TLeafI::~TLeafI()
55 {
56  if (ResetAddress(0,kTRUE)) delete [] fValue;
57 }
58 
59 ////////////////////////////////////////////////////////////////////////////////
60 /// Export element from local leaf buffer to ClonesArray.
61 
62 void TLeafI::Export(TClonesArray *list, Int_t n)
63 {
64  Int_t *value = fValue;
65  for (Int_t i=0;i<n;i++) {
66  char *first = (char*)list->UncheckedAt(i);
67  Int_t *ii = (Int_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 
78 void TLeafI::FillBasket(TBuffer &b)
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 << (UInt_t)fValue[i];
88  } else {
89  b.WriteFastArray(fValue,len);
90  }
91 }
92 
93 ////////////////////////////////////////////////////////////////////////////////
94 /// Returns name of leaf type.
95 
96 const char *TLeafI::GetTypeName() const
97 {
98  if (fIsUnsigned) return "UInt_t";
99  return "Int_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 
107 Double_t TLeafI::GetValue(Int_t i) const
108 {
109  if (fIsUnsigned) return (UInt_t)fValue[i];
110  return fValue[i];
111 }
112 
113 ////////////////////////////////////////////////////////////////////////////////
114 /// Copy/set fMinimum and fMaximum to include/be wide than those of the parameter
115 
116 Bool_t TLeafI::IncludeRange(TLeaf *input)
117 {
118  if (input) {
119  if (input->GetMaximum() > this->GetMaximum())
120  this->SetMaximum( input->GetMaximum() );
121  if (input->GetMinimum() < this->GetMinimum())
122  this->SetMinimum( input->GetMinimum() );
123  return kTRUE;
124  } else {
125  return kFALSE;
126  }
127 }
128 
129 ////////////////////////////////////////////////////////////////////////////////
130 /// Import element from ClonesArray into local leaf buffer.
131 
132 void TLeafI::Import(TClonesArray *list, Int_t n)
133 {
134  const Int_t kIntUndefined = -9999;
135  Int_t j = 0;
136  char *clone;
137  for (Int_t i=0;i<n;i++) {
138  clone = (char*)list->UncheckedAt(i);
139  if (clone) memcpy(&fValue[j],clone + fOffset, 4*fLen);
140  else memcpy(&fValue[j],&kIntUndefined, 4*fLen);
141  j += fLen;
142  }
143 }
144 
145 ////////////////////////////////////////////////////////////////////////////////
146 /// Prints leaf value.
147 
148 void TLeafI::PrintValue(Int_t l) const
149 {
150  if (fIsUnsigned) {
151  UInt_t *uvalue = (UInt_t*)GetValuePointer();
152  printf("%u",uvalue[l]);
153  } else {
154  Int_t *value = (Int_t*)GetValuePointer();
155  printf("%d",value[l]);
156  }
157 }
158 
159 ////////////////////////////////////////////////////////////////////////////////
160 /// Read leaf elements from Basket input buffer.
161 
162 void TLeafI::ReadBasket(TBuffer &b)
163 {
164  if (!fLeafCount && fNdata == 1) {
165  b.ReadInt(fValue[0]);
166  } else {
167  if (fLeafCount) {
168  Long64_t entry = fBranch->GetReadEntry();
169  if (fLeafCount->GetBranch()->GetReadEntry() != entry) {
170  fLeafCount->GetBranch()->GetEntry(entry);
171  }
172  Int_t len = Int_t(fLeafCount->GetValue());
173  if (len > fLeafCount->GetMaximum()) {
174  printf("ERROR leaf:%s, len=%d and max=%d\n",GetName(),len,fLeafCount->GetMaximum());
175  len = fLeafCount->GetMaximum();
176  }
177  fNdata = len*fLen;
178  b.ReadFastArray(fValue,len*fLen);
179  } else {
180  b.ReadFastArray(fValue,fLen);
181  }
182  }
183 }
184 
185 ////////////////////////////////////////////////////////////////////////////////
186 /// Deserialize input by performing byteswap as needed.
187 bool TLeafI::ReadBasketFast(TBuffer& input_buf, Long64_t N)
188 {
189  if (R__unlikely(fLeafCount)) {return false;}
190  return input_buf.ByteSwapBuffer(fLen*N, kInt_t);
191 }
192 
193 ////////////////////////////////////////////////////////////////////////////////
194 /// Read leaf elements from Basket input buffer and export buffer to
195 /// TClonesArray objects.
196 
197 void TLeafI::ReadBasketExport(TBuffer &b, TClonesArray *list, Int_t n)
198 {
199  if (n*fLen == 1) {
200  b >> fValue[0];
201  } else {
202  b.ReadFastArray(fValue,n*fLen);
203  }
204  Int_t *value = fValue;
205  for (Int_t i=0;i<n;i++) {
206  char *first = (char*)list->UncheckedAt(i);
207  Int_t *ii = (Int_t*)&first[fOffset];
208  for (Int_t j=0;j<fLen;j++) {
209  ii[j] = value[j];
210  }
211  value += fLen;
212  }
213 }
214 
215 ////////////////////////////////////////////////////////////////////////////////
216 /// Read an integer from std::istream s and store it into the branch buffer.
217 
218 void TLeafI::ReadValue(std::istream &s, Char_t /*delim = ' '*/)
219 {
220  if (fIsUnsigned) {
221  UInt_t *uvalue = (UInt_t*)GetValuePointer();
222  for (Int_t i=0;i<fLen;i++) s >> uvalue[i];
223  } else {
224  Int_t *value = (Int_t*)GetValuePointer();
225  for (Int_t i=0;i<fLen;i++) s >> value[i];
226  }
227 }
228 
229 ////////////////////////////////////////////////////////////////////////////////
230 /// Set leaf buffer data address.
231 
232 void TLeafI::SetAddress(void *add)
233 {
234  if (ResetAddress(add) && (add!= fValue)) {
235  delete [] fValue;
236  }
237  if (add) {
238  if (TestBit(kIndirectAddress)) {
239  fPointer = (Int_t**) add;
240  Int_t ncountmax = fLen;
241  if (fLeafCount) ncountmax = fLen*(fLeafCount->GetMaximum() + 1);
242  if ((fLeafCount && ncountmax > Int_t(fLeafCount->GetValue())) ||
243  ncountmax > fNdata || *fPointer == 0) {
244  if (*fPointer) delete [] *fPointer;
245  if (ncountmax > fNdata) fNdata = ncountmax;
246  *fPointer = new Int_t[fNdata];
247  }
248  fValue = *fPointer;
249  } else {
250  fValue = (Int_t*)add;
251  }
252  } else {
253  fValue = new Int_t[fNdata];
254  fValue[0] = 0;
255  }
256 }
257