GSI Object Oriented Online Offline (Go4)  GO4-5.3.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
TGo4HistogramStatus.h
Go to the documentation of this file.
1 // $Id: TGo4HistogramStatus.h 478 2009-10-29 12:26:09Z linev $
2 //-----------------------------------------------------------------------
3 // The GSI Online Offline Object Oriented (Go4) Project
4 // Experiment Data Processing at EE department, GSI
5 //-----------------------------------------------------------------------
6 // Copyright (C) 2000- GSI Helmholtzzentrum für Schwerionenforschung GmbH
7 // Planckstr. 1, 64291 Darmstadt, Germany
8 // Contact: http://go4.gsi.de
9 //-----------------------------------------------------------------------
10 // This software can be used under the license agreements as stated
11 // in Go4License.txt file which is part of the distribution.
12 //-----------------------------------------------------------------------
13 
14 #ifndef TGO4HISTOGRAMSTATUS_H
15 #define TGO4HISTOGRAMSTATUS_H
16 
17 #include "TGo4ObjectStatus.h"
18 
19 #include "Htypes.h"
20 
21 class TH1;
22 
29 
30  friend class TGo4AnalysisProxy;
31 
32  public:
33 
35 
40  TGo4HistogramStatus(TH1* his, Bool_t allstatistics=kFALSE) ;
41 
42  virtual ~TGo4HistogramStatus() ;
43 
44 
45 
48  virtual Int_t PrintStatus(Text_t* buffer=0, Int_t buflen=0);
49 
50  Int_t GetDimension(){ return fiDim; }
51 
52  Int_t GetXbins(){ return fiNbinX; }
53 
54  Int_t GetYbins(){ return fiNbinY; }
55 
56  Int_t GetZbins(){ return fiNbinZ; }
57 
58  Axis_t GetXmin(){ return fdXmin; }
59 
60  Axis_t GetXmax(){ return fdXmax; }
61 
62  Axis_t GetYmin(){ return fdYmin; }
63 
64  Axis_t GetYmax(){ return fdYmax;}
65 
66  Axis_t GetZmin(){ return fdZmin;}
67 
68  Axis_t GetZmax(){ return fdZmax;}
69 
70  Stat_t GetEntries(){ return fdEntries;}
71 
72  Stat_t GetXmean(){ return fdXmean; }
73 
74  Stat_t GetYmean(){ return fdYmean; }
75 
76  Stat_t GetZmean(){ return fdZmean; }
77 
78  Stat_t GetXrms(){ return fdXrms; }
79 
80  Stat_t GetYrms(){ return fdYrms; }
81 
82  Stat_t GetZrms(){ return fdZrms; }
83 
84  private:
85 
87  Int_t fiDim;
88 
90  Int_t fiNbinX;
91 
93  Int_t fiNbinY;
94 
96  Int_t fiNbinZ;
97 
99  Axis_t fdXmin;
100 
102  Axis_t fdXmax;
103 
105  Axis_t fdYmin;
106 
108  Axis_t fdYmax;
109 
111  Axis_t fdZmin;
112 
114  Axis_t fdZmax;
115 
117  Stat_t fdEntries;
118 
120  Stat_t fdXmean;
121 
123  Stat_t fdYmean;
124 
126  Stat_t fdZmean;
127 
129  Stat_t fdXrms;
130 
132  Stat_t fdYrms;
133 
135  Stat_t fdZrms;
136 
138 };
139 
140 #endif //TGO4HISTOGRAMSTATUS_H
ClassDef(TGo4AnalysisProxy, 1)
virtual Int_t PrintStatus(Text_t *buffer=0, Int_t buflen=0)