Changeset 7831 for trunk/MagicSoft/Mars
- Timestamp:
- 08/01/06 15:04:05 (18 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/NEWS
r7830 r7831 37 37 38 38 - callisto: Implemented two new tabs, the pulse position of pulses 39 not saturating the hi-gain (and above 20phe) and the pulse-position39 not saturating the hi-gain (and above 15phe) and the pulse-position 40 40 saturating the hi-gain (means the pulse position of signal extracted 41 41 from the lo-gain) This can be used to check (and/or correct) the 42 42 hi-/lo-gain offset. 43 44 - callisto: The signal threshold for the pulse position has been45 changed from 15phe to 20phe and the scaling of the outer pixels has46 been switched off.47 43 48 44 - star: changed the fit for the ffective on time such that initial -
trunk/MagicSoft/Mars/msignal/MSignalCam.cc
r7830 r7831 647 647 // otherwise to many large pixels survive (maybe because the 648 648 // fluctuations scale different than expected) 649 if (pix->IsPixelUnmapped() || pix->GetNumPhotons() <20)649 if (pix->IsPixelUnmapped() || pix->GetNumPhotons()*ratio<15) 650 650 return kFALSE; 651 651 val = pix->GetArrivalTime(); … … 663 663 664 664 case 11: // hi gain time 665 if (pix->IsPixelUnmapped() || pix->IsLoGainUsed())666 return kFALSE;667 668 665 // The number of photons is not scaled with the ratio because 669 666 // otherwise to many large pixels survive (maybe because the 670 667 // fluctuations scale different than expected) 671 if (pix->GetNumPhotons()<20) 668 if (pix->IsPixelUnmapped() || pix->IsLoGainUsed() || 669 pix->GetNumPhotons()*ratio<15) 672 670 return kFALSE; 673 674 671 val = pix->GetArrivalTime(); 675 672 return kTRUE;
Note:
See TracChangeset
for help on using the changeset viewer.