Logo ROOT  
Reference Guide
TFriendElement.h
Go to the documentation of this file.
1// @(#)root/tree:$Id$
2// Author: Rene Brun 07/04/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#ifndef ROOT_TFriendElement
12#define ROOT_TFriendElement
13
14
15//////////////////////////////////////////////////////////////////////////
16// //
17// TFriendElement //
18// //
19// A TFriendElement TF describes a TTree object TF in a file. //
20// When a TFriendElement TF is added to the the list of friends of an //
21// existing TTree T, any variable from TF can be referenced in a query //
22// to T. //
23// //
24//////////////////////////////////////////////////////////////////////////
25
26
27#include "TNamed.h"
28
29class TFile;
30class TTree;
31class TClass;
32
33class TFriendElement : public TNamed {
34
35protected:
36 TTree *fParentTree; ///<! pointer to the parent TTree
37 TTree *fTree; ///<! pointer to the TTree described by this element
38 TFile *fFile; ///<! pointer to the file containing the friend TTree
39 TString fTreeName; ///< name of the friend TTree
40 Bool_t fOwnFile; ///< true if file is managed by this class
41
44
45 friend void TFriendElement__SetTree(TTree *tree, TList *frlist);
46
47public:
48 enum EStatusBits { kFromChain = BIT(11) };
50 TFriendElement(TTree *tree, const char *treename, const char *filename);
51 TFriendElement(TTree *tree, const char *treename, TFile *file);
52 TFriendElement(TTree *tree, TTree* friendtree, const char *alias);
53 virtual ~TFriendElement();
54 virtual TTree *Connect();
55 virtual TTree *DisConnect();
56 virtual TFile *GetFile();
57 virtual TTree *GetParentTree() const {return fParentTree;}
58 virtual TTree *GetTree();
59 virtual const char *GetTreeName() const {return fTreeName.Data();}
60 virtual void ls(Option_t *option="") const;
61
62 ClassDef(TFriendElement,2) //A friend element of another TTree
63};
64
65#endif
66
bool Bool_t
Definition: RtypesCore.h:59
const char Option_t
Definition: RtypesCore.h:62
#define ClassDef(name, id)
Definition: Rtypes.h:326
#define BIT(n)
Definition: Rtypes.h:83
TClass instances represent classes, structs and namespaces in the ROOT type system.
Definition: TClass.h:75
A ROOT file is a suite of consecutive data records (TKey instances) with a well defined format.
Definition: TFile.h:48
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.
friend void TFriendElement__SetTree(TTree *tree, TList *frlist)
Set the fTree member for all friend elements.
Definition: TTree.cxx:9243
virtual TTree * GetParentTree() const
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
TFriendElement(const TFriendElement &)=delete
TFriendElement & operator=(const TFriendElement &)=delete
virtual ~TFriendElement()
Destructor. Disconnect from the owning tree if needed.
TString fTreeName
name of the friend TTree
A doubly linked list.
Definition: TList.h:44
The TNamed class is the base class for all named ROOT classes.
Definition: TNamed.h:29
EStatusBits
Definition: TObject.h:57
Basic string class.
Definition: TString.h:131
const char * Data() const
Definition: TString.h:364
A TTree represents a columnar dataset.
Definition: TTree.h:72
Definition: file.py:1
Definition: tree.py:1