Changeset 2670 for trunk/MagicSoft/Mars
- Timestamp:
- 12/12/03 16:39:36 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r2669 r2670 4 4 5 5 -*-*- END OF LINE -*-*- 6 7 2003/12/12: Nadia Tonello 8 9 * mimage/MImgCleanStd.cc 10 - now the cleaning of rings>1 is done symmetrically around the core pixels (bug solved) 11 12 6 13 2003/12/12: Abelardo Moralejo 7 14 -
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.