/usr/include/root/TPaveClass.h is in libroot-graf2d-gpad-dev 5.34.14-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | // @(#)root/gpad:$Id$
// Author: Rene Brun 06/08/99
/*************************************************************************
* Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
* All rights reserved. *
* *
* For the licensing terms see $ROOTSYS/LICENSE. *
* For the list of contributors see $ROOTSYS/README/CREDITS. *
*************************************************************************/
#ifndef ROOT_TPaveClass
#define ROOT_TPaveClass
//////////////////////////////////////////////////////////////////////////
// //
// TPaveClass //
// //
// A TPaveLabel specialized for TClassTree objects //
// //
//////////////////////////////////////////////////////////////////////////
#ifndef ROOT_TPaveLabel
#include "TPaveLabel.h"
#endif
#ifndef ROOT_TTreeViewer
#include "TClassTree.h"
#endif
class TPaveClass : public TPaveLabel{
protected:
TClassTree *fClassTree; //Pointer to the TClassTree referencing this object
public:
TPaveClass();
TPaveClass(Double_t x1, Double_t y1,Double_t x2 ,Double_t y2, const char *label, TClassTree *classtree);
TPaveClass(const TPaveClass &PaveVar);
virtual ~TPaveClass();
void Copy(TObject &PaveVar) const;
virtual void DrawClasses(const char *classes="this"); // *MENU*
TClassTree *GetClassTree() const {return fClassTree;}
virtual void SaveAs(const char *filename="",Option_t *option="") const; // *MENU*
virtual void SavePrimitive(ostream &out, Option_t *option = "");
virtual void SetClasses(const char *classes="this", Option_t *option="ID"); // *MENU*
virtual void ShowClassesUsedBy(const char *classes="this"); // *MENU*
virtual void ShowClassesUsing(const char *classes="this"); // *MENU*
virtual void SetClassTree(TClassTree *classtree) {fClassTree = classtree;}
virtual void ShowLinks(Option_t *option="HMR"); // *MENU*
ClassDef(TPaveClass,1) //A TPaveLabel specialized for TClassTree objects
};
#endif
|