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

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