Logo ROOT  
Reference Guide
TFriendProxy.cxx
Go to the documentation of this file.
1// @(#)root/base:$Id$
2// Author: Philippe Canal 13/05/2003
3
4/*************************************************************************
5 * Copyright (C) 1995-2000, Rene Brun, Fons Rademakers and al. *
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/** \class TFriendProxy
13Concrete implementation of the proxy around a Friend Tree.
14*/
15
16#include "TFriendProxy.h"
17#include "TTree.h"
18#include "TList.h"
19#include "TFriendElement.h"
20
22
23namespace ROOT {
24namespace Internal {
25
26/////////////////////////////////////////////////////////////////////////////
27
28TFriendProxy::TFriendProxy() : fDirector(0,-1), fIndex(-1)
29{
30}
31
32 /////////////////////////////////////////////////////////////////////////////
33 /// Constructor.
34
36 fDirector(0,-1), fIndex(index)
37 {
38 if (main && main->GetListOfFriends()) {
39 TObject *obj = main->GetListOfFriends()->At(fIndex);
40 TFriendElement *element = dynamic_cast<TFriendElement*>( obj );
41 if (element) fDirector.SetTree(element->GetTree());
42 }
43 director->Attach(this);
44 }
45
46 /////////////////////////////////////////////////////////////////////////////
47 /// Return the entry number currently being looked at.
48
50 {
51 return fDirector.GetReadEntry();
52 }
53
54 /////////////////////////////////////////////////////////////////////////////
55 /// Refresh the cached read entry number from the original tree.
56
58 {
59 // The 2nd call to GetTree is to insure we get the 'local' tree's entry in the case of a
60 // chain.
62 }
63
64 //////////////////////////////////////////////////////////////////////////////
65 /// Update the address of the underlying tree.
66
68 {
69 if (newmain && newmain->GetListOfFriends()) {
70 TObject *obj = newmain->GetListOfFriends()->At(fIndex);
71 TFriendElement *element = dynamic_cast<TFriendElement*>( obj );
72 if (element) fDirector.SetTree(element->GetTree());
73 else fDirector.SetTree(0);
74 } else {
76 }
77 }
78
79} // namespace Internal
80} // namespace ROOT
long long Long64_t
Definition: RtypesCore.h:71
#define ClassImp(name)
Definition: Rtypes.h:361
Long64_t GetReadEntry() const
Return the current 'local' entry number; i.e.
void Attach(Detail::TBranchProxy *p)
void SetReadEntry(Long64_t entry)
Move to a new entry to read entry is the 'local' entry number; i.e.
TBranchProxyDirector fDirector
Definition: TFriendProxy.h:24
Long64_t GetReadEntry() const
Return the entry number currently being looked at.
void ResetReadEntry()
Refresh the cached read entry number from the original tree.
void Update(TTree *newmain)
Update the address of the underlying tree.
A TFriendElement TF describes a TTree object TF in a file.
virtual TTree * GetTree()
Return pointer to friend TTree.
virtual TObject * At(Int_t idx) const
Returns the object at position idx. Returns 0 if idx is out of range.
Definition: TList.cxx:356
Mother of all ROOT objects.
Definition: TObject.h:37
A TTree represents a columnar dataset.
Definition: TTree.h:78
virtual Long64_t GetReadEntry() const
Definition: TTree.h:503
virtual TTree * GetTree() const
Definition: TTree.h:511
virtual TList * GetListOfFriends() const
Definition: TTree.h:484
int main(int argc, char **argv)
tbb::task_arena is an alias of tbb::interface7::task_arena, which doesn't allow to forward declare tb...
Definition: StringConv.hxx:21