Logo ROOT   6.14/05
Reference Guide
TRef.h
Go to the documentation of this file.
1 // @(#)root/cont:$Id$
2 // Author: Rene Brun 28/09/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_TRef
13 #define ROOT_TRef
14 
15 
16 //////////////////////////////////////////////////////////////////////////
17 // //
18 // TRef //
19 // //
20 // Persistent Reference link to a TObject //
21 // //
22 //////////////////////////////////////////////////////////////////////////
23 
24 
25 #include "TObject.h"
26 
27 class TProcessID;
28 class TFile;
29 class TExec;
30 class TObjArray;
31 
32 class TRef : public TObject {
33 
34 protected:
35  TProcessID *fPID; //!Pointer to ProcessID when TRef was written
36 
37  static TObjArray *fgExecs; //List of execs
38  static TObject *fgObject; //In: this, Out: pointer to object (used by Action on Demand)
39 
40 public:
41 
42  TRef(): fPID(0) { }
43  TRef(TObject *obj);
44  TRef(const TRef &ref);
45  void operator=(TObject *obj);
46  TRef& operator=(const TRef &ref);
47  virtual ~TRef() { }
48 
49  TObject *GetObject() const;
50  TProcessID *GetPID() const {return fPID;}
51  Bool_t IsValid() const {return GetUniqueID()!=0 ? kTRUE : kFALSE;}
52  virtual void SetAction(const char *name);
53  virtual void SetAction(TObject *parent);
54 
55  static void SetObject(TObject *obj);
56  static void SetStaticObject(TObject *obj);
57  static Int_t AddExec(const char *name);
58  static TObjArray *GetListOfExecs();
59  static TObject *GetStaticObject();
60 
61  friend Bool_t operator==(const TRef &r1, const TRef &r2);
62  friend Bool_t operator!=(const TRef &r1, const TRef &r2);
63 
64  ClassDef(TRef,1) //Persistent Reference link to a TObject
65 };
66 
67 #endif
virtual UInt_t GetUniqueID() const
Return the unique object id.
Definition: TObject.cxx:375
An array of TObjects.
Definition: TObjArray.h:37
A ROOT file is a suite of consecutive data records (TKey instances) with a well defined format...
Definition: TFile.h:47
static void SetStaticObject(TObject *obj)
Static function to set the object found on the Action on Demand function.
Definition: TRef.cxx:478
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
virtual ~TRef()
Definition: TRef.h:47
static void SetObject(TObject *obj)
static Obsolete function kept for back compatibility.
Definition: TRef.cxx:466
Persistent Reference link to a TObject A TRef is a lightweight object pointing to any TObject...
Definition: TRef.h:32
static TObject * GetStaticObject()
Returns the static object.
Definition: TRef.cxx:458
#define ClassDef(name, id)
Definition: Rtypes.h:320
TProcessID * fPID
Definition: TRef.h:35
static TObject * fgObject
Definition: TRef.h:38
A TProcessID identifies a ROOT job in a unique way in time and space.
Definition: TProcessID.h:69
static Int_t AddExec(const char *name)
If Exec with name does not exist in the list of Execs, it is created.
Definition: TRef.cxx:339
static TObjArray * GetListOfExecs()
Return a pointer to the static TObjArray holding the list of Execs.
Definition: TRef.cxx:359
static TObjArray * fgExecs
Pointer to ProcessID when TRef was written.
Definition: TRef.h:37
TObject * GetObject() const
Return a pointer to the referenced object.
Definition: TRef.cxx:377
friend Bool_t operator==(const TRef &r1, const TRef &r2)
Return kTRUE if r1 and r2 point to the same object.
Definition: TRef.cxx:320
const Bool_t kFALSE
Definition: RtypesCore.h:88
void operator=(TObject *obj)
Assign object to reference.
Definition: TRef.cxx:278
friend Bool_t operator!=(const TRef &r1, const TRef &r2)
Return kTRUE if r1 and r2 do not point to the same object.
Definition: TRef.cxx:329
Bool_t IsValid() const
Definition: TRef.h:51
TProcessID * GetPID() const
Definition: TRef.h:50
Mother of all ROOT objects.
Definition: TObject.h:37
virtual void SetAction(const char *name)
Store the exec number (in the ROOT list of Execs) into the fBits of this TRef.
Definition: TRef.cxx:429
TRef()
Definition: TRef.h:42
TExec is a utility class that can be used to execute a C++ command when some event happens in a pad...
Definition: TExec.h:28
const Bool_t kTRUE
Definition: RtypesCore.h:87
char name[80]
Definition: TGX11.cxx:109