Changeset 3841


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

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r3840 r3841  
    5252     - removed functions: IsCalibrationResultOK()
    5353        and IsCalibrationSignalOK()
     54     - changed function IsOK() such that it returns false only if
     55       the pixels is not suitable (run or evt)
     56
    5457
    5558   * mcalib/MCalibrate.cc
  • trunk/MagicSoft/Mars/mcalib/MCalibrate.cc

    r3839 r3841  
    293293            {
    294294              MBadPixelsPix         &bad = (*fBadPixels)[pixidx];
    295               if (!bad.IsUnsuitable(MBadPixelsPix::kUnsuitableRun))
     295              if (bad.IsUnsuitable(MBadPixelsPix::kUnsuitableRun))
    296296                continue;
    297297            }
     
    411411      */
    412412
     413      *fLog << err << pixidx << "  " << nphot << endl;
     414
    413415      MCerPhotPix *cpix = fCerPhotEvt->AddPixel(pixidx, nphot, nphotErr);
    414416
  • trunk/MagicSoft/Mars/mcalib/MCalibrateRelTimes.cc

    r3839 r3841  
    164164        {
    165165          MBadPixelsPix          &bad = (*fBadPixels)[pixidx];
    166           if (!bad.IsUnsuitable(MBadPixelsPix::kUnsuitableRun))
     166          if (bad.IsUnsuitable(MBadPixelsPix::kUnsuitableRun))
    167167            continue;
    168168        }
Note: See TracChangeset for help on using the changeset viewer.