Versions Compared

Key

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

...

Peak pre-selection for histogramms

...

ARC region

Code Block
def procPeakDataEquprocPeakDataArc(pk) :
    """ Process peak for EQUARC region; accumulate peak data statistics in histogram arrays.
    """
    #===================
    # discard from all histograms except its own
    sp.lst_equarc_atot.append(pk.atot)
    if pk.atot<2000 : return
    sp.lst_equ_r_raw.append(pk.r)
    if pk.r<100     : return
    #===================
    sp.lst_equ_r   arc_amax.append(pk.ramax)
    sp.lst_equarc_amaxnpix.append(pk.amaxnpix)
    sp.lst_equ_npixarc_r   .append(pk.npixr)
  ...

Image RemovedImage RemovedImage Removed

...

Image AddedImage AddedImage Added

 

Image RemovedImage RemovedImage Removed

Image RemovedImage RemovedImage Removed

Image RemovedImage RemovedImage Removed

Image RemovedImage RemovedImage Removed

Image RemovedImage RemovedImage Removed

Image RemovedImage RemovedImage Removed

 

Image RemovedImage RemovedImage Removed

Image RemovedImage RemovedImage Removed

...

Image AddedImage AddedImage Added

 

 

Image AddedImage AddedImage Added

Image AddedImage AddedImage Added

Image AddedImage AddedImage Added

 

Image AddedImage AddedImage Added

Image AddedImage AddedImage Added

Image AddedImage AddedImage Added

Image AddedImage AddedImage Added

Image AddedImage AddedImage Added

 

 

 

 

 

 

 

EQU region

Code Block
def procPeakDataArcprocPeakDataEqu(pk) :
    """ Process peak for ARCEQU region; accumulate peak statistics in histogram arrays.data
    """
    #===================
    # discard from all histograms except its own
    sp.lst_arcequ_atot.append(pk.atot)
    if pk.atot<1800atot<2000 : return
    #====sp.lst_equ_r_raw.append(pk.r)
    if pk.r<100     : return
    #===================
    sp.lst_arc_amaxequ_r   .append(pk.amaxr)
    sp.lst_arcequ_npixamax.append(pk.npixamax)
    sp.lst_arc_r   equ_npix.append(pk.rnpix)
  ...

Image AddedImage AddedImage Added

Image AddedImage AddedImage Added

 

Image AddedImage AddedImage Added

Image AddedImage AddedImage Added

Image AddedImage AddedImage Added

Image AddedImage AddedImage Added

Image AddedImage AddedImage Added

Image AddedImage AddedImage Added

 

Image AddedImage AddedImage Added

Image AddedImage AddedImage Added

 

Peak selection for fit

EQU region

...