Changeset 1572 for trunk/MagicSoft/Mars/mhist
- Timestamp:
- 10/31/02 14:30:11 (22 years ago)
- Location:
- trunk/MagicSoft/Mars/mhist
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mhist/MBinning.h
r1477 r1572 47 47 Int_t GetNumBins() const { return fEdges.GetSize()-1; } 48 48 49 Double_t *GetEdges() const { return fEdges.GetArray(); }49 Double_t *GetEdges() const { return (Double_t*)fEdges.GetArray(); } 50 50 51 51 Bool_t IsLinear() const { return fType==kIsLinear; } -
trunk/MagicSoft/Mars/mhist/MH.cc
r1506 r1572 468 468 umax = 0; 469 469 470 Int_t n=0;471 470 Double_t binlow =0; 472 471 Double_t binhigh =0; 473 472 Double_t binwidth=0; 474 TGaxis::Optimize(umin, umax, nbins, binlow, binhigh, n, binwidth, "");473 //TGaxis::Optimize(umin, umax, nbins, binlow, binhigh, n, binwidth, ""); 475 474 476 475 if (binwidth <= 0 || binwidth > 1.e+39)
Note:
See TracChangeset
for help on using the changeset viewer.