Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:12:06

0001 // Author: Roel Aaij   30/08/2007
0002 
0003 /*************************************************************************
0004  * Copyright (C) 1995-2007, Rene Brun and Fons Rademakers.               *
0005  * All rights reserved.                                                  *
0006  *                                                                       *
0007  * For the licensing terms see $ROOTSYS/LICENSE.                         *
0008  * For the list of contributors see $ROOTSYS/README/CREDITS.             *
0009  *************************************************************************/
0010 
0011 #ifndef ROOT_TGTreeTable
0012 #define ROOT_TGTreeTable
0013 
0014 #include "TGTable.h"
0015 
0016 class TTree;
0017 
0018 class TGTreeTable : public TGTable {
0019 
0020 private:
0021    TTree *fTree; // Pointer to the tree
0022 
0023 protected:
0024 
0025 public:
0026    TGTreeTable(TGWindow *p = nullptr, Int_t id = -1, TTree *tree = nullptr,
0027                const char *expression = nullptr, const char *selection = nullptr,
0028                const char *option = nullptr, UInt_t nrows = 50, UInt_t ncolumns = 10);
0029    ~TGTreeTable() override;
0030 
0031    ClassDefOverride(TGTreeTable, 0) // A TGTable that owns it's TTreeTableIngeface.
0032 };
0033 
0034 #endif