Logo ROOT  
Reference Guide
TLeafElement.h
Go to the documentation of this file.
1// @(#)root/tree:$Id$
2// Author: Rene Brun 14/01/2001
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_TLeafElement
13#define ROOT_TLeafElement
14
15
16//////////////////////////////////////////////////////////////////////////
17// //
18// TLeafElement //
19// //
20// A TLeaf for a general object derived from TObject. //
21// //
22//////////////////////////////////////////////////////////////////////////
23
24#include <atomic>
25
26#include "TDataType.h"
27#include "TLeaf.h"
28#include "TBranchElement.h"
29
30class TMethodCall;
31
32class TLeafElement : public TLeaf {
33
34protected:
35 char *fAbsAddress; ///<! Absolute leaf Address
36 Int_t fID; ///< element serial number in fInfo
37 Int_t fType; ///< leaf type
38 mutable std::atomic<DeserializeType> fDeserializeTypeCache{ DeserializeType::kInvalid }; ///<! Cache of the type of deserialization.
39 mutable std::atomic<EDataType> fDataTypeCache{EDataType::kOther_t}; ///<! Cache of the EDataType of deserialization.
40
41private:
42 virtual Int_t GetOffsetHeaderSize() const {return 1;}
43
44public:
46 TLeafElement(TBranch *parent, const char *name, Int_t id, Int_t type);
47 virtual ~TLeafElement();
48
50 virtual Int_t *GenerateOffsetArrayBase(Int_t /*base*/, Int_t /*events*/) { return nullptr; }
51 virtual DeserializeType GetDeserializeType() const;
52
53 Int_t GetID() const { return fID; }
54 virtual TString GetFullName() const;
55 virtual Int_t GetLen() const {return ((TBranchElement*)fBranch)->GetNdata()*fLen;}
56 TMethodCall *GetMethodCall(const char *name);
57 virtual Int_t GetMaximum() const {return ((TBranchElement*)fBranch)->GetMaximum();}
58 virtual Int_t GetNdata() const {return ((TBranchElement*)fBranch)->GetNdata()*fLen;}
59 virtual const char *GetTypeName() const {return ((TBranchElement*)fBranch)->GetTypeName();}
60
61 virtual Double_t GetValue(Int_t i=0) const { return ((TBranchElement*)fBranch)->GetValue(i, fLen, kFALSE);}
62 virtual Long64_t GetValueLong64(Int_t i = 0) const { return ((TBranchElement*)fBranch)->GetTypedValue<Long64_t>(i, fLen, kFALSE); }
63 virtual LongDouble_t GetValueLongDouble(Int_t i = 0) const { return ((TBranchElement*)fBranch)->GetTypedValue<LongDouble_t>(i, fLen, kFALSE); }
64 template<typename T> T GetTypedValueSubArray(Int_t i=0, Int_t j=0) const {return ((TBranchElement*)fBranch)->GetTypedValue<T>(i, j, kTRUE);}
65
66 virtual bool ReadBasketFast(TBuffer&, Long64_t);
68
69 virtual void *GetValuePointer() const { return ((TBranchElement*)fBranch)->GetValuePointer(); }
70 virtual Bool_t IncludeRange(TLeaf *);
71 virtual Bool_t IsOnTerminalBranch() const;
72 virtual void PrintValue(Int_t i=0) const {((TBranchElement*)fBranch)->PrintValue(i);}
73 virtual void SetLeafCount(TLeaf *leaf) {fLeafCount = leaf;}
74
75 ClassDef(TLeafElement,1); //A TLeaf for a general object derived from TObject.
76};
77
78#endif
int Int_t
Definition: RtypesCore.h:43
const Bool_t kFALSE
Definition: RtypesCore.h:90
bool Bool_t
Definition: RtypesCore.h:61
double Double_t
Definition: RtypesCore.h:57
long double LongDouble_t
Definition: RtypesCore.h:59
long long Long64_t
Definition: RtypesCore.h:71
const Bool_t kTRUE
Definition: RtypesCore.h:89
#define ClassDef(name, id)
Definition: Rtypes.h:322
@ kOther_t
Definition: TDataType.h:32
char name[80]
Definition: TGX11.cxx:109
int type
Definition: TGX11.cxx:120
A Branch for the case of an object.
A TTree is a list of TBranches.
Definition: TBranch.h:91
Buffer base class used for serializing objects.
Definition: TBuffer.h:42
A TLeaf for the general case when using the branches created via a TStreamerInfo (i....
Definition: TLeafElement.h:32
virtual bool ReadBasketSerialized(TBuffer &, Long64_t)
Definition: TLeafElement.h:67
T GetTypedValueSubArray(Int_t i=0, Int_t j=0) const
Definition: TLeafElement.h:64
Int_t GetID() const
Definition: TLeafElement.h:53
TMethodCall * GetMethodCall(const char *name)
Returns pointer to method corresponding to name name is a string with the general form "method(list o...
char * fAbsAddress
! Absolute leaf Address
Definition: TLeafElement.h:35
std::atomic< DeserializeType > fDeserializeTypeCache
! Cache of the type of deserialization.
Definition: TLeafElement.h:38
virtual const char * GetTypeName() const
Definition: TLeafElement.h:59
virtual Int_t GetMaximum() const
Definition: TLeafElement.h:57
virtual ~TLeafElement()
Default destructor for a LeafObject.
virtual void SetLeafCount(TLeaf *leaf)
Set the leaf count of this leaf.
Definition: TLeafElement.h:73
virtual Bool_t IsOnTerminalBranch() const
Return true if this leaf is does not have any sub-branch/leaf.
virtual void PrintValue(Int_t i=0) const
Definition: TLeafElement.h:72
Int_t fType
leaf type
Definition: TLeafElement.h:37
virtual DeserializeType GetDeserializeType() const
Determine if this TLeafElement supports bulk IO.
virtual TString GetFullName() const
Return the full name (including the parent's branch names) of the leaf.
virtual LongDouble_t GetValueLongDouble(Int_t i=0) const
Definition: TLeafElement.h:63
virtual Int_t GetOffsetHeaderSize() const
Definition: TLeafElement.h:42
std::atomic< EDataType > fDataTypeCache
! Cache of the EDataType of deserialization.
Definition: TLeafElement.h:39
virtual Int_t * GenerateOffsetArrayBase(Int_t, Int_t)
Definition: TLeafElement.h:50
virtual Bool_t IncludeRange(TLeaf *)
Copy/set fMinimum and fMaximum to include/be wide than those of the parameter.
virtual void * GetValuePointer() const
Definition: TLeafElement.h:69
Int_t fID
element serial number in fInfo
Definition: TLeafElement.h:36
virtual Long64_t GetValueLong64(Int_t i=0) const
Definition: TLeafElement.h:62
virtual Double_t GetValue(Int_t i=0) const
Definition: TLeafElement.h:61
virtual Int_t GetLen() const
Return the number of effective elements of this leaf, for the current entry.
Definition: TLeafElement.h:55
virtual Int_t GetNdata() const
Definition: TLeafElement.h:58
virtual Bool_t CanGenerateOffsetArray()
Definition: TLeafElement.h:49
virtual bool ReadBasketFast(TBuffer &, Long64_t)
Deserialize N events from an input buffer.
TLeafElement()
Default constructor for LeafObject.
A TLeaf describes individual elements of a TBranch See TBranch structure in TTree.
Definition: TLeaf.h:49
Int_t fLenType
Number of bytes for this data type.
Definition: TLeaf.h:65
Int_t fLen
Number of fixed length elements in the leaf's data.
Definition: TLeaf.h:64
DeserializeType
Definition: TLeaf.h:91
TBranch * fBranch
! Pointer to supporting branch (we do not own the branch)
Definition: TLeaf.h:70
TLeaf * fLeafCount
Pointer to Leaf count if variable length (we do not own the counter)
Definition: TLeaf.h:69
Method or function calling interface.
Definition: TMethodCall.h:37
Basic string class.
Definition: TString.h:131
double T(double x)
Definition: ChebyshevPol.h:34