Changeset 1925 for trunk/MagicSoft/Mars
- Timestamp:
- 04/08/03 11:45:09 (22 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r1924 r1925 1 1 -*-*- END OF LINE -*-*- 2 3 2003/04/08: Abelardo Moralejo 4 5 * manalysis/MImgCleanStd.cc 6 - Fixed "democratic" cleaning: now tail cut is proportional 7 to pixel area instead of pixel radius as (erroneously) was 8 before. 9 10 * NEWS 11 - Changed comment on image cleaning. 2 12 3 13 2003/04/08: Thomas Bretz -
trunk/MagicSoft/Mars/NEWS
r1923 r1925 8 8 - added pedestal calculation 9 9 10 - implemented "democratic cleaning" ( cut value proportional to square11 root ofpixel area) according to Wolfgang's suggestion.10 - implemented "democratic cleaning" (tail cut value proportional 11 to pixel area) according to Wolfgang's suggestion. 12 12 13 13 - added Sigmabar treatment (calculation and basic histogramming) -
trunk/MagicSoft/Mars/manalysis/MImgCleanStd.cc
r1880 r1925 119 119 const Int_t id = pix.GetPixId(); 120 120 121 const Double_t ratio = TMath::Sqrt(fCam->GetPixRatio(id));121 const Double_t ratio = fCam->GetPixRatio(id); 122 122 123 123 // COBB: '<=' to skip entry=noise=0
Note:
See TracChangeset
for help on using the changeset viewer.