Changeset 3719


Ignore:
Timestamp:
04/13/04 17:42:11 (20 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r3718 r3719  
    3838     - replaced MBadPixelsMerge by MParList.AddToList(fBadPixels) until
    3939       bug in MBadPixelsMerge is resolved (see bugtracker).
     40
     41   * mcalib/MHCalibrationChargePINDiode.cc
     42     - return in Draw() if histogram is empty (otherwise segm. violation
     43       in eventloop
    4044
    4145
  • trunk/MagicSoft/Mars/mcalib/MHCalibrationChargePINDiode.cc

    r3696 r3719  
    368368  }
    369369
    370   if (!IsEmpty())
    371       gPad->SetLogy();
    372 
     370  if (IsEmpty())
     371    return;
     372
     373  gPad->SetLogy();
    373374  gPad->SetTicks();
    374375
Note: See TracChangeset for help on using the changeset viewer.