Logo ROOT   6.10/09
Reference Guide
TLeafObject.h
Go to the documentation of this file.
1 // @(#)root/tree:$Id$
2 // Author: Rene Brun 27/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 #ifndef ROOT_TLeafObject
13 #define ROOT_TLeafObject
14 
15 
16 //////////////////////////////////////////////////////////////////////////
17 // //
18 // TLeafObject //
19 // //
20 // A TLeaf for a general object derived from TObject. //
21 // //
22 //////////////////////////////////////////////////////////////////////////
23 
24 
25 #include "TLeaf.h"
26 #include "TClassRef.h"
27 
28 class TClass;
29 class TMethodCall;
30 
31 class TLeafObject : public TLeaf {
32 
33 protected:
34  TClassRef fClass; ///<! pointer to class
35  void **fObjAddress; ///<! Address of Pointer to object
36  Bool_t fVirtual; ///< Support for polymorphism, when set classname is written with object.
37 
38 public:
39  enum { kWarn = BIT(12) };
40 
41  TLeafObject();
42  TLeafObject(TBranch *parent, const char *name, const char *type);
43  virtual ~TLeafObject();
44 
45  virtual void FillBasket(TBuffer &b);
46  TClass *GetClass() const {return fClass;}
47  TMethodCall *GetMethodCall(const char *name);
48  TObject *GetObject() const {return (TObject*)(*fObjAddress);}
49  const char *GetTypeName() const ;
50  virtual void *GetValuePointer() const {return fObjAddress;}
51  Bool_t IsOnTerminalBranch() const;
52  Bool_t IsVirtual() const {return fVirtual;}
53  virtual Bool_t Notify();
54  virtual void PrintValue(Int_t i=0) const;
55  virtual void ReadBasket(TBuffer &b);
56  virtual void SetAddress(void *add=0);
57  virtual void SetVirtual(Bool_t virt=kTRUE) {fVirtual=virt;}
58 
59  ClassDef(TLeafObject,4); //A TLeaf for a general object derived from TObject.
60 };
61 
62 #endif
TClass * GetClass() const
Definition: TLeafObject.h:46
A TLeaf describes individual elements of a TBranch See TBranch structure in TTree.
Definition: TLeaf.h:32
Bool_t IsOnTerminalBranch() const
Return true if this leaf is does not have any sub-branch/leaf.
Bool_t fVirtual
Support for polymorphism, when set classname is written with object.
Definition: TLeafObject.h:36
TObject * GetObject() const
Definition: TLeafObject.h:48
A TLeaf for a general object derived from TObject.
Definition: TLeafObject.h:31
#define BIT(n)
Definition: Rtypes.h:75
Bool_t IsVirtual() const
Definition: TLeafObject.h:52
Buffer base class used for serializing objects.
Definition: TBuffer.h:40
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
TClassRef fClass
! pointer to class
Definition: TLeafObject.h:34
#define ClassDef(name, id)
Definition: Rtypes.h:297
TMethodCall * GetMethodCall(const char *name)
Returns pointer to method corresponding to name.
Definition: TLeafObject.cxx:91
virtual void * GetValuePointer() const
Definition: TLeafObject.h:50
virtual void ReadBasket(TBuffer &b)
Read leaf elements from Basket input buffer.
Method or function calling interface.
Definition: TMethodCall.h:37
void ** fObjAddress
! Address of Pointer to object
Definition: TLeafObject.h:35
virtual void SetAddress(void *add=0)
Set leaf buffer data address.
virtual ~TLeafObject()
Default destructor for a LeafObject.
Definition: TLeafObject.cxx:52
The ROOT global object gROOT contains a list of all defined classes.
Definition: TClass.h:71
virtual void FillBasket(TBuffer &b)
Pack leaf elements in Basket output buffer.
Definition: TLeafObject.cxx:59
virtual Bool_t Notify()
This method must be overridden to handle object notifcation.
int type
Definition: TGX11.cxx:120
virtual void PrintValue(Int_t i=0) const
Prints leaf value.
const char * GetTypeName() const
Returns name of leaf type.
Mother of all ROOT objects.
Definition: TObject.h:37
TLeafObject()
Default constructor for LeafObject.
Definition: TLeafObject.cxx:30
TClassRef is used to implement a permanent reference to a TClass object.
Definition: TClassRef.h:29
virtual void SetVirtual(Bool_t virt=kTRUE)
Definition: TLeafObject.h:57
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 TTree is a list of TBranches.
Definition: TBranch.h:57
const Bool_t kTRUE
Definition: RtypesCore.h:91