Ignore:
Timestamp:
10/31/02 14:30:11 (22 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mhist
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mhist/MBinning.h

    r1477 r1572  
    4747    Int_t GetNumBins() const { return fEdges.GetSize()-1; }
    4848
    49     Double_t *GetEdges() const { return fEdges.GetArray(); }
     49    Double_t *GetEdges() const { return (Double_t*)fEdges.GetArray(); }
    5050
    5151    Bool_t IsLinear() const { return fType==kIsLinear; }
  • trunk/MagicSoft/Mars/mhist/MH.cc

    r1506 r1572  
    468468        umax = 0;
    469469
    470     Int_t n=0;
    471470    Double_t binlow  =0;
    472471    Double_t binhigh =0;
    473472    Double_t binwidth=0;
    474     TGaxis::Optimize(umin, umax, nbins, binlow, binhigh, n, binwidth, "");
     473    //TGaxis::Optimize(umin, umax, nbins, binlow, binhigh, n, binwidth, "");
    475474
    476475    if (binwidth <= 0 || binwidth > 1.e+39)
Note: See TracChangeset for help on using the changeset viewer.