source: trunk/MagicSoft/Mars/mhist/MHCamera.h@ 7867

Last change on this file since 7867 was 7867, checked in by tbretz, 18 years ago
*** empty log message ***
File size: 20.7 KB
Line 
1#ifndef MARS_MHCamera
2#define MARS_MHCamera
3
4#ifndef MARS_MAGIC
5#include "MAGIC.h"
6#endif
7#ifndef ROOT_TArrayC
8#include <TArrayC.h>
9#endif
10#ifndef ROOT_TArrayI
11#include <TArrayI.h>
12#endif
13#ifndef ROOT_MArrayD
14#include <MArrayD.h>
15#endif
16#ifndef ROOT_TClonesArray
17#include <TClonesArray.h>
18#endif
19#ifndef ROOT_TH1
20#include <TH1.h>
21#endif
22#ifndef ROOT_TCanvas
23#include <TCanvas.h>
24#endif
25
26class TPaveStats;
27class TProfile;
28
29class MGeomCam;
30class MCamEvent;
31class MRflEvtData;
32class MCerPhotEvt;
33class MImgCleanStd;
34
35class MHCamera : public TH1D
36{
37public:
38 enum {
39 kProfile = BIT(18), // FIXME: When changing change max/min!
40 kFreezed = BIT(19),
41 kNoLegend = BIT(20),
42 kNoScale = BIT(21),
43 kNoUnused = BIT(22)/*,
44 kSqrtVariance = BIT(21),
45 kSinglePixelProfile = BIT(22)*/
46 };
47protected:
48 MGeomCam *fGeomCam; // pointer to camera geometry (y-axis)
49 TArrayC fUsed; // array containing flags
50 TArrayI fBinEntries; // number of entries per bin
51
52 TList *fNotify; //!
53
54//#if ROOT_VERSION_CODE < ROOT_VERSION(4,00,03)
55 Bool_t fFreezed; //! Just a dummy!!!! ([Set,Is]Freezed)
56//#endif
57
58 Float_t fAbberation;
59
60 void Init();
61/*
62 Stat_t Profile(Stat_t val) const
63 {
64 if (!TestBit(kProfile))
65 return val;
66
67 const Stat_t n = TH1D::GetEntries();
68 return n>0 ? val/n : val;
69 }
70 */
71 Int_t GetColor(Float_t val, Float_t min, Float_t max, Bool_t islog);
72
73 void PaintIndices(Int_t type);
74 void Update(Bool_t islog, Bool_t isbox, Bool_t iscol, Bool_t issame);
75 void UpdateLegend(Float_t min, Float_t max, Bool_t islog);
76 void SetRange();
77
78 TPaveStats *GetStatisticBox();
79
80 Int_t GetPixelIndex(Int_t px, Int_t py, Float_t conv=1) const;
81
82 void PaintAxisTitle();
83
84 enum {
85 kIsUsed = BIT(1)
86 };
87
88 void ResetUsed(Int_t idx) { CLRBIT(fUsed[idx], kIsUsed); }
89
90 Bool_t FindVal(const TArrayI &arr, Int_t val) const
91 {
92 const Int_t n = arr.GetSize();
93 if (n==0)
94 return kTRUE;
95
96 const Int_t *p = arr.GetArray();
97 const Int_t *end = p+n;
98 while (p<end)
99 if (val==*p++)
100 return kTRUE;
101
102 return kFALSE;
103 }
104 Bool_t MatchSector(Int_t idx, const TArrayI &sector, const TArrayI &aidx) const;
105
106 // This is a trick to remove TH1 entries from the context menu
107 TH1 *Rebin(Int_t ngroup=2, const char*newname="") { return this; }
108 void DrawPanel() {}
109
110 Int_t Fill(Axis_t x);
111 Int_t Fill(const char *name, Stat_t w) { return -1; }
112 void FillN(Int_t ntimes, const Axis_t *x, const Double_t *w, Int_t stride=1) {}
113 void FillN(Int_t, const Axis_t *, const Axis_t *, const Double_t *, Int_t) {}
114
115public:
116 MHCamera();
117 MHCamera(const MGeomCam &geom, const char *name="", const char *title="");
118 ~MHCamera();
119
120 void SetGeometry(const MGeomCam &geom, const char *name="", const char *title="");
121 const MGeomCam* GetGeometry() const { return fGeomCam; }
122
123 Bool_t IsUsed(Int_t idx) const { return TESTBIT(const_cast<TArrayC&>(fUsed)[idx], kIsUsed); }
124 void SetUsed(Int_t idx) { SETBIT(fUsed[idx], kIsUsed); }
125 void SetAllUsed() { fUsed.Reset(BIT(kIsUsed)); }
126
127 Int_t Fill(Axis_t x, Axis_t y, Stat_t w);
128 Int_t Fill(Axis_t x, Stat_t w);
129
130 //void AddPixContent(Int_t idx) const { AddBinContent(idx+1); }
131 //void AddPixContent(Int_t idx, Stat_t w) const { AddBinContent(idx+1, w); }
132
133 // This is a trick to remove TH1 entries from the context menu
134 /*
135 void Add(const TH1 *h1, const TH1 *h2, Double_t c1=1, Double_t c2=1) { TH1::Add(h1, h2, c1, c2); }
136 void Add(TF1 *h1, Double_t c1=1) { TH1::Add(h1, c1); }
137 void Add(const TH1 *h1, Double_t c1=1) { TH1::Add(h1, c1); }
138 void Divide(TF1 *f1, Double_t c1=1) { TH1::Divide(f1, c1); }
139 void Divide(const TH1 *h1) { TH1::Divide(h1); }
140 void Divide(const TH1 *h1, const TH1 *h2, Double_t c1=1, Double_t c2=1, Option_t *option="") { TH1::Divide(h1, h2, c1, c2, option); }
141 void Multiply(TF1 *h1, Double_t c1=1) { TH1::Multiply(h1, c1); }
142 void Multiply(const TH1 *h1) { TH1::Multiply(h1); }
143 void Multiply(const TH1 *h1, const TH1 *h2, Double_t c1=1, Double_t c2=1, Option_t *option="") { TH1::Multiply(h1, h2, c1, c2, option); }
144 */
145
146 void FitPanel() { TH1::FitPanel(); }
147
148 virtual Double_t GetPixContent(Int_t idx) const { return GetBinContent(idx+1); }
149 virtual void AddCamContent(const MCamEvent &evt, Int_t type=0);
150 virtual void AddCamContent(const MHCamera &evt, Int_t type=0);
151 virtual void AddCamContent(const TArrayD &arr, const TArrayC *used=NULL);
152 virtual void AddCamContent(const MArrayD &arr, const TArrayC *used=NULL);
153 virtual void SetCamContent(const MCamEvent &evt, Int_t type=0) { Reset(); AddCamContent(evt, type); }
154 virtual void SetCamContent(const MHCamera &d, Int_t type=0) { Reset(); AddCamContent(d, type); fEntries=d.fEntries; }
155 virtual void SetCamContent(const TArrayD &evt, const TArrayC *used=NULL) { Reset(); AddCamContent(evt, used); }
156 virtual void SetCamContent(const MArrayD &evt, const TArrayC *used=NULL) { Reset(); AddCamContent(evt, used); }
157
158 virtual void SetCamError(const MCamEvent &evt, Int_t type=0);
159 virtual void SetUsed(const TArrayC &arr);
160
161 virtual void CntCamContent(const MCamEvent &evt, Double_t threshold, Int_t type=0, Bool_t isabove=kTRUE);
162 virtual void CntCamContent(const MCamEvent &evt, TArrayD threshold, Int_t type=0, Bool_t isabove=kTRUE);
163 virtual void CntCamContent(const TArrayD &evt, Double_t threshold, Bool_t ispos=kTRUE);
164 virtual void CntCamContent(const MCamEvent &event, Int_t type1, const MCamEvent &thresevt, Int_t type2, Double_t threshold, Bool_t isabove);
165
166 Stat_t GetBinContent(Int_t bin) const;
167 Stat_t GetBinContent(Int_t binx, Int_t biny) const { return GetBinContent(binx); }
168 Stat_t GetBinContent(Int_t binx, Int_t biny, Int_t binz) const { return GetBinContent(binx); }
169 Stat_t GetBinError(Int_t bin) const;
170 Stat_t GetBinError(Int_t binx, Int_t biny) const { return GetBinError(binx); }
171 Stat_t GetBinError(Int_t binx, Int_t biny, Int_t binz) const { return GetBinError(binx); }
172
173 Double_t GetMinimum(Bool_t all) const { return GetMinimumSectors(TArrayI(), TArrayI(), all); }
174 Double_t GetMaximum(Bool_t all) const { return GetMaximumSectors(TArrayI(), TArrayI(), all); }
175
176 Double_t GetMinimum(Double_t gt) const { return GetMinimumSectors(TArrayI(), TArrayI(), kFALSE); } // FIXME: To be done: Minimum greater than
177 Double_t GetMaximum(Double_t lt) const { return GetMaximumSectors(TArrayI(), TArrayI(), kFALSE); } // FIXME: To be done: Maximum lower than
178
179 Double_t GetMinimum() const { return GetMinimum(0.0); } // FIXME: To be done: Minimum greater than
180 Double_t GetMaximum() const { return GetMaximum(0.0); } // FIXME: To be done: Maximum lower than
181
182 Double_t GetMinimumSector(Int_t sector, Int_t aidx, Bool_t all=kFALSE) const
183 {
184 return GetMinimumSectors(TArrayI(1, &sector), TArrayI(1, &aidx), all);
185 }
186 Double_t GetMaximumSector(Int_t sector, Int_t aidx, Bool_t all=kFALSE) const
187 {
188 return GetMaximumSectors(TArrayI(1, &sector), TArrayI(1, &aidx), all);
189 }
190 Double_t GetMinimumSectors(const TArrayI &sector, const TArrayI &aidx, Bool_t all=kFALSE) const;
191 Double_t GetMaximumSectors(const TArrayI &sector, const TArrayI &aidx, Bool_t all=kFALSE) const;
192
193 void SetLevels(const TArrayF &arr);
194
195 void FillRandom(const char *fname, Int_t ntimes=5000) { TH1::FillRandom(fname, ntimes); }
196 void FillRandom(TH1 *h, Int_t ntimes=5000) { TH1::FillRandom(h, ntimes); }
197 void FillRandom();
198
199 void PrintInfo() const { Print(""); } // *MENU*
200 void Reset(Option_t *);
201 void Reset() { Reset(""); } // *MENU*
202 TH1 *DrawCopy() const/* { gPad=NULL; return TH1D::DrawCopy(); }*/; // *MENU*
203 TH1 *DrawCopy(Option_t *o) const { return TH1D::DrawCopy(o); }
204
205 void Print(Option_t *) const;
206 void Paint(Option_t *option="");
207 void Draw(Option_t *option="");
208 TObject *DrawClone(Option_t *option="") const;
209 void DrawProjection (Int_t fit=0) const;
210 void DrawRadialProfile() const;
211 void DrawAzimuthProfile() const;
212
213 void SavePrimitive(ostream &out, Option_t *);
214 void SavePrimitive(ofstream &out, Option_t *);
215 Int_t DistancetoPrimitive(Int_t px, Int_t py);
216 char *GetObjectInfo(Int_t px, Int_t py) const;
217 void ExecuteEvent(Int_t event, Int_t px, Int_t py);
218 void SetDrawOption(Option_t *option); //*MENU*
219
220 void SetPalette(Int_t ncolors, Int_t *colors);
221
222 void SetPrettyPalette(); // *MENU*
223 void SetDeepBlueSeaPalette(); // *MENU*
224 void SetInvDeepBlueSeaPalette(); // *MENU*
225
226 void SetFreezed(Bool_t f=kTRUE) { f ? SetBit(kFreezed) : ResetBit(kFreezed); } // *TOGGLE* *GETTER=IsFreezed
227 Bool_t IsFreezed() const { return TestBit(kFreezed); }
228 //void SetOptStat(Int_t os=-1) { fOptStat = os; } // *MENU*
229
230 void SetAbberation(Float_t f=0.0713) { fAbberation=f; } // *MENU*
231
232 void SetAutoScale() { fMinimum = fMaximum = -1111; } // *MENU*
233 void SetMinMax(Double_t min=-1111, Double_t max=-1111) { SetMinimum(min); SetMaximum(max); } // *MENU*
234
235 void AddNotify(TObject *event);
236
237 Stat_t GetMean(Bool_t all) const { return GetMeanSectors(TArrayI(), TArrayI(), all); }
238 Stat_t GetRMS(Bool_t all) const { return GetRmsSectors(TArrayI(), TArrayI(), all); }
239
240 Stat_t GetMean(Int_t=0) const { return GetMeanSectors(TArrayI(), TArrayI(), kFALSE); }
241 Stat_t GetRMS(Int_t=0) const { return GetRmsSectors(TArrayI(), TArrayI(), kFALSE); }
242
243 Stat_t GetMedian() const;
244 Stat_t GetMedianDev() const;
245
246 Stat_t GetMeanSector(Int_t sector, Int_t aidx, Bool_t all=kFALSE) const
247 {
248 return GetMeanSectors(TArrayI(1, &sector), TArrayI(1, &aidx), all);
249 }
250 Stat_t GetRmsSector(Int_t sector, Int_t aidx, Bool_t all=kFALSE) const
251 {
252 return GetRmsSectors(TArrayI(1, &sector), TArrayI(1, &aidx), all);
253 }
254
255 Stat_t GetMeanSectors(const TArrayI &sector, const TArrayI &aidx, Bool_t all=kFALSE) const;
256 Stat_t GetRmsSectors(const TArrayI &sector, const TArrayI &aidx, Bool_t all=kFALSE) const;
257
258 UInt_t GetNumPixels() const;
259
260 TH1D *Projection(const char *name="_py", const Int_t nbins=50) const
261 {
262 return ProjectionS(TArrayI(), TArrayI(), name,nbins);
263 }
264 TH1D *ProjectionS(Int_t sector, Int_t aidx, const char *name="_py", const Int_t nbins=50) const
265 {
266 return ProjectionS(TArrayI(1, &sector), TArrayI(1, &aidx), name, nbins);
267 }
268 TH1D *ProjectionS(const TArrayI &sector, const TArrayI &aidx, const char *name="_py", const Int_t nbins=50) const;
269
270 TProfile *RadialProfile(const char *name="_rad", Int_t nbins=25) const { return RadialProfileS(TArrayI(), TArrayI(), name, nbins);}
271 TProfile *RadialProfileS(Int_t sector, Int_t aidx, const char *name="_rad", const Int_t nbins=25) const
272 {
273 return RadialProfileS(TArrayI(1, &sector), TArrayI(1, &aidx), name, nbins);
274 }
275 TProfile *RadialProfileS(const TArrayI &sector, const TArrayI &aidx, const char *name="_rad", const Int_t nbins=25) const;
276
277 TProfile *AzimuthProfile(const char *name="_azi", Int_t nbins=25) const { return AzimuthProfileA(TArrayI(), name, nbins); }
278 TProfile *AzimuthProfile(Int_t aidx, const char *name="_rad", const Int_t nbins=25) const
279 {
280 return AzimuthProfileA(TArrayI(1, &aidx), name, nbins);
281 }
282 TProfile *AzimuthProfileA(const TArrayI &aidx, const char *name="_rad", const Int_t nbins=25) const;
283
284 void CamDraw(TCanvas &c, const Int_t x, const Int_t y,
285 const Int_t fit, const Int_t rad=0, const Int_t azi=0,
286 TObject *notify=NULL);
287
288 const MGeomCam &GetGeomCam() const { return *fGeomCam; }
289
290 ClassDef(MHCamera, 1) // Displays the magic camera
291};
292
293#endif
294
295/* ------------ OK ---------------
296 virtual void Browse(TBrowser *b);
297 virtual void FillRandom(const char *fname, Int_t ntimes=5000);
298 virtual void FillRandom(TH1 *h, Int_t ntimes=5000);
299
300 virtual Int_t GetQuantiles(Int_t nprobSum, Double_t *q, const Double_t *probSum=0);
301 virtual Axis_t GetRandom();
302 virtual void GetStats(Stat_t *stats) const;
303 virtual Stat_t GetSumOfWeights() const;
304 virtual Int_t GetSumw2N() const {return fSumw2.fN;}
305 virtual Stat_t GetRMS(Int_t axis=1) const;
306
307 virtual Int_t GetNbinsX() const {return fXaxis.GetNbins();}
308 virtual Int_t GetNbinsY() const {return fYaxis.GetNbins();}
309 virtual Int_t GetNbinsZ() const {return fZaxis.GetNbins();}
310
311 // ------------- to check -------------------
312
313 virtual Double_t ComputeIntegral();
314 virtual Int_t DistancetoPrimitive(Int_t px, Int_t py);
315 virtual void Draw(Option_t *option="");
316 virtual TH1 *DrawCopy(Option_t *option="") const;
317 virtual TH1 *DrawNormalized(Option_t *option="", Double_t norm=1) const;
318 virtual Int_t BufferEmpty(Bool_t deleteBuffer=kFALSE);
319 virtual void Eval(TF1 *f1, Option_t *option="");
320 virtual void ExecuteEvent(Int_t event, Int_t px, Int_t py);
321 virtual void FillN(Int_t ntimes, const Axis_t *x, const Double_t *w, Int_t stride=1);
322 virtual void FillN(Int_t, const Axis_t *, const Axis_t *, const Double_t *, Int_t) {;}
323 virtual Int_t FindBin(Axis_t x, Axis_t y=0, Axis_t z=0);
324 virtual TObject *FindObject(const char *name) const;
325 virtual TObject *FindObject(const TObject *obj) const;
326 virtual Int_t Fit(const char *formula ,Option_t *option="" ,Option_t *goption="", Axis_t xmin=0, Axis_t xmax=0); // *MENU*
327 virtual Int_t Fit(TF1 *f1 ,Option_t *option="" ,Option_t *goption="", Axis_t xmin=0, Axis_t xmax=0);
328 virtual void FitPanel(); // *MENU*
329 TH1 *GetAsymmetry(TH1* h2, Double_t c2=1, Double_t dc2=0);
330 Int_t GetBufferLength() const {return (Int_t)fBuffer[0];}
331 Int_t GetBufferSize () const {return fBufferSize;}
332 const Double_t *GetBuffer() const {return fBuffer;}
333 static Int_t GetDefaultBufferSize();
334 virtual Double_t *GetIntegral() {return fIntegral;}
335
336 TList *GetListOfFunctions() const { return fFunctions; }
337
338 virtual Int_t GetNdivisions(Option_t *axis="X") const;
339 virtual Color_t GetAxisColor(Option_t *axis="X") const;
340 virtual Color_t GetLabelColor(Option_t *axis="X") const;
341 virtual Style_t GetLabelFont(Option_t *axis="X") const;
342 virtual Float_t GetLabelOffset(Option_t *axis="X") const;
343 virtual Float_t GetLabelSize(Option_t *axis="X") const;
344 virtual Float_t GetTitleOffset(Option_t *axis="X") const;
345 virtual Float_t GetTitleSize(Option_t *axis="X") const;
346 virtual Float_t GetTickLength(Option_t *axis="X") const;
347 virtual Float_t GetBarOffset() const {return Float_t(0.001*Float_t(fBarOffset));}
348 virtual Float_t GetBarWidth() const {return Float_t(0.001*Float_t(fBarWidth));}
349 virtual Int_t GetContour(Double_t *levels=0);
350 virtual Double_t GetContourLevel(Int_t level) const;
351 virtual Double_t GetContourLevelPad(Int_t level) const;
352
353 virtual void GetCenter(Axis_t *center) const {fXaxis.GetCenter(center);}
354 TDirectory *GetDirectory() const {return fDirectory;}
355 virtual Stat_t GetEntries() const;
356 virtual TF1 *GetFunction(const char *name) const;
357 virtual Int_t GetDimension() const { return fDimension; }
358 virtual void GetLowEdge(Axis_t *edge) const {fXaxis.GetLowEdge(edge);}
359 virtual Double_t GetMaximum() const;
360 virtual Int_t GetMaximumBin() const;
361 virtual Int_t GetMaximumBin(Int_t &locmax, Int_t &locmay, Int_t &locmaz) const;
362 virtual Double_t GetMaximumStored() const {return fMaximum;}
363 virtual Double_t GetMinimum() const;
364 virtual Int_t GetMinimumBin() const;
365 virtual Int_t GetMinimumBin(Int_t &locmix, Int_t &locmiy, Int_t &locmiz) const;
366 virtual Double_t GetMinimumStored() const {return fMinimum;}
367 virtual Stat_t GetMean(Int_t axis=1) const;
368 virtual Double_t GetNormFactor() const {return fNormFactor;}
369 virtual char *GetObjectInfo(Int_t px, Int_t py) const;
370 Option_t *GetOption() const {return fOption.Data();}
371
372 TVirtualHistPainter *GetPainter();
373
374 TAxis *GetXaxis() const;
375 TAxis *GetYaxis() const;
376 TAxis *GetZaxis() const;
377 virtual Stat_t Integral(Option_t *option="") const;
378 virtual Stat_t Integral(Int_t binx1, Int_t binx2, Option_t *option="") const;
379 virtual Stat_t Integral(Int_t, Int_t, Int_t, Int_t, Option_t * ="") const {return 0;}
380 virtual Stat_t Integral(Int_t, Int_t, Int_t, Int_t, Int_t, Int_t, Option_t * ="" ) const {return 0;}
381 virtual Double_t KolmogorovTest(TH1 *h2, Option_t *option="") const;
382 virtual void LabelsDeflate(Option_t *axis="X");
383 virtual void LabelsInflate(Option_t *axis="X");
384 virtual void LabelsOption(Option_t *option="h", Option_t *axis="X");
385 virtual Int_t Merge(TCollection *list);
386 virtual void Multiply(TF1 *h1, Double_t c1=1);
387 virtual void Multiply(const TH1 *h1);
388 virtual void Multiply(const TH1 *h1, const TH1 *h2, Double_t c1=1, Double_t c2=1, Option_t *option=""); // *MENU*
389 virtual void Paint(Option_t *option="");
390 virtual void Print(Option_t *option="") const;
391 virtual void PutStats(Stat_t *stats);
392 virtual TH1 *Rebin(Int_t ngroup=2, const char*newname=""); // *MENU*
393 virtual void RebinAxis(Axis_t x, Option_t *axis="X");
394 virtual void Rebuild(Option_t *option="");
395 virtual void RecursiveRemove(TObject *obj);
396 virtual void Reset(Option_t *option="");
397 virtual void SavePrimitive(ofstream &out, Option_t *option);
398 virtual void Scale(Double_t c1=1);
399 virtual void SetAxisColor(Color_t color=1, Option_t *axis="X");
400 virtual void SetAxisRange(Axis_t xmin, Axis_t xmax, Option_t *axis="X");
401 virtual void SetBarOffset(Float_t offset=0.25) {fBarOffset = Short_t(1000*offset);}
402 virtual void SetBarWidth(Float_t width=0.5) {fBarWidth = Short_t(1000*width);}
403 virtual void SetBinContent(Int_t bin, Stat_t content);
404 virtual void SetBinContent(Int_t binx, Int_t biny, Stat_t content);
405 virtual void SetBinContent(Int_t binx, Int_t biny, Int_t binz, Stat_t content);
406 virtual void SetBinError(Int_t bin, Stat_t error);
407 virtual void SetBinError(Int_t binx, Int_t biny, Stat_t error);
408 virtual void SetBinError(Int_t binx, Int_t biny, Int_t binz, Stat_t error);
409 virtual void SetBins(Int_t nx, Axis_t xmin, Axis_t xmax);
410 virtual void SetBins(Int_t nx, Axis_t xmin, Axis_t xmax, Int_t ny, Axis_t ymin, Axis_t ymax);
411 virtual void SetBins(Int_t nx, Axis_t xmin, Axis_t xmax, Int_t ny, Axis_t ymin, Axis_t ymax,
412 Int_t nz, Axis_t zmin, Axis_t zmax);
413 virtual void SetBinsLength(Int_t = -1) { } //refefined in derived classes
414 virtual void SetBuffer(Int_t buffersize, Option_t *option="");
415 virtual void SetCellContent(Int_t binx, Int_t biny, Stat_t content);
416 virtual void SetCellError(Int_t binx, Int_t biny, Stat_t content);
417 virtual void SetContent(const Stat_t *content);
418 virtual void SetContour(Int_t nlevels, const Double_t *levels=0);
419 virtual void SetContourLevel(Int_t level, Double_t value);
420 static void SetDefaultBufferSize(Int_t buffersize=1000);
421 virtual void SetDirectory(TDirectory *dir);
422 virtual void SetEntries(Stat_t n) {fEntries = n;};
423 virtual void SetError(const Stat_t *error);
424 virtual void SetLabelColor(Color_t color=1, Option_t *axis="X");
425 virtual void SetLabelFont(Style_t font=62, Option_t *axis="X");
426 virtual void SetLabelOffset(Float_t offset=0.005, Option_t *axis="X");
427 virtual void SetLabelSize(Float_t size=0.02, Option_t *axis="X");
428
429 virtual void SetMaximum(Double_t maximum=-1111); // *MENU*
430 virtual void SetMinimum(Double_t minimum=-1111); // *MENU*
431 virtual void SetName(const char *name); // *MENU*
432 virtual void SetNameTitle(const char *name, const char *title);
433 virtual void SetNdivisions(Int_t n=510, Option_t *axis="X");
434 virtual void SetNormFactor(Double_t factor=1) {fNormFactor = factor;}
435 virtual void SetStats(Bool_t stats=kTRUE);
436 virtual void SetOption(Option_t *option=" ") {fOption = option;}
437 virtual void SetTickLength(Float_t length=0.02, Option_t *axis="X");
438 virtual void SetTitleOffset(Float_t offset=1, Option_t *axis="X");
439 virtual void SetTitleSize(Float_t size=0.02, Option_t *axis="X");
440 virtual void SetTitle(const char *title);
441 virtual void SetXTitle(const char *title) {fXaxis.SetTitle(title);}
442 virtual void SetYTitle(const char *title) {fYaxis.SetTitle(title);}
443 virtual void SetZTitle(const char *title) {fZaxis.SetTitle(title);}
444 virtual void Smooth(Int_t ntimes=1); // *MENU*
445 static void SmoothArray(Int_t NN, Double_t *XX, Int_t ntimes=1);
446 static Double_t SmoothMedian(Int_t n, Double_t *a);
447 virtual void Sumw2();
448 void UseCurrentStyle();
449
450 ClassDef(TH1,4) //1-Dim histogram base class
451};
452
453*/
Note: See TracBrowser for help on using the repository browser.