Changeset 8700
- Timestamp:
- 08/23/07 15:35:21 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mhbase/MHn.h
r8697 r8700 36 36 // Setter 37 37 void SetLayout(Layout_t t) { fLayout = t; } 38 void SetDrawOption(const char *opt) { SetDrawOption(fNum-1, opt); } 38 39 39 40 Bool_t AddHist(const char *memberx); 40 41 Bool_t AddHist(const char *memberx, const char *membery); 41 42 Bool_t AddHist(const char *memberx, const char *membery, const char *memberz); 42 43 void SetDrawOption(const char *opt) { SetDrawOption(fNum-1, opt); }44 43 45 44 void InitName(const char *n) … … 53 52 } 54 53 55 /* 56 void SetScaleX(Double_t scale) { fScale[0] = scale; } 57 void SetScaleY(Double_t scale) { fScale[1] = scale; } 58 void SetScaleZ(Double_t scale) { fScale[2] = scale; } 59 60 void SetLogx(Bool_t b=kTRUE) { b ? fHist->SetBit(kIsLogx) : fHist->ResetBit(kIsLogx); } 61 void SetLogy(Bool_t b=kTRUE) { b ? fHist->SetBit(kIsLogy) : fHist->ResetBit(kIsLogy); } 62 void SetLogz(Bool_t b=kTRUE) { b ? fHist->SetBit(kIsLogz) : fHist->ResetBit(kIsLogz); } 63 64 void Sumw2() const { if (fHist) fHist->Sumw2(); } 65 */ 54 // Interfact to MH3 55 void SetScale(Double_t x, Double_t y=1, Double_t z=2) const; 56 void SetLog(Bool_t x=kTRUE, Bool_t y=kTRUE, Bool_t z=kTRUE) const; 57 void SetAutoRange(Bool_t x=kTRUE, Bool_t y=kTRUE, Bool_t z=kTRUE) const; 58 void SetBinnings(MBinning *x=0, MBinning *y=0, MBinning *z=0) const; 59 void Sumw2() const; 66 60 67 61 // MH
Note:
See TracChangeset
for help on using the changeset viewer.