Ignore:
Timestamp:
08/23/04 11:50:26 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mhvstime/MHVsTime.h

    r3394 r4703  
    1414    // Could be const but root < 3.02/06 doesn't like this...
    1515    TGraph     *fGraph;  // Histogram to fill
    16     MDataChain *fData;  // Object from which the data is filled
    17     Double_t    fScale; // Scale for axis (eg unit)
     16    MDataChain *fData;   // Object from which the data is filled
     17    Double_t    fScale;  // Scale for axis (eg unit)
     18    Int_t       fMaxPts; // Maximum number of data points
    1819
    1920    enum {
    20         kIsLogy = BIT(18),
     21        kIsLogy         = BIT(18),
    2122        kUseEventNumber = BIT(20)
    2223    };
     
    4243
    4344    /*
    44 //    const TH1 *GetHist() const;
    45 //    TH1 *GetHist();
    46 //    TH1 *GetHistByName(const TString name="");
    47 */
     45     const TH1 *GetHist() const;
     46     TH1 *GetHist();
     47     TH1 *GetHistByName(const TString name="");
     48     */
    4849    const TGraph *GetGraph() const { return fGraph; }
    4950    TGraph *GetGraph() { return fGraph; }
     
    5556    MParContainer *New() const;
    5657
     58    void SetMaxPts(Int_t n) { fMaxPts=n; }
     59
    5760    ClassDef(MHVsTime, 1) // Generalized 1/2/3D-histogram for Mars variables
    5861};
Note: See TracChangeset for help on using the changeset viewer.