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:
49 kFromChain = BIT(9), // Indicates a TChain inserted this element in one of its content TTree
50 kUpdated = BIT(10) // Indicates that the chain 'fTree' went through a LoadTree
51 };
53 TFriendElement(TTree *tree, const char *treename, const char *filename);
54 TFriendElement(TTree *tree, const char *treename, TFile *file);
55 TFriendElement(TTree *tree, TTree* friendtree, const char *alias);
56 virtual ~TFriendElement();
57 virtual TTree *Connect();
58 virtual TTree *DisConnect();
59 virtual TFile *GetFile();
60 virtual TTree *GetParentTree() const {return fParentTree;}
61 virtual TTree *GetTree();
62 virtual const char *GetTreeName() const {return fTreeName.Data();}
63 virtual void ls(Option_t *option="") const;
64 void Reset() { fTree = nullptr; fFile = nullptr; }
65 Bool_t IsUpdated() const { return TestBit(kUpdated); }
68 virtual void RecursiveRemove(TObject *obj);
69
70
71 ClassDef(TFriendElement,2) //A friend element of another TTree
72};
73
74#endif
75
const char Option_t
Definition: RtypesCore.h:64
#define ClassDef(name, id)
Definition: Rtypes.h:322
#define BIT(n)
Definition: Rtypes.h:83
TClass instances represent classes, structs and namespaces in the ROOT type system.
Definition: TClass.h:80
A ROOT file is a suite of consecutive data records (TKey instances) with a well defined format.
Definition: TFile.h:53
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:9351
virtual TTree * GetParentTree() const
virtual TFile * GetFile()
Return pointer to TFile containing this friend TTree.
virtual TTree * Connect()
Connect file and return TTree.
Bool_t IsUpdated() const
virtual void RecursiveRemove(TObject *obj)
Forget deleted elements.
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
Mother of all ROOT objects.
Definition: TObject.h:37
R__ALWAYS_INLINE Bool_t TestBit(UInt_t f) const
Definition: TObject.h:187
void SetBit(UInt_t f, Bool_t set)
Set or unset the user status bits as specified in f.
Definition: TObject.cxx:694
void ResetBit(UInt_t f)
Definition: TObject.h:186
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:78
Definition: file.py:1
Definition: tree.py:1