Logo ROOT   6.10/09
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  //status bits
42  enum { kNotComputed = BIT(12)};
43 
44  TRef(): fPID(0) { }
45  TRef(TObject *obj);
46  TRef(const TRef &ref);
47  void operator=(TObject *obj);
48  TRef& operator=(const TRef &ref);
49  virtual ~TRef() { }
50 
51  TObject *GetObject() const;
52  TProcessID *GetPID() const {return fPID;}
53  Bool_t IsValid() const {return GetUniqueID()!=0 ? kTRUE : kFALSE;}
54  virtual void SetAction(const char *name);
55  virtual void SetAction(TObject *parent);
56 
57  static void SetObject(TObject *obj);
58  static void SetStaticObject(TObject *obj);
59  static Int_t AddExec(const char *name);
60  static TObjArray *GetListOfExecs();
61  static TObject *GetStaticObject();
62 
63  friend Bool_t operator==(const TRef &r1, const TRef &r2);
64  friend Bool_t operator!=(const TRef &r1, const TRef &r2);
65 
66  ClassDef(TRef,1) //Persistent Reference link to a TObject
67 };
68 
69 #endif
virtual UInt_t GetUniqueID() const
Return the unique object id.
Definition: TObject.cxx:382
An array of TObjects.
Definition: TObjArray.h:37
#define BIT(n)
Definition: Rtypes.h:75
A ROOT file is a suite of consecutive data records (TKey instances) with a well defined format...
Definition: TFile.h:46
static void SetStaticObject(TObject *obj)
Static function to set the object found on the Action on Demand function.
Definition: TRef.cxx:476
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
virtual ~TRef()
Definition: TRef.h:49
static void SetObject(TObject *obj)
static Obsolete function kept for back compatibility.
Definition: TRef.cxx:464
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:456
#define ClassDef(name, id)
Definition: Rtypes.h:297
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
unsigned int r1[N_CITIES]
Definition: simanTSP.cxx:321
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:92
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:53
TProcessID * GetPID() const
Definition: TRef.h:52
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:427
TRef()
Definition: TRef.h:44
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:91
unsigned int r2[N_CITIES]
Definition: simanTSP.cxx:322