Logo ROOT   6.08/07
Reference Guide
TLeafL.h
Go to the documentation of this file.
1 // @(#)root/tree:$Id$
2 // Author: Rene Brun 19/12/2003
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 #ifndef ROOT_TLeafL
13 #define ROOT_TLeafL
14 
15 
16 //////////////////////////////////////////////////////////////////////////
17 // //
18 // TLeafL //
19 // //
20 // A TLeaf for a 64 bit integer data type. //
21 // //
22 //////////////////////////////////////////////////////////////////////////
23 
24 
25 #ifndef ROOT_TLeaf
26 #include "TLeaf.h"
27 #endif
28 
29 class TLeafL : public TLeaf {
30 
31 protected:
32  Long64_t fMinimum; ///< Minimum value if leaf range is specified
33  Long64_t fMaximum; ///< Maximum value if leaf range is specified
34  Long64_t *fValue; ///<! Pointer to data buffer
35  Long64_t **fPointer; ///<! Address of pointer to data buffer
36 
37 public:
38  TLeafL();
39  TLeafL(TBranch *parent, const char *name, const char *type);
40  virtual ~TLeafL();
41 
42  virtual void Export(TClonesArray *list, Int_t n);
43  virtual void FillBasket(TBuffer &b);
44  const char *GetTypeName() const;
45  virtual Int_t GetMaximum() const {return (Int_t)fMaximum;}
46  virtual Int_t GetMinimum() const {return (Int_t)fMinimum;}
47  virtual Double_t GetValue(Int_t i=0) const;
48  virtual Long64_t GetValueLong64(Int_t i = 0) const ;
49  virtual LongDouble_t GetValueLongDouble(Int_t i = 0) const;
50  virtual void *GetValuePointer() const {return fValue;}
51  virtual void Import(TClonesArray *list, Int_t n);
52  virtual void PrintValue(Int_t i=0) const;
53  virtual void ReadBasket(TBuffer &b);
54  virtual void ReadBasketExport(TBuffer &b, TClonesArray *list, Int_t n);
55  virtual void ReadValue(std::istream& s, Char_t delim = ' ');
56  virtual void SetAddress(void *add=0);
57  virtual void SetMaximum(Long64_t max) {fMaximum = max;}
58  virtual void SetMinimum(Long64_t min) {fMinimum = min;}
59 
60  ClassDef(TLeafL,1); //A TLeaf for a 64 bit Integer data type.
61 };
62 
63 // if leaf is a simple type, i must be set to 0
64 // if leaf is an array, i is the array element number to be returned
65 inline Long64_t TLeafL::GetValueLong64(Int_t i) const { return fValue[i]; }
66 
67 #endif
Long64_t fMinimum
Minimum value if leaf range is specified.
Definition: TLeafL.h:32
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
virtual void SetMinimum(Long64_t min)
Definition: TLeafL.h:58
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
virtual Int_t GetMaximum() const
Definition: TLeafL.h:45
const char * GetTypeName() const
Returns name of leaf type.
Definition: TLeafL.cxx:96
#define ClassDef(name, id)
Definition: Rtypes.h:254
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 Int_t GetMinimum() const
Definition: TLeafL.h:46
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
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
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 SetMaximum(Long64_t max)
Definition: TLeafL.h:57
double Double_t
Definition: RtypesCore.h:55
int type
Definition: TGX11.cxx:120
virtual void SetAddress(void *add=0)
Set leaf buffer data address.
Definition: TLeafL.cxx:223
virtual Long64_t GetValueLong64(Int_t i=0) const
Definition: TLeafL.h:65
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
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
A TTree is a list of TBranches.
Definition: TBranch.h:58
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