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

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