Logo ROOT   6.08/07
Reference Guide
TTreePerfStats.h
Go to the documentation of this file.
1 // @(#)root/treeplayer:$Id$
2 // Author: Rene Brun 29/10/09
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2009, 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_TTreePerfStats
13 #define ROOT_TTreePerfStats
14 
15 //////////////////////////////////////////////////////////////////////////
16 // //
17 // TTreePerfStats //
18 // //
19 // TTree I/O performance measurement //
20 // //
21 //////////////////////////////////////////////////////////////////////////
22 
23 
24 #ifndef ROOT_TVirtualPerfStats
25 #include "TVirtualPerfStats.h"
26 #endif
27 #ifndef ROOT_TString
28 #include "TString.h"
29 #endif
30 
31 
32 class TBrowser;
33 class TFile;
34 class TTree;
35 class TStopwatch;
36 class TPaveText;
37 class TGraphErrors;
38 class TGaxis;
39 class TText;
41 
42 protected:
43  Int_t fTreeCacheSize; //TTreeCache buffer size
44  Int_t fNleaves; //Number of leaves in the tree
45  Int_t fReadCalls; //Number of read calls
46  Int_t fReadaheadSize; //Readahead cache size
47  Long64_t fBytesRead; //Number of bytes read
48  Long64_t fBytesReadExtra;//Number of bytes (overhead) of the readahead cache
49  Double_t fRealNorm; //Real time scale factor for fGraphTime
50  Double_t fRealTime; //Real time
51  Double_t fCpuTime; //Cpu time
52  Double_t fDiskTime; //Time spent in pure raw disk IO
53  Double_t fUnzipTime; //Time spent uncompressing the data.
54  Double_t fCompress; //Tree compression factor
55  TString fName; //name of this TTreePerfStats
56  TString fHostInfo; //name of the host system, ROOT version and date
57  TFile *fFile; //!pointer to the file containing the Tree
58  TTree *fTree; //!pointer to the Tree being monitored
59  TGraphErrors *fGraphIO ; //pointer to the graph with IO data
60  TGraphErrors *fGraphTime ; //pointer to the graph with timestamp info
61  TPaveText *fPave; //pointer to annotation pavetext
62  TStopwatch *fWatch; //TStopwatch pointer
63  TGaxis *fRealTimeAxis; //pointer to TGaxis object showing real-time
64  TText *fHostInfoText; //Graphics Text object with the fHostInfo data
65 
66 public:
68  TTreePerfStats(const char *name, TTree *T);
69  virtual ~TTreePerfStats();
70  virtual void Browse(TBrowser *b);
71  virtual Int_t DistancetoPrimitive(Int_t px, Int_t py);
72  virtual void Draw(Option_t *option="");
73  virtual void ExecuteEvent(Int_t event, Int_t px, Int_t py);
74  virtual void Finish();
75  virtual Long64_t GetBytesRead() const {return fBytesRead;}
76  virtual Long64_t GetBytesReadExtra() const {return fBytesReadExtra;}
77  virtual Double_t GetCpuTime() const {return fCpuTime;}
78  virtual Double_t GetDiskTime() const {return fDiskTime;}
81  const char *GetHostInfo() const{return fHostInfo.Data();}
82  const char *GetName() const{return fName.Data();}
83  virtual Int_t GetNleaves() const {return fNleaves;}
84  virtual Long64_t GetNumEvents() const {return 0;}
85  TPaveText *GetPave() {return fPave;}
86  virtual Int_t GetReadaheadSize() const {return fReadaheadSize;}
87  virtual Int_t GetReadCalls() const {return fReadCalls;}
88  virtual Double_t GetRealTime() const {return fRealTime;}
89  TStopwatch *GetStopwatch() const {return fWatch;}
90  virtual Int_t GetTreeCacheSize() const {return fTreeCacheSize;}
91  virtual Double_t GetUnzipTime() const {return fUnzipTime; }
92  virtual void Paint(Option_t *chopt="");
93  virtual void Print(Option_t *option="") const;
94 
95  virtual void SimpleEvent(EEventType) {}
96  virtual void PacketEvent(const char *, const char *, const char *,
98  virtual void FileEvent(const char *, const char *, const char *, const char *, Bool_t) {}
99  virtual void FileOpenEvent(TFile *, const char *, Double_t) {}
100  virtual void FileReadEvent(TFile *file, Int_t len, Double_t start);
101  virtual void UnzipEvent(TObject *tree, Long64_t pos, Double_t start, Int_t complen, Int_t objlen);
102  virtual void RateEvent(Double_t , Double_t , Long64_t , Long64_t) {}
103 
104  virtual void SaveAs(const char *filename="",Option_t *option="") const;
105  virtual void SavePrimitive(std::ostream &out, Option_t *option = "");
106  virtual void SetBytesRead(Long64_t nbytes) {fBytesRead = nbytes;}
107  virtual void SetBytesReadExtra(Long64_t nbytes) {fBytesReadExtra = nbytes;}
108  virtual void SetCompress(Double_t cx) {fCompress = cx;}
109  virtual void SetDiskTime(Double_t t) {fDiskTime = t;}
110  virtual void SetNumEvents(Long64_t) {}
111  virtual void SetCpuTime(Double_t cptime) {fCpuTime = cptime;}
112  virtual void SetGraphIO(TGraphErrors *gr) {fGraphIO = gr;}
113  virtual void SetGraphTime(TGraphErrors *gr) {fGraphTime = gr;}
114  virtual void SetHostInfo(const char *info) {fHostInfo = info;}
115  virtual void SetName(const char *name) {fName = name;}
116  virtual void SetNleaves(Int_t nleaves) {fNleaves = nleaves;}
117  virtual void SetReadaheadSize(Int_t nbytes) {fReadaheadSize = nbytes;}
118  virtual void SetReadCalls(Int_t ncalls) {fReadCalls = ncalls;}
119  virtual void SetRealNorm(Double_t rnorm) {fRealNorm = rnorm;}
120  virtual void SetRealTime(Double_t rtime) {fRealTime = rtime;}
121  virtual void SetTreeCacheSize(Int_t nbytes) {fTreeCacheSize = nbytes;}
122  virtual void SetUnzipTime(Double_t uztime) {fUnzipTime = uztime;}
123 
124  ClassDef(TTreePerfStats,6) // TTree I/O performance measurement
125 };
126 
127 #endif
virtual void ExecuteEvent(Int_t event, Int_t px, Int_t py)
Return distance to one of the objects in the TTreePerfStats.
virtual void Browse(TBrowser *b)
Browse.
virtual void SetBytesReadExtra(Long64_t nbytes)
virtual void SetDiskTime(Double_t t)
Long64_t fBytesRead
virtual Int_t DistancetoPrimitive(Int_t px, Int_t py)
Return distance to one of the objects in the TTreePerfStats.
virtual void FileReadEvent(TFile *file, Int_t len, Double_t start)
Record TTree file read event.
virtual Int_t GetReadCalls() const
long long Long64_t
Definition: RtypesCore.h:69
TPaveText * GetPave()
TGraphErrors * fGraphIO
pointer to the Tree being monitored
TGraphErrors * GetGraphTime()
virtual void SetNumEvents(Long64_t)
Provides the interface for the PROOF internal performance measurement and event tracing.
virtual void FileOpenEvent(TFile *, const char *, Double_t)
const char Option_t
Definition: RtypesCore.h:62
virtual void Finish()
When the run is finished this function must be called to save the current parameters in the file and ...
virtual void SetReadaheadSize(Int_t nbytes)
double T(double x)
Definition: ChebyshevPol.h:34
virtual void Print(Option_t *option="") const
Print the TTree I/O perf stats.
A ROOT file is a suite of consecutive data records (TKey instances) with a well defined format...
Definition: TFile.h:50
Long64_t fBytesReadExtra
const char * GetHostInfo() const
Double_t fRealTime
virtual Double_t GetUnzipTime() const
Basic string class.
Definition: TString.h:137
virtual void SaveAs(const char *filename="", Option_t *option="") const
Save this object to filename.
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
virtual void SimpleEvent(EEventType)
virtual void RateEvent(Double_t, Double_t, Long64_t, Long64_t)
virtual void SetCpuTime(Double_t cptime)
TGaxis * fRealTimeAxis
#define ClassDef(name, id)
Definition: Rtypes.h:254
virtual void SetTreeCacheSize(Int_t nbytes)
Double_t fUnzipTime
virtual void SetBytesRead(Long64_t nbytes)
Base class for several text objects.
Definition: TText.h:33
virtual void SetCompress(Double_t cx)
virtual void SetRealTime(Double_t rtime)
virtual void SetGraphTime(TGraphErrors *gr)
virtual void FileEvent(const char *, const char *, const char *, const char *, Bool_t)
TStopwatch * GetStopwatch() const
Double_t fDiskTime
virtual void SetGraphIO(TGraphErrors *gr)
const char * GetName() const
Returns name of object.
Using a TBrowser one can browse all ROOT objects.
Definition: TBrowser.h:41
virtual Int_t GetNleaves() const
virtual Double_t GetRealTime() const
Double_t fCompress
virtual void SetName(const char *name)
virtual void UnzipEvent(TObject *tree, Long64_t pos, Double_t start, Int_t complen, Int_t objlen)
Record TTree unzip event.
virtual ~TTreePerfStats()
Destructor.
virtual Double_t GetCpuTime() const
virtual void SetReadCalls(Int_t ncalls)
The axis painter class.
Definition: TGaxis.h:30
TTree I/O performance measurement.
TStopwatch * fWatch
TGraphErrors * gr
Definition: legend1.C:25
TGraphErrors * GetGraphIO()
Double_t fCpuTime
virtual void SetNleaves(Int_t nleaves)
A Pave (see TPave) with text, lines or/and boxes inside.
Definition: TPaveText.h:27
virtual void SetRealNorm(Double_t rnorm)
virtual Long64_t GetNumEvents() const
virtual void SetUnzipTime(Double_t uztime)
double Double_t
Definition: RtypesCore.h:55
virtual Int_t GetTreeCacheSize() const
virtual void PacketEvent(const char *, const char *, const char *, Long64_t, Double_t, Double_t, Double_t, Long64_t)
Mother of all ROOT objects.
Definition: TObject.h:37
TText * fHostInfoText
virtual void SetHostInfo(const char *info)
virtual void Paint(Option_t *chopt="")
Draw the TTree I/O perf graph.
virtual Long64_t GetBytesRead() const
Definition: file.py:1
TTree * fTree
pointer to the file containing the Tree
Double_t fRealNorm
you should not use this method at all Int_t Int_t Double_t Double_t Double_t Int_t Double_t Double_t Double_t Double_t b
Definition: TRolke.cxx:630
A TGraphErrors is a TGraph with error bars.
Definition: TGraphErrors.h:28
Definition: tree.py:1
TTreePerfStats()
default constructor (used when reading an object only)
virtual void SavePrimitive(std::ostream &out, Option_t *option="")
Save primitive as a C++ statement(s) on output stream out.
A TTree object has a header with a name and a title.
Definition: TTree.h:98
virtual Long64_t GetBytesReadExtra() const
virtual Int_t GetReadaheadSize() const
TGraphErrors * fGraphTime
virtual Double_t GetDiskTime() const
char name[80]
Definition: TGX11.cxx:109
virtual void Draw(Option_t *option="")
Draw the TTree I/O perf graph.
TPaveText * fPave
const char * Data() const
Definition: TString.h:349
Stopwatch class.
Definition: TStopwatch.h:30