Changeset 2014 for trunk/MagicSoft/Mars
- Timestamp:
- 04/25/03 15:41:40 (22 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r2013 r2014 34 34 - fixed wrong usage floating point value 0 35 35 36 * m analysis/MImgCleanStd.cc:36 * mimage/MImgCleanStd.cc: 37 37 - moved ratio to the other side of the condition (don't divide 38 38 if it is not necessary) -
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.