Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
        if pk.atot<600  : return False
        if pk.npix>60rms<1     : return False
        if pk.rms<10    : return False# profilactic
        if pk.rms>25    : return False
        if math.fabs(pk.bkgd)>15 : return False
pk.npix ?
pk.son ?
sigma_hov ?

ARC

Code Block
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)

...

Code Block
titleTentative peak selection criteria
        if pk.atot<1000 : return False
        if pk.npix>200  : return False
        if pk.r<435     : return False
        if pk.r>443     : return False
        if pk.rms<10rms<1     : return False # profilactic
        if pk.rms>30    : return False
        if math.fabs(pk.bkgd)>15: return False

pk.npix ?
pk.son ?
sigma_hov ?

 

 

 

 

 

...