Changeset 1555 for trunk/MagicSoft/Mars/mhist
- Timestamp:
- 10/24/02 17:04:20 (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mhist/MH3.cc
r1524 r1555 413 413 if (str.Contains("PROFX", TString::kIgnoreCase) && fDimension==2) 414 414 { 415 TProfile *p = ((TH2*)fHist)->ProfileX( );415 TProfile *p = ((TH2*)fHist)->ProfileX("_pfx", -1, 9999, "s"); 416 416 p->Draw(only?"":"same"); 417 417 p->SetBit(kCanDelete); … … 420 420 if (str.Contains("PROFY", TString::kIgnoreCase) && fDimension==2) 421 421 { 422 TProfile *p = ((TH2*)fHist)->ProfileY( );422 TProfile *p = ((TH2*)fHist)->ProfileY("_pfy", -1, 9999, "s"); 423 423 p->Draw(only?"":"same"); 424 424 p->SetBit(kCanDelete); … … 467 467 if (str.Contains("PROFX", TString::kIgnoreCase) && fDimension==2) 468 468 { 469 TProfile *p = ((TH2*)fHist)->ProfileX( );469 TProfile *p = ((TH2*)fHist)->ProfileX("_pfx", -1, 9999, "s"); 470 470 p->Draw(only?"":"same"); 471 471 p->SetBit(kCanDelete); … … 474 474 if (str.Contains("PROFY", TString::kIgnoreCase) && fDimension==2) 475 475 { 476 TProfile *p = ((TH2*)fHist)->ProfileY( );476 TProfile *p = ((TH2*)fHist)->ProfileY("_pfy", -1, 9999, "s"); 477 477 p->Draw(only?"":"same"); 478 478 p->SetBit(kCanDelete);
Note:
See TracChangeset
for help on using the changeset viewer.