Ignore:
Timestamp:
12/12/03 16:39:36 (21 years ago)
Author:
tonello
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mimage/MImgCleanStd.cc

    r2488 r2670  
    462462void MImgCleanStd::CleanStep4(UShort_t r, MCerPhotPix &pix)
    463463{
     464  // Skip events that have already a defined status;
     465        if( pix.GetRing()!= 0)
     466          return;
    464467    //
    465468    // check if the pixel's next neighbor is a used pixel.
     
    468471    //
    469472    const Int_t idx = pix.GetPixId();
     473
    470474    MGeomPix  &gpix  = (*fCam)[idx];
    471475
     
    478482        MCerPhotPix *npix = fEvt->GetPixById(idx2);
    479483
    480         if (!npix || !npix->IsPixelUsed() || npix->GetRing()>r-1 )
    481             continue;
     484        if (!npix || !npix->IsPixelUsed() || npix->GetRing()>r-1 ) 
     485        continue;
    482486
    483487        pix.SetRing(r);
Note: See TracChangeset for help on using the changeset viewer.