Changeset 7831


Ignore:
Timestamp:
08/01/06 15:04:05 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/NEWS

    r7830 r7831  
    3737
    3838   - callisto: Implemented two new tabs, the pulse position of pulses
    39      not saturating the hi-gain (and above 20phe) and the pulse-position
     39     not saturating the hi-gain (and above 15phe) and the pulse-position
    4040     saturating the hi-gain (means the pulse position of signal extracted
    4141     from the lo-gain) This can be used to check (and/or correct) the
    4242     hi-/lo-gain offset.
    43 
    44    - callisto: The signal threshold for the pulse position has been
    45      changed from 15phe to 20phe and the scaling of the outer pixels has
    46      been switched off.
    4743
    4844   - star: changed the fit for the ffective on time such that initial
  • trunk/MagicSoft/Mars/msignal/MSignalCam.cc

    r7830 r7831  
    647647        // otherwise to many large pixels survive (maybe because the
    648648        // fluctuations scale different than expected)
    649         if (pix->IsPixelUnmapped() || pix->GetNumPhotons()<20)
     649        if (pix->IsPixelUnmapped() || pix->GetNumPhotons()*ratio<15)
    650650            return kFALSE;
    651651        val = pix->GetArrivalTime();
     
    663663
    664664    case 11: // hi gain time
    665         if (pix->IsPixelUnmapped() || pix->IsLoGainUsed())
    666             return kFALSE;
    667 
    668665        // The number of photons is not scaled with the ratio because
    669666        // otherwise to many large pixels survive (maybe because the
    670667        // fluctuations scale different than expected)
    671         if (pix->GetNumPhotons()<20)
     668        if (pix->IsPixelUnmapped() || pix->IsLoGainUsed() ||
     669            pix->GetNumPhotons()*ratio<15)
    672670            return kFALSE;
    673 
    674671        val = pix->GetArrivalTime();
    675672        return kTRUE;
Note: See TracChangeset for help on using the changeset viewer.