Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
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 EStatusBits {
40  kWarn = BIT(14)
41  };
42 
43  // In version of ROOT older then v6.12, kWarn was set to BIT(12)
44  // which overlaps with TBranch::kBranchObject. Since it stored
45  // in ROOT files as part of the TBranchObject and that we want
46  // to reset in TBranchObject::Streamer, we need to keep track
47  // of the old value.
48  enum EStatusBitsOldValues {
49  kOldWarn = BIT(12)
50  };
51 
52  TLeafObject();
53  TLeafObject(TBranch *parent, const char *name, const char *type);
54  virtual ~TLeafObject();
55 
56  virtual Bool_t CanGenerateOffsetArray() { return false; }
57  virtual void FillBasket(TBuffer &b);
58  virtual Int_t *GenerateOffsetArrayBase(Int_t /*base*/, Int_t /*events*/) { return nullptr; }
59  TClass *GetClass() const {return fClass;}
60  TMethodCall *GetMethodCall(const char *name);
61  TObject *GetObject() const {return (TObject*)(*fObjAddress);}
62  const char *GetTypeName() const ;
63  virtual void *GetValuePointer() const {return fObjAddress;}
64  Bool_t IsOnTerminalBranch() const;
65  Bool_t IsVirtual() const {return fVirtual;}
66  virtual Bool_t Notify();
67  virtual void PrintValue(Int_t i=0) const;
68  virtual void ReadBasket(TBuffer &b);
69  virtual void SetAddress(void *add=0);
70  virtual void SetVirtual(Bool_t virt=kTRUE) {fVirtual=virt;}
71 
72  ClassDef(TLeafObject,4); //A TLeaf for a general object derived from TObject.
73 };
74 
75 #endif