Ignore:
Timestamp:
11/25/02 09:12:47 (22 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r1572 r1668  
    2525        kIsLinear,
    2626        kIsLogarithmic,
     27        kIsCosinic,
    2728        kIsUserArray
    2829    };
     
    3940    void SetEdges(const Int_t nbins, const Axis_t lo, Axis_t up);
    4041    void SetEdgesLog(const Int_t nbins, const Axis_t lo, Axis_t up);
     42    void SetEdgesCos(const Int_t nbins, const Axis_t lo, Axis_t up);
    4143
    4244    // FIXME: ROOT workaround: "operator[] const" missing
     
    5153    Bool_t IsLinear() const { return fType==kIsLinear; }
    5254    Bool_t IsLogarithmic() const { return fType==kIsLogarithmic; }
     55    Bool_t IsCosinic() const { return fType==kIsCosinic; }
    5356    Bool_t IsDefault() const { return fType==kIsDefault; }
    5457    Bool_t IsUserArray() const { return fType==kIsUserArray; }
Note: See TracChangeset for help on using the changeset viewer.