Changeset 2049 for trunk/MagicSoft
- Timestamp:
- 04/30/03 15:39:34 (22 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r2048 r2049 1 1 -*-*- END OF LINE -*-*- 2 3 4 2003/04/30: Wolfgang Wittek 5 6 * manalysis/MPadSchweizer.[h,cc] 7 - reorder histograms 8 9 * mhist/MHSigmaTheta.[h,cc] 10 - remove last 3 plots (otherwise get segmentation violation ???) 11 12 * mimage/MHNewImagePar.[h,cc] 13 - change range of leakage to be plotted 14 (want to see also leakage=0) 15 16 2 17 3 18 2003/04/30: Nadia Tonello … … 9 24 void SetPixelUsed() { fRing = 1;} 10 25 void SetPixelUnused(){ fRing = 0;} 26 11 27 12 28 -
trunk/MagicSoft/Mars/manalysis/MPadSchweizer.cc
r2025 r2049 689 689 l1->SetBit(kCanDelete);; 690 690 691 c.cd( 6);691 c.cd(8); 692 692 TH2D *l2; 693 693 l2 = (TH2D*) ((TH3*)fHDiffPixTheta)->Project3D("zy"); … … 703 703 // draw the 3D histogram (input): Theta, pixel, Sigma 704 704 705 c.cd( 8);705 c.cd(6); 706 706 TH2D *k1; 707 707 k1 = (TH2D*) ((TH3*)fHSigmaPixTheta)->Project3D("zx"); -
trunk/MagicSoft/Mars/mhist/MHSigmaTheta.cc
r2043 r2049 72 72 fSigmaTheta.SetDirectory(NULL); 73 73 fSigmaTheta.SetName("2D-ThetaSigmabar"); 74 fSigmaTheta.SetTitle("2D: \\bar{\\sigma}_{ped}, \\Theta");74 fSigmaTheta.SetTitle("2D: Sigmabar, \\Theta"); 75 75 fSigmaTheta.SetXTitle("\\Theta [\\circ]"); 76 fSigmaTheta.SetYTitle(" \\bar{\\Theta}");76 fSigmaTheta.SetYTitle("Sigmabar"); 77 77 78 78 fSigmaPixTheta.SetDirectory(NULL); 79 79 fSigmaPixTheta.SetName("3D-ThetaPixSigma"); 80 fSigmaPixTheta.SetTitle("3D : \\Theta, Pixel Id, \\sigma_{ped}");80 fSigmaPixTheta.SetTitle("3D : \\Theta, Pixel Id, Sigma"); 81 81 fSigmaPixTheta.SetXTitle("\\Theta [\\circ]"); 82 82 fSigmaPixTheta.SetYTitle("Pixel Id"); 83 fSigmaPixTheta.SetZTitle(" \\sigma_{ped}");83 fSigmaPixTheta.SetZTitle("Sigma"); 84 84 85 85 fDiffPixTheta.SetDirectory(NULL); 86 86 fDiffPixTheta.SetName("3D-ThetaPixDiff"); 87 fDiffPixTheta.SetTitle("3D : \\Theta, Pixel Id, \\sigma_{ped}^{2}-\\bar{\\sigma}^{2}");87 fDiffPixTheta.SetTitle("3D : \\Theta, Pixel Id, Sigma^2-Sigmabar^2"); 88 88 fDiffPixTheta.SetXTitle("\\Theta [\\circ]"); 89 89 fDiffPixTheta.SetYTitle("Pixel Id"); 90 fDiffPixTheta.SetZTitle("\\sigma_{ped}^{2}-\\bar{\\sigma}^{2}"); 90 fDiffPixTheta.SetZTitle("Sigma^2-Sigmabar^2"); 91 } 92 // -------------------------------------------------------------------------- 93 // 94 // Default Destructor 95 // 96 MHSigmaTheta::~MHSigmaTheta() 97 { 98 *fLog << "MHSigmaTheta::~MHSigmaTheta was called" << endl; 91 99 } 92 100 … … 218 226 AppendPad(""); 219 227 220 pad->Divide(3, 3);228 pad->Divide(3, 2); 221 229 222 230 // draw the 2D histogram Sigmabar versus Theta … … 278 286 h->SetBit(kCanDelete); 279 287 280 pad->cd(7); 281 fSigmaTheta.Draw(opt); 282 283 pad->cd(8); 284 fDiffPixTheta.Draw(opt); 285 286 pad->cd(9); 287 fSigmaPixTheta.Draw(opt); 288 } 288 //pad->cd(7); 289 //fSigmaTheta.Draw(opt); 290 291 //pad->cd(8); 292 //fDiffPixTheta.Draw(opt); 293 294 //pad->cd(9); 295 //fSigmaPixTheta.Draw(opt); 296 } 297 298 299 300 301 302 303 304 305 -
trunk/MagicSoft/Mars/mhist/MHSigmaTheta.h
r2043 r2049 40 40 public: 41 41 MHSigmaTheta(const char *name=NULL, const char *title=NULL); 42 ~MHSigmaTheta(); 42 43 43 44 Bool_t SetupFill(const MParList *plist); -
trunk/MagicSoft/Mars/mimage/MHNewImagePar.cc
r2043 r2049 176 176 gPad->SetBorderMode(0); 177 177 TAxis &x = *fHistLeakage1.GetXaxis(); 178 x.SetRangeUser(0.0 1, x.GetXmax());178 x.SetRangeUser(0.0, x.GetXmax()); 179 179 MH::Draw(fHistLeakage1, fHistLeakage2, "Leakage1 and Leakage2"); 180 180
Note:
See TracChangeset
for help on using the changeset viewer.