Changeset 2320
- Timestamp:
- 08/26/03 14:14:49 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r2319 r2320 1 1 -*-*- END OF LINE -*-*- 2 3 2003/08/26: Thomas Bretz 4 5 * mimage/MHHillas.cc, mimage/MHHillas.cc, mimage/MHHillasExt.cc, 6 mimage/MHNewImagePar.cc: 7 - fixed missing UseCurrentStyle for newer root versions 8 2 9 3 10 … … 12 19 13 20 * manalysis/MMinuitInterface.cc 14 - do no delete the Minuit object because it will still be used21 - do not delete the Minuit object because it will still be used 15 22 16 23 * mhist/MHFindSignificance.cc … … 34 41 - change selection of theta bin in 'CalcEfficiency()' 35 42 (to be mored flexible in choosing the theta binnning) 43 36 44 37 45 -
trunk/MagicSoft/Mars/mimage/MHHillas.cc
r2173 r2320 102 102 fSize->GetXaxis()->SetLabelOffset(-0.015); 103 103 fSize->SetFillStyle(4000); 104 fSize->UseCurrentStyle(); 104 105 105 106 bins.Apply(*fSize); -
trunk/MagicSoft/Mars/mimage/MHHillasExt.cc
r2173 r2320 76 76 fHM3Trans.SetDirectory(NULL); 77 77 78 fHAsym.UseCurrentStyle(); 79 fHM3Long.UseCurrentStyle(); 80 fHM3Trans.UseCurrentStyle(); 81 78 82 fHAsym.SetName("Asymmetry"); 79 83 fHM3Long.SetName("3rd Mom Long"); -
trunk/MagicSoft/Mars/mimage/MHHillasSrc.cc
r2173 r2320 70 70 // connect all the histogram with the container fHist 71 71 // 72 fAlpha = new TH1F("Alpha", "Alpha of Ellipse", 181,-90, 90);73 fDist = new TH1F("Dist", "Dist of Ellipse", 100,0, 445);74 fCosDA = new TH1F("CosDA", "cos(Delta,Alpha) of Ellipse", 101,-1, 1);72 fAlpha = new TH1F("Alpha", "Alpha of Ellipse", 181, -90, 90); 73 fDist = new TH1F("Dist", "Dist of Ellipse", 100, 0, 445); 74 fCosDA = new TH1F("CosDA", "cos(Delta,Alpha) of Ellipse", 101, -1, 1); 75 75 76 76 fAlpha->SetDirectory(NULL); -
trunk/MagicSoft/Mars/mimage/MHNewImagePar.cc
r2173 r2320 66 66 fHistLeakage1.SetDirectory(NULL); 67 67 fHistLeakage1.SetFillStyle(4000); 68 fHistLeakage1.UseCurrentStyle(); 68 69 69 70 fHistLeakage2.SetName("Leakage2"); … … 74 75 fHistLeakage2.SetLineColor(kBlue); 75 76 fHistLeakage2.SetFillStyle(4000); 77 fHistLeakage2.UseCurrentStyle(); 76 78 77 79 fHistUsedPix.SetName("UsedPix"); … … 82 84 fHistUsedPix.SetLineColor(kGreen); 83 85 fHistUsedPix.SetFillStyle(4000); 86 fHistUsedPix.UseCurrentStyle(); 84 87 85 88 fHistCorePix.SetName("CorePix"); … … 90 93 fHistCorePix.SetLineColor(kRed); 91 94 fHistCorePix.SetFillStyle(4000); 95 fHistCorePix.UseCurrentStyle(); 92 96 93 97 fHistConc.SetDirectory(NULL); … … 105 109 fHistConc1.SetLineColor(kBlue); 106 110 fHistConc.SetFillStyle(0); 111 fHistConc1.UseCurrentStyle(); 112 fHistConc.UseCurrentStyle(); 107 113 108 114
Note:
See TracChangeset
for help on using the changeset viewer.