Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
TFileDrawMap.h
Go to the documentation of this file.
1 // @(#)root/treeplayer:$Id$
2 // Author: Rene Brun 15/01/2003
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2003, 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 
12 #ifndef ROOT_TFileDrawMap
13 #define ROOT_TFileDrawMap
14 
15 
16 //////////////////////////////////////////////////////////////////////////
17 // //
18 // TFileDrawMap //
19 // //
20 // Draw a 2-d map of the objects in a file //
21 // //
22 //////////////////////////////////////////////////////////////////////////
23 
24 #include "TNamed.h"
25 
26 class TH1;
27 class TFile;
28 class TDirectory;
29 class TBox;
30 class TBranch;
31 
32 class TFileDrawMap : public TNamed {
33 
34 protected:
35  TFile *fFile; //pointer to the file
36  TH1 *fFrame; //histogram used to draw the map frame
37  TString fKeys; //list of keys
38  TString fOption; //drawing options
39  Int_t fXsize; //size in bytes of X axis
40  Int_t fYsize; //size in K/Mbytes of Y axis
41 
42  virtual void DrawMarker(Int_t marker, Long64_t eseek);
43  virtual Bool_t GetObjectInfoDir(TDirectory *dir, Int_t px, Int_t py, TString &info) const;
44  virtual void PaintBox(TBox &box, Long64_t bseek, Int_t nbytes);
45  virtual void PaintDir(TDirectory *dir, const char *keys);
46  virtual TObject *GetObject();
47 
48 public:
49  TFileDrawMap();
50  TFileDrawMap(const TFile *file, const char *keys, Option_t *option);
51  virtual ~TFileDrawMap();
52 
53  virtual void AnimateTree(const char *branches=""); // *MENU*
54  virtual Int_t DistancetoPrimitive(Int_t px, Int_t py);
55  virtual void DrawObject(); // *MENU*
56  virtual void DumpObject(); // *MENU*
57  virtual void ExecuteEvent(Int_t event, Int_t px, Int_t py);
58  virtual char *GetObjectInfo(Int_t px, Int_t py) const;
59  virtual void InspectObject(); // *MENU*
60  virtual void Paint(Option_t *option);
61 
62  ClassDef(TFileDrawMap,1); //Draw a 2-d map of the objects in a file
63 };
64 
65 #endif