Changeset 2670 for trunk/MagicSoft/Mars/mimage
- Timestamp:
- 12/12/03 16:39:36 (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mimage/MImgCleanStd.cc
r2488 r2670 462 462 void MImgCleanStd::CleanStep4(UShort_t r, MCerPhotPix &pix) 463 463 { 464 // Skip events that have already a defined status; 465 if( pix.GetRing()!= 0) 466 return; 464 467 // 465 468 // check if the pixel's next neighbor is a used pixel. … … 468 471 // 469 472 const Int_t idx = pix.GetPixId(); 473 470 474 MGeomPix &gpix = (*fCam)[idx]; 471 475 … … 478 482 MCerPhotPix *npix = fEvt->GetPixById(idx2); 479 483 480 if (!npix || !npix->IsPixelUsed() || npix->GetRing()>r-1 ) 481 484 if (!npix || !npix->IsPixelUsed() || npix->GetRing()>r-1 ) 485 continue; 482 486 483 487 pix.SetRing(r);
Note:
See TracChangeset
for help on using the changeset viewer.