Major peak selection parameter is atot_thr=500.

Other parameters are pretty loose.

EQU

Peak reconstruction/selection parameters
peaks_equ = alg_equ.peak_finder_v4r2(nda, thr_low=40, thr_high=60, rank=4, r0=6, dr=2)
alg_equ.set_peak_selection_pars(npix_min=3, npix_max=1000, amax_thr=0, atot_thr=500, son_min=4)

For further histograms discard peaks with pk.r<105

 

For further histograms discard peaks with pk.atot<600

Tentative peak selection criteria

        if pk.r<100     : return False
        if pk.r>454     : return False
        if pk.atot<600  : return False
        if pk.rms>25    : return False
        if pk.bkgd>15   : return False
        if pk.bkgd<-15  : return False

pk.son ?
sigma_hov ?

ARC

alg_arc.set_peak_selection_pars(npix_min=3, npix_max=1000, amax_thr=0, atot_thr=500, son_min=4)
peaks_arc = alg_arc.peak_finder_v4r2(nda, thr_low=40, thr_high=60, rank=8, r0=10, dr=2)

Further discard peaks with pk.atot<1000

 

Tentative peak selection criteria

 

Tentative peak selection criteria
        if pk.atot<1000 : return False
        if pk.r<435     : return False
        if pk.r>443     : return False
        if pk.rms>25    : return False
        if pk.bkgd>15   : return False
        if pk.bkgd<-15  : return False
pk.son ?
sigma_hov ?

 

 

 

 

 

 

 

 

 

 

  • No labels