Changeset 1555
- Timestamp:
- 10/24/02 17:04:20 (22 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r1554 r1555 12 12 - changed fQfac from TH to TGraph 13 13 - changed the Qfactor-plot x-axis from Hadronness to Gamma-Acceptance 14 15 * mgui/MCamDisplay.cc: 16 - changed ratio from ratio to sqrt(ratio) in GetColorError 17 18 * mhist/MH3.cc: 19 - changed plottet errors from spread/sqrt(n) to spread 14 20 15 21 -
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.