Changeset 4249 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
06/01/04 11:28:17 (20 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r4248 r4249  
    2323   * mjobs/MJCalibration.cc
    2424     - 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.
    2531
    2632
  • trunk/MagicSoft/Mars/mcalib/MHCalibrationChargeBlindPix.cc

    r4228 r4249  
    10081008  gPad->SetTicks();
    10091009
    1010   fHGausHist.Draw(opt);
     1010  fHGausHist.Draw();
    10111011  if (fFGausFit)
    10121012  {
     
    10401040      fHSinglePheFADCSlices->SetXTitle("FADC slice number");
    10411041      fHSinglePheFADCSlices->SetYTitle("FADC counts");
    1042       fHSinglePheFADCSlices->Draw(opt);
     1042      fHSinglePheFADCSlices->Draw();
    10431043    }
    10441044 
     
    10551055      fHPedestalFADCSlices->SetXTitle("FADC slice number");
    10561056      fHPedestalFADCSlices->SetYTitle("FADC counts");
    1057       fHPedestalFADCSlices->Draw(opt);
     1057      fHPedestalFADCSlices->Draw();
    10581058    }
    10591059 
  • trunk/MagicSoft/Mars/mcalib/MHCalibrationChargePix.cc

    r3765 r4249  
    283283  fHGausHist.GetXaxis()->SetTitleOffset(0.6);
    284284  fHGausHist.GetYaxis()->SetTitleOffset(0.6);
    285   fHGausHist.Draw(opt);
     285  fHGausHist.Draw();
    286286  if (fFGausFit)
    287287  {
     
    301301  fHAbsTime.GetXaxis()->SetTitleOffset(0.6);
    302302  fHAbsTime.GetYaxis()->SetTitleOffset(0.6);
    303   fHAbsTime.Draw(opt);
     303  fHAbsTime.Draw();
    304304
    305305  if (win < 2)
Note: See TracChangeset for help on using the changeset viewer.