Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
TGTreeTable.h
Go to the documentation of this file.
1// Author: Roel Aaij 30/08/2007
2
3/*************************************************************************
4 * Copyright (C) 1995-2007, Rene Brun and Fons Rademakers. *
5 * All rights reserved. *
6 * *
7 * For the licensing terms see $ROOTSYS/LICENSE. *
8 * For the list of contributors see $ROOTSYS/README/CREDITS. *
9 *************************************************************************/
10
11#ifndef ROOT_TGTreeTable
12#define ROOT_TGTreeTable
13
14#include "TGTable.h"
15
16class TTree;
17
18class TGTreeTable : public TGTable {
19
20private:
21 TTree *fTree; // Pointer to the tree
22
23protected:
24
25public:
26 TGTreeTable(TGWindow *p = nullptr, Int_t id = -1, TTree *tree = nullptr,
27 const char *expression = nullptr, const char *selection = nullptr,
28 const char *option = nullptr, UInt_t nrows = 50, UInt_t ncolumns = 10);
29 ~TGTreeTable() override;
30
31 ClassDefOverride(TGTreeTable, 0) // A TGTable that owns it's TTreeTableIngeface.
32};
33
34#endif
#define ClassDefOverride(name, id)
Definition Rtypes.h:341
winID h TVirtualViewer3D TVirtualGLPainter p
Option_t Option_t option
Create an array to hold a bunch of numbers.
Definition TGTable.h:34
TGTreeTable is a TGTable that owns it's own interface.
Definition TGTreeTable.h:18
TTree * fTree
Definition TGTreeTable.h:21
~TGTreeTable() override
TGTreeTable destructor.
ROOT GUI Window base class.
Definition TGWindow.h:23
A TTree represents a columnar dataset.
Definition TTree.h:79