Changeset 4249 for trunk/MagicSoft/Mars
- Timestamp:
- 06/01/04 11:28:17 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r4248 r4249 23 23 * mjobs/MJCalibration.cc 24 24 - small change in the way the "full display" is displayed 25 26 * mcalib/MHCalibrationChargeBlindPix.cc 27 * mcalib/MHCalibrationChargePix.cc 28 - replace Draw(opt) by Draw(). This make the histograms reappear 29 again, although I have no idea why. A printout of the opt gives 30 always empty. 25 31 26 32 -
trunk/MagicSoft/Mars/mcalib/MHCalibrationChargeBlindPix.cc
r4228 r4249 1008 1008 gPad->SetTicks(); 1009 1009 1010 fHGausHist.Draw( opt);1010 fHGausHist.Draw(); 1011 1011 if (fFGausFit) 1012 1012 { … … 1040 1040 fHSinglePheFADCSlices->SetXTitle("FADC slice number"); 1041 1041 fHSinglePheFADCSlices->SetYTitle("FADC counts"); 1042 fHSinglePheFADCSlices->Draw( opt);1042 fHSinglePheFADCSlices->Draw(); 1043 1043 } 1044 1044 … … 1055 1055 fHPedestalFADCSlices->SetXTitle("FADC slice number"); 1056 1056 fHPedestalFADCSlices->SetYTitle("FADC counts"); 1057 fHPedestalFADCSlices->Draw( opt);1057 fHPedestalFADCSlices->Draw(); 1058 1058 } 1059 1059 -
trunk/MagicSoft/Mars/mcalib/MHCalibrationChargePix.cc
r3765 r4249 283 283 fHGausHist.GetXaxis()->SetTitleOffset(0.6); 284 284 fHGausHist.GetYaxis()->SetTitleOffset(0.6); 285 fHGausHist.Draw( opt);285 fHGausHist.Draw(); 286 286 if (fFGausFit) 287 287 { … … 301 301 fHAbsTime.GetXaxis()->SetTitleOffset(0.6); 302 302 fHAbsTime.GetYaxis()->SetTitleOffset(0.6); 303 fHAbsTime.Draw( opt);303 fHAbsTime.Draw(); 304 304 305 305 if (win < 2)
Note:
See TracChangeset
for help on using the changeset viewer.