Logo ROOT   6.18/05
Reference Guide
TFriendElement.cxx
Go to the documentation of this file.
1// @(#)root/tree:$Id$
2// Author: Rene Brun 07/04/2001
3
4/*************************************************************************
5 * Copyright (C) 1995-2001, 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/** \class TFriendElement
13\ingroup tree
14
15A TFriendElement TF describes a TTree object TF in a file.
16When a TFriendElement TF is added to the the list of friends of an
17existing TTree T, any variable from TF can be referenced in a query
18to T.
19
20To add a TFriendElement to an existing TTree T, do:
21~~~ {.cpp}
22 T.AddFriend("friendTreename","friendTreeFile");
23~~~
24See TTree::AddFriend for more information.
25*/
26
27#include "TFriendElement.h"
28#include "TBuffer.h"
29#include "TTree.h"
30#include "TFile.h"
31#include "TROOT.h"
32
34
35////////////////////////////////////////////////////////////////////////////////
36/// Default constructor for a friend element.
37
39{
40 fFile = 0;
41 fTree = 0;
43 fParentTree = 0;
44}
45
46////////////////////////////////////////////////////////////////////////////////
47/// Create a friend element.
48///
49/// If treename is of the form "a=b", an alias called "a" is created for
50/// treename = "b" by default the alias name is the name of the tree.
51
52TFriendElement::TFriendElement(TTree *tree, const char *treename, const char *filename)
53 :TNamed(treename,filename)
54{
55 fFile = 0;
56 fTree = 0;
59 fTreeName = treename;
60 if (treename && strchr(treename,'=')) {
61 char *temp = Compress(treename);
62 char *equal = strchr(temp,'=');
63 if (!equal) return;;
64 *equal=0;
65 fTreeName = equal+1;
66 SetName(temp);
67 delete [] temp;
68 }
69
70 Connect();
71}
72
73////////////////////////////////////////////////////////////////////////////////
74/// Create a friend element.
75///
76/// If treename is of the form "a=b", an alias called "a" is created for
77/// treename = "b" by default the alias name is the name of the tree.
78/// The passed TFile is managed by the user (i.e. user must delete the TFile).
79
81 :TNamed(treename,file?file->GetName():"")
82{
83 fFile = file;
84 fTree = 0;
87 fTreeName = treename;
90 // The friend and the TTree are in the same file, let's not record
91 // the filename.
92 SetTitle("");
93 }
94 if (treename && strchr(treename,'=')) {
95 char *temp = Compress(treename);
96 char *equal = strchr(temp,'=');
97 if (!equal) return;;
98 *equal=0;
99 fTreeName = equal+1;
100 SetName(temp);
101 delete [] temp;
102 }
103
104 Connect();
105}
106
107////////////////////////////////////////////////////////////////////////////////
108/// Create a friend element.
109
110TFriendElement::TFriendElement(TTree *tree, TTree* friendtree, const char *alias)
111 : TNamed(friendtree?friendtree->GetName():"",
112 friendtree
113 ? ( friendtree->GetDirectory()
114 ? ( friendtree->GetDirectory()->GetFile()
115 ? friendtree->GetDirectory()->GetFile()->GetName()
116 : "")
117 : "")
118 : "")
119{
120 fTree = friendtree;
121 fTreeName = "";
122 fFile = 0;
125 if (fTree) {
130 // The friend and the TTree are in the same file, let's not record
131 // the filename.
132 SetTitle("");
133 }
134 } else {
135 MakeZombie(); // ROOT-7007
136 }
137 if (alias && strlen(alias)) {
138 char *temp = Compress(alias);
139 SetName(temp);
140 delete [] temp;
141 }
142
143 // No need to Connect.
144}
145
146////////////////////////////////////////////////////////////////////////////////
147/// Destructor. Disconnect from the owning tree if needed.
148
150{
151 DisConnect();
152}
153
154////////////////////////////////////////////////////////////////////////////////
155/// Connect file and return TTree.
156
158{
159 GetFile();
160 auto treePtr = GetTree();
161 if (!treePtr) MakeZombie(); // ROOT-7007
162 return treePtr;
163}
164
165////////////////////////////////////////////////////////////////////////////////
166/// DisConnect file and TTree.
167
169{
170 if (fOwnFile) delete fFile;
171 fFile = 0;
172 fTree = 0;
173 return 0;
174}
175
176////////////////////////////////////////////////////////////////////////////////
177/// Return pointer to TFile containing this friend TTree.
178
180{
181 if (fFile || IsZombie()) return fFile;
182
183 if (strlen(GetTitle())) {
186 fOwnFile = kTRUE;
187 } else {
189 if (dir) {
190 fFile = dir->GetFile();
192 }
193 }
194 if (fFile && fFile->IsZombie()) {
195 MakeZombie();
196 delete fFile;
197 fFile = 0;
198 }
199 return fFile;
200}
201
202////////////////////////////////////////////////////////////////////////////////
203/// Return pointer to friend TTree.
204
206{
207 if (fTree) return fTree;
208
209 if (GetFile()) {
211 if (fTree) return fTree;
212 }
213
214 // This could be a memory tree or chain
215 fTree = dynamic_cast<TTree*>( gROOT->FindObject(GetTreeName()) );
216
217 return fTree;
218}
219
220////////////////////////////////////////////////////////////////////////////////
221/// List this friend element.
222
224{
225 printf(" Friend Tree: %s in file: %s\n",GetName(),GetTitle());
226}
const Bool_t kFALSE
Definition: RtypesCore.h:88
const Bool_t kTRUE
Definition: RtypesCore.h:87
const char Option_t
Definition: RtypesCore.h:62
#define ClassImp(name)
Definition: Rtypes.h:365
#define gROOT
Definition: TROOT.h:414
char * Compress(const char *str)
Remove all blanks from the string str.
Definition: TString.cxx:2504
Describe directory structure in memory.
Definition: TDirectory.h:34
virtual TFile * GetFile() const
Definition: TDirectory.h:152
void GetObject(const char *namecycle, T *&ptr)
Definition: TDirectory.h:144
A ROOT file is a suite of consecutive data records (TKey instances) with a well defined format.
Definition: TFile.h:48
static TFile * Open(const char *name, Option_t *option="", const char *ftitle="", Int_t compress=ROOT::RCompressionSetting::EDefaults::kUseGeneralPurpose, Int_t netopt=0)
Create / open a file.
Definition: TFile.cxx:3980
A TFriendElement TF describes a TTree object TF in a file.
TFriendElement()
Default constructor for a friend element.
virtual void ls(Option_t *option="") const
List this friend element.
TFile * fFile
! pointer to the file containing the friend TTree
virtual const char * GetTreeName() const
Bool_t fOwnFile
true if file is managed by this class
TTree * fTree
! pointer to the TTree described by this element
virtual TTree * GetTree()
Return pointer to friend TTree.
virtual TFile * GetFile()
Return pointer to TFile containing this friend TTree.
virtual TTree * Connect()
Connect file and return TTree.
virtual TTree * DisConnect()
DisConnect file and TTree.
TTree * fParentTree
! pointer to the parent TTree
virtual ~TFriendElement()
Destructor. Disconnect from the owning tree if needed.
TString fTreeName
name of the friend TTree
The TNamed class is the base class for all named ROOT classes.
Definition: TNamed.h:29
virtual void SetTitle(const char *title="")
Set the title of the TNamed.
Definition: TNamed.cxx:164
virtual void SetName(const char *name)
Set the name of the TNamed.
Definition: TNamed.cxx:140
virtual const char * GetTitle() const
Returns title of object.
Definition: TNamed.h:48
virtual const char * GetName() const
Returns name of object.
Definition: TNamed.h:47
R__ALWAYS_INLINE Bool_t IsZombie() const
Definition: TObject.h:134
void MakeZombie()
Definition: TObject.h:49
A TTree represents a columnar dataset.
Definition: TTree.h:71
TDirectory * GetDirectory() const
Definition: TTree.h:401
std::string GetName(const std::string &scope_name)
Definition: Cppyy.cxx:146
Definition: file.py:1
Definition: tree.py:1