Changeset 2014 for trunk/MagicSoft/Mars/mimage
- Timestamp:
- 04/25/03 15:41:40 (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mimage/MImgCleanStd.cc
r1965 r2014 122 122 123 123 // COBB: '<=' to skip entry=noise=0 124 if (entry <= fCleanLvl1 * noise / ratio)124 if (entry*ratio <= fCleanLvl1*noise) 125 125 pix.SetPixelUnused(); 126 126 … … 276 276 const Double_t ratio = TMath::Sqrt(fCam->GetPixRatio(id)); 277 277 278 if (entry <= fCleanLvl2 * noise / ratio)278 if (entry*ratio <= fCleanLvl2*noise) 279 279 continue; 280 280
Note:
See TracChangeset
for help on using the changeset viewer.