Versions Compared

Key

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

...

  • background shape is evaluated in run 162 WITHOUT common mode correction. See Masks, Background subtraction for detail.
  • pfv3r1 - is upgraded PSAS-147
  • S/N statistical significance is improved by increasing number of pixels. See Hit/Peak Finders.
  • Data processing and peak finding is done in  cxif5315/proc-cxif5315-r0169-data-pfvn-2016-05-03.py

Data processing

exp=cxif5315:run=169

Code Block
    nda_data = det.raw(evt)
    if nda_data is not None :
        nda =  np.array(nda_data, dtype=np.float32, copy=True)
        nda -= nda_peds
        nda = subtract_bkgd(nda, nda_bkgd, mask=nda_smask, winds=winds_bkgd, pbits=0)
        nda *= nda_smask

...