Logo ROOT   6.14/05
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 \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 
25 
26 ////////////////////////////////////////////////////////////////////////////////
27 /// Default constructor for LeafI.
28 
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 
55 {
56  if (ResetAddress(0,kTRUE)) delete [] fValue;
57 }
58 
59 ////////////////////////////////////////////////////////////////////////////////
60 /// Export element from local leaf buffer to ClonesArray.
61 
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 
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 
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 
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 
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 
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 
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 {
181  }
182  }
183 }
184 
185 ////////////////////////////////////////////////////////////////////////////////
186 /// Read leaf elements from Basket input buffer and export buffer to
187 /// TClonesArray objects.
188 
190 {
191  if (n*fLen == 1) {
192  b >> fValue[0];
193  } else {
195  }
196  Int_t *value = fValue;
197  for (Int_t i=0;i<n;i++) {
198  char *first = (char*)list->UncheckedAt(i);
199  Int_t *ii = (Int_t*)&first[fOffset];
200  for (Int_t j=0;j<fLen;j++) {
201  ii[j] = value[j];
202  }
203  value += fLen;
204  }
205 }
206 
207 ////////////////////////////////////////////////////////////////////////////////
208 /// Read an integer from std::istream s and store it into the branch buffer.
209 
210 void TLeafI::ReadValue(std::istream &s, Char_t /*delim = ' '*/)
211 {
212  if (fIsUnsigned) {
213  UInt_t *uvalue = (UInt_t*)GetValuePointer();
214  for (Int_t i=0;i<fLen;i++) s >> uvalue[i];
215  } else {
216  Int_t *value = (Int_t*)GetValuePointer();
217  for (Int_t i=0;i<fLen;i++) s >> value[i];
218  }
219 }
220 
221 ////////////////////////////////////////////////////////////////////////////////
222 /// Set leaf buffer data address.
223 
224 void TLeafI::SetAddress(void *add)
225 {
226  if (ResetAddress(add) && (add!= fValue)) {
227  delete [] fValue;
228  }
229  if (add) {
230  if (TestBit(kIndirectAddress)) {
231  fPointer = (Int_t**) add;
232  Int_t ncountmax = fLen;
233  if (fLeafCount) ncountmax = fLen*(fLeafCount->GetMaximum() + 1);
234  if ((fLeafCount && ncountmax > Int_t(fLeafCount->GetValue())) ||
235  ncountmax > fNdata || *fPointer == 0) {
236  if (*fPointer) delete [] *fPointer;
237  if (ncountmax > fNdata) fNdata = ncountmax;
238  *fPointer = new Int_t[fNdata];
239  }
240  fValue = *fPointer;
241  } else {
242  fValue = (Int_t*)add;
243  }
244  } else {
245  fValue = new Int_t[fNdata];
246  fValue[0] = 0;
247  }
248 }
249 
virtual const char * GetName() const
Returns name of object.
Definition: TNamed.h:47
A TLeaf describes individual elements of a TBranch See TBranch structure in TTree.
Definition: TLeaf.h:32
virtual ~TLeafI()
Default destructor for a LeafI.
Definition: TLeafI.cxx:54
long long Long64_t
Definition: RtypesCore.h:69
Double_t GetValue(Int_t i=0) const
Returns current value of leaf.
Definition: TLeafI.cxx:107
Int_t fMaximum
Maximum value if leaf range is specified.
Definition: TLeafI.h:31
TLeafI()
Default constructor for LeafI.
Definition: TLeafI.cxx:29
const char * GetTypeName() const
Returns name of leaf type.
Definition: TLeafI.cxx:96
virtual Bool_t IsUnsigned() const
Definition: TLeaf.h:100
Int_t * fValue
! Pointer to data buffer
Definition: TLeafI.h:32
Int_t ** fPointer
! Address of pointer to data buffer
Definition: TLeafI.h:33
Buffer base class used for serializing objects.
Definition: TBuffer.h:40
R__ALWAYS_INLINE Bool_t TestBit(UInt_t f) const
Definition: TObject.h:172
virtual Int_t GetMinimum() const
Definition: TLeafI.h:44
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
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:210
Int_t fMinimum
Minimum value if leaf range is specified.
Definition: TLeafI.h:30
virtual Bool_t IncludeRange(TLeaf *)
Copy/set fMinimum and fMaximum to include/be wide than those of the parameter.
Definition: TLeafI.cxx:116
Int_t fLenType
Number of bytes for this data type.
Definition: TLeaf.h:38
virtual void ReadInt(Int_t &i)=0
virtual void PrintValue(Int_t i=0) const
Prints leaf value.
Definition: TLeafI.cxx:148
virtual Double_t GetValue(Int_t i=0) const
Definition: TLeaf.h:131
virtual Bool_t IsRange() const
Definition: TLeaf.h:99
virtual void SetAddress(void *add=0)
Set leaf buffer data address.
Definition: TLeafI.cxx:224
Int_t fLen
Number of fixed length elements.
Definition: TLeaf.h:37
virtual void ReadBasket(TBuffer &b)
Read leaf elements from Basket input buffer.
Definition: TLeafI.cxx:162
virtual void Import(TClonesArray *list, Int_t n)
Import element from ClonesArray into local leaf buffer.
Definition: TLeafI.cxx:132
virtual Int_t GetLen() const
Return the number of effective elements of this leaf, for the current entry.
Definition: TLeaf.cxx:310
virtual void Export(TClonesArray *list, Int_t n)
Export element from local leaf buffer to ClonesArray.
Definition: TLeafI.cxx:62
Int_t fNdata
! Number of elements in fAddress data buffer
Definition: TLeaf.h:36
unsigned int UInt_t
Definition: RtypesCore.h:42
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:189
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:1310
virtual Int_t GetMinimum() const
Definition: TLeaf.h:85
virtual void ReadFastArray(Bool_t *b, Int_t n)=0
virtual void WriteFastArray(const Bool_t *b, Int_t n)=0
const Bool_t kFALSE
Definition: RtypesCore.h:88
TObject * UncheckedAt(Int_t i) const
Definition: TObjArray.h:89
virtual void FillBasket(TBuffer &b)
Pack leaf elements in Basket output buffer.
Definition: TLeafI.cxx:78
virtual Int_t GetMaximum() const
Definition: TLeaf.h:84
#define ClassImp(name)
Definition: Rtypes.h:359
virtual Int_t GetMaximum() const
Definition: TLeafI.h:43
double Double_t
Definition: RtypesCore.h:55
Data member is a pointer to an array of basic types.
Definition: TLeaf.h:58
int type
Definition: TGX11.cxx:120
Bool_t fIsUnsigned
(=kTRUE if unsigned, kFALSE otherwise)
Definition: TLeaf.h:41
static constexpr double s
Int_t fOffset
Offset in ClonesArray object (if one)
Definition: TLeaf.h:39
char Char_t
Definition: RtypesCore.h:29
virtual void SetMaximum(Int_t max)
Definition: TLeafI.h:54
An array of clone (identical) objects.
Definition: TClonesArray.h:32
virtual void SetMinimum(Int_t min)
Definition: TLeafI.h:55
auto * l
Definition: textangle.C:4
TBranch * fBranch
! Pointer to supporting branch (we do not own the branch)
Definition: TLeaf.h:43
Int_t ResetAddress(void *add, Bool_t destructor=kFALSE)
Helper routine for TLeafX::SetAddress.
Definition: TLeaf.cxx:335
TLeaf * fLeafCount
Pointer to Leaf count if variable length (we do not own the counter)
Definition: TLeaf.h:42
Long64_t GetReadEntry() const
Definition: TBranch.h:192
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
Definition: first.py:1
TBranch * GetBranch() const
Definition: TLeaf.h:71
A TTree is a list of TBranches.
Definition: TBranch.h:62
const Bool_t kTRUE
Definition: RtypesCore.h:87
const Int_t n
Definition: legend1.C:16
char name[80]
Definition: TGX11.cxx:109
A TLeaf for an Integer data type.
Definition: TLeafI.h:27
virtual void * GetValuePointer() const
Definition: TLeafI.h:46