Changeset 2413 for trunk/MagicSoft
- Timestamp:
- 10/20/03 18:00:36 (21 years ago)
- Location:
- trunk/MagicSoft/Mars/mhist
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mhist/MH.cc
r2412 r2413 611 611 // Also layout the two statistic boxes and a legend. 612 612 // 613 void MH::Draw Copy(const TH1 &hist1, const TH1 &hist2, const TString title)613 void MH::DrawSameCopy(const TH1 &hist1, const TH1 &hist2, const TString title) 614 614 { 615 615 // … … 700 700 // Also layout the two statistic boxes and a legend. 701 701 // 702 void MH::Draw (TH1 &hist1, TH1 &hist2, const TString title, TVirtualPad *pad)702 void MH::DrawSame(TH1 &hist1, TH1 &hist2, const TString title, TVirtualPad *pad) 703 703 { 704 704 // … … 854 854 return o; 855 855 } 856 856 857 /* 857 858 // -------------------------------------------------------------------------- … … 880 881 } 881 882 */ 883 882 884 // -------------------------------------------------------------------------- 883 885 // -
trunk/MagicSoft/Mars/mhist/MH.h
r2412 r2413 63 63 static Double_t GetBinCenterLog(const TAxis &axe, Int_t nbin); 64 64 65 static void Draw Copy(const TH1 &hist1, const TH1 &hist2, const TString title);66 static void Draw (TH1 &hist1, TH1 &hist2, const TString title, TVirtualPad *pad=NULL);65 static void DrawSameCopy(const TH1 &hist1, const TH1 &hist2, const TString title); 66 static void DrawSame(TH1 &hist1, TH1 &hist2, const TString title, TVirtualPad *pad=NULL); 67 67 68 68 TObject *Clone(const char *name="") const; 69 70 // FIXME: Rename Draw-->Draw2 and remove this workaround...71 void Draw(Option_t *o="") { MParContainer::Draw(o); }72 69 73 70 TObject *DrawClone(Option_t *opt, Int_t w, Int_t h) const
Note:
See TracChangeset
for help on using the changeset viewer.