ROOT  6.06/09
Reference Guide
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 A TLeaf for an Integer data type.
14 */
15 
16 #include "TLeafI.h"
17 #include "TBranch.h"
18 #include "TClonesArray.h"
19 #include "Riostream.h"
20 
22 
23 ////////////////////////////////////////////////////////////////////////////////
24 /// Default constructor for LeafI.
25 
26 TLeafI::TLeafI(): TLeaf()
27 {
28  fLenType = 4;
29  fMinimum = 0;
30  fMaximum = 0;
31  fValue = 0;
32  fPointer = 0;
33 }
34 
35 ////////////////////////////////////////////////////////////////////////////////
36 /// Create a LeafI.
37 
38 TLeafI::TLeafI(TBranch *parent, const char *name, const char *type)
39  :TLeaf(parent, name,type)
40 {
41  fLenType = 4;
42  fMinimum = 0;
43  fMaximum = 0;
44  fValue = 0;
45  fPointer = 0;
46 }
47 
48 ////////////////////////////////////////////////////////////////////////////////
49 /// Default destructor for a LeafI.
50 
52 {
53  if (ResetAddress(0,kTRUE)) delete [] fValue;
54 }
55 
56 ////////////////////////////////////////////////////////////////////////////////
57 /// Export element from local leaf buffer to ClonesArray.
58 
60 {
61  Int_t *value = fValue;
62  for (Int_t i=0;i<n;i++) {
63  char *first = (char*)list->UncheckedAt(i);
64  Int_t *ii = (Int_t*)&first[fOffset];
65  for (Int_t j=0;j<fLen;j++) {
66  ii[j] = value[j];
67  }
68  value += fLen;
69  }
70 }
71 
72 ////////////////////////////////////////////////////////////////////////////////
73 /// Pack leaf elements in Basket output buffer.
74 
76 {
77  Int_t i;
78  Int_t len = GetLen();
79  if (fPointer) fValue = *fPointer;
80  if (IsRange()) {
81  if (fValue[0] > fMaximum) fMaximum = fValue[0];
82  }
83  if (IsUnsigned()) {
84  for (i=0;i<len;i++) b << (UInt_t)fValue[i];
85  } else {
86  b.WriteFastArray(fValue,len);
87  }
88 }
89 
90 ////////////////////////////////////////////////////////////////////////////////
91 /// Returns name of leaf type.
92 
93 const char *TLeafI::GetTypeName() const
94 {
95  if (fIsUnsigned) return "UInt_t";
96  return "Int_t";
97 }
98 
99 ////////////////////////////////////////////////////////////////////////////////
100 /// Returns current value of leaf
101 /// - if leaf is a simple type, i must be set to 0
102 /// - if leaf is an array, i is the array element number to be returned
103 
105 {
106  if (fIsUnsigned) return (UInt_t)fValue[i];
107  return fValue[i];
108 }
109 
110 ////////////////////////////////////////////////////////////////////////////////
111 /// Import element from ClonesArray into local leaf buffer.
112 
114 {
115  const Int_t kIntUndefined = -9999;
116  Int_t j = 0;
117  char *clone;
118  for (Int_t i=0;i<n;i++) {
119  clone = (char*)list->UncheckedAt(i);
120  if (clone) memcpy(&fValue[j],clone + fOffset, 4*fLen);
121  else memcpy(&fValue[j],&kIntUndefined, 4*fLen);
122  j += fLen;
123  }
124 }
125 
126 ////////////////////////////////////////////////////////////////////////////////
127 /// Prints leaf value.
128 
130 {
131  if (fIsUnsigned) {
132  UInt_t *uvalue = (UInt_t*)GetValuePointer();
133  printf("%u",uvalue[l]);
134  } else {
136  printf("%d",value[l]);
137  }
138 }
139 
140 ////////////////////////////////////////////////////////////////////////////////
141 /// Read leaf elements from Basket input buffer.
142 
144 {
145  if (!fLeafCount && fNdata == 1) {
146  b.ReadInt(fValue[0]);
147  } else {
148  if (fLeafCount) {
150  if (fLeafCount->GetBranch()->GetReadEntry() != entry) {
151  fLeafCount->GetBranch()->GetEntry(entry);
152  }
153  Int_t len = Int_t(fLeafCount->GetValue());
154  if (len > fLeafCount->GetMaximum()) {
155  printf("ERROR leaf:%s, len=%d and max=%d\n",GetName(),len,fLeafCount->GetMaximum());
156  len = fLeafCount->GetMaximum();
157  }
158  fNdata = len*fLen;
159  b.ReadFastArray(fValue,len*fLen);
160  } else {
162  }
163  }
164 }
165 
166 ////////////////////////////////////////////////////////////////////////////////
167 /// Read leaf elements from Basket input buffer and export buffer to
168 /// TClonesArray objects.
169 
171 {
172  if (n*fLen == 1) {
173  b >> fValue[0];
174  } else {
176  }
177  Int_t *value = fValue;
178  for (Int_t i=0;i<n;i++) {
179  char *first = (char*)list->UncheckedAt(i);
180  Int_t *ii = (Int_t*)&first[fOffset];
181  for (Int_t j=0;j<fLen;j++) {
182  ii[j] = value[j];
183  }
184  value += fLen;
185  }
186 }
187 
188 ////////////////////////////////////////////////////////////////////////////////
189 /// Read an integer from std::istream s and store it into the branch buffer.
190 
191 void TLeafI::ReadValue(std::istream &s, Char_t /*delim = ' '*/)
192 {
193  if (fIsUnsigned) {
194  UInt_t *uvalue = (UInt_t*)GetValuePointer();
195  for (Int_t i=0;i<fLen;i++) s >> uvalue[i];
196  } else {
198  for (Int_t i=0;i<fLen;i++) s >> value[i];
199  }
200 }
201 
202 ////////////////////////////////////////////////////////////////////////////////
203 /// Set leaf buffer data address.
204 
205 void TLeafI::SetAddress(void *add)
206 {
207  if (ResetAddress(add) && (add!= fValue)) {
208  delete [] fValue;
209  }
210  if (add) {
211  if (TestBit(kIndirectAddress)) {
212  fPointer = (Int_t**) add;
213  Int_t ncountmax = fLen;
214  if (fLeafCount) ncountmax = fLen*(fLeafCount->GetMaximum() + 1);
215  if ((fLeafCount && ncountmax > Int_t(fLeafCount->GetValue())) ||
216  ncountmax > fNdata || *fPointer == 0) {
217  if (*fPointer) delete [] *fPointer;
218  if (ncountmax > fNdata) fNdata = ncountmax;
219  *fPointer = new Int_t[fNdata];
220  }
221  fValue = *fPointer;
222  } else {
223  fValue = (Int_t*)add;
224  }
225  } else {
226  fValue = new Int_t[fNdata];
227  fValue[0] = 0;
228  }
229 }
230 
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
virtual ~TLeafI()
Default destructor for a LeafI.
Definition: TLeafI.cxx:51
long long Long64_t
Definition: RtypesCore.h:69
virtual Bool_t IsUnsigned() const
Definition: TLeaf.h:91
Int_t fMaximum
Definition: TLeafI.h:33
TLeafI()
Address of pointer to data buffer.
virtual void PrintValue(Int_t i=0) const
Prints leaf value.
Definition: TLeafI.cxx:129
Int_t * fValue
Definition: TLeafI.h:34
Int_t ** fPointer
Pointer to data buffer.
Definition: TLeafI.h:35
Buffer base class used for serializing objects.
Definition: TBuffer.h:40
int Int_t
Definition: RtypesCore.h:41
TBranch * GetBranch() const
Definition: TLeaf.h:70
ClassImp(TLeafI) TLeafI
Default constructor for LeafI.
Definition: TLeafI.cxx:21
Int_t fMinimum
Definition: TLeafI.h:32
Int_t fLenType
Definition: TLeaf.h:43
virtual void ReadInt(Int_t &i)=0
virtual void SetAddress(void *add=0)
Set leaf buffer data address.
Definition: TLeafI.cxx:205
const char * GetTypeName() const
Returns name of leaf type.
Definition: TLeafI.cxx:93
Int_t fLen
Number of elements in fAddress data buffer.
Definition: TLeaf.h:42
virtual void ReadBasket(TBuffer &b)
Read leaf elements from Basket input buffer.
Definition: TLeafI.cxx:143
virtual Double_t GetValue(Int_t i=0) const
Definition: TLeaf.h:122
virtual Int_t GetMaximum() const
Definition: TLeaf.h:76
TObject * UncheckedAt(Int_t i) const
Definition: TObjArray.h:91
virtual void Import(TClonesArray *list, Int_t n)
Import element from ClonesArray into local leaf buffer.
Definition: TLeafI.cxx:113
virtual void Export(TClonesArray *list, Int_t n)
Export element from local leaf buffer to ClonesArray.
Definition: TLeafI.cxx:59
virtual void * GetValuePointer() const
Definition: TLeafI.h:48
Int_t fNdata
Definition: TLeaf.h:41
PyObject * fValue
unsigned int UInt_t
Definition: RtypesCore.h:42
Bool_t TestBit(UInt_t f) const
Definition: TObject.h:173
TLine * l
Definition: textangle.C:4
virtual void ReadBasketExport(TBuffer &b, TClonesArray *list, Int_t n)
Read leaf elements from Basket input buffer and export buffer to TClonesArray objects.
Definition: TLeafI.cxx:170
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:1198
virtual const char * GetName() const
Returns name of object.
Definition: TNamed.h:51
Long64_t entry
virtual void ReadFastArray(Bool_t *b, Int_t n)=0
virtual void WriteFastArray(const Bool_t *b, Int_t n)=0
Double_t GetValue(Int_t i=0) const
Returns current value of leaf.
Definition: TLeafI.cxx:104
virtual void FillBasket(TBuffer &b)
Pack leaf elements in Basket output buffer.
Definition: TLeafI.cxx:75
double Double_t
Definition: RtypesCore.h:55
int type
Definition: TGX11.cxx:120
ClassImp(TMCParticle) void TMCParticle printf(": p=(%7.3f,%7.3f,%9.3f) ;", fPx, fPy, fPz)
Bool_t fIsUnsigned
Definition: TLeaf.h:46
#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
TBranch * fBranch
Definition: TLeaf.h:48
virtual Bool_t IsRange() const
Definition: TLeaf.h:90
Int_t ResetAddress(void *add, Bool_t destructor=kFALSE)
Helper routine for TLeafX::SetAddress.
Definition: TLeaf.cxx:301
virtual void ReadValue(std::istream &s, Char_t delim= ' ')
Read an integer from std::istream s and store it into the branch buffer.
Definition: TLeafI.cxx:191
TLeaf * fLeafCount
Definition: TLeaf.h:47
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
A TLeaf for an Integer data type.
Definition: TLeafI.h:29