Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
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
27class TProcessID;
28class TFile;
29class TExec;
30class TObjArray;
31
32class TRef : public TObject {
33
34protected:
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
40public:
41
42 TRef(): fPID(nullptr) {}
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 ClassDefOverride(TRef,1) //Persistent Reference link to a TObject
65};
66
67#endif
bool Bool_t
Definition RtypesCore.h:63
int Int_t
Definition RtypesCore.h:45
constexpr Bool_t kFALSE
Definition RtypesCore.h:101
constexpr Bool_t kTRUE
Definition RtypesCore.h:100
#define ClassDefOverride(name, id)
Definition Rtypes.h:341
char name[80]
Definition TGX11.cxx:110
TExec is a utility class that can be used to execute a C++ command when some event happens in a pad.
Definition TExec.h:26
A ROOT file is an on-disk file, usually with extension .root, that stores objects in a file-system-li...
Definition TFile.h:53
An array of TObjects.
Definition TObjArray.h:31
Mother of all ROOT objects.
Definition TObject.h:41
virtual UInt_t GetUniqueID() const
Return the unique object id.
Definition TObject.cxx:457
A TProcessID identifies a ROOT job in a unique way in time and space.
Definition TProcessID.h:74
Persistent Reference link to a TObject A TRef is a lightweight object pointing to any TObject.
Definition TRef.h:32
static void SetObject(TObject *obj)
static Obsolete function kept for back compatibility.
Definition TRef.cxx:466
static void SetStaticObject(TObject *obj)
Static function to set the object found on the Action on Demand function.
Definition TRef.cxx:478
void operator=(TObject *obj)
Assign object to reference.
Definition TRef.cxx:278
static TObject * fgObject
Definition TRef.h:38
TRef()
Definition TRef.h:42
TProcessID * GetPID() const
Definition TRef.h:50
virtual ~TRef()
Definition TRef.h:47
static TObject * GetStaticObject()
Returns the static object.
Definition TRef.cxx:458
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
Bool_t IsValid() const
Definition TRef.h:51
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
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 do not point to the same object.
Definition TRef.cxx:329
TProcessID * fPID
Definition TRef.h:35
static TObjArray * GetListOfExecs()
Return a pointer to the static TObjArray holding the list of Execs.
Definition TRef.cxx:359
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 * fgExecs
Pointer to ProcessID when TRef was written.
Definition TRef.h:37