Changeset 4703 for trunk/MagicSoft/Mars/mhvstime/MHVsTime.h
- Timestamp:
- 08/23/04 11:50:26 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mhvstime/MHVsTime.h
r3394 r4703 14 14 // Could be const but root < 3.02/06 doesn't like this... 15 15 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 18 19 19 20 enum { 20 kIsLogy = BIT(18),21 kIsLogy = BIT(18), 21 22 kUseEventNumber = BIT(20) 22 23 }; … … 42 43 43 44 /* 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 */ 48 49 const TGraph *GetGraph() const { return fGraph; } 49 50 TGraph *GetGraph() { return fGraph; } … … 55 56 MParContainer *New() const; 56 57 58 void SetMaxPts(Int_t n) { fMaxPts=n; } 59 57 60 ClassDef(MHVsTime, 1) // Generalized 1/2/3D-histogram for Mars variables 58 61 };
Note:
See TracChangeset
for help on using the changeset viewer.