Versions Compared

Key

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

...

ueddaq quad shows fluctuation of the baseline-mean image intensity from event by to event.

Correction like common mode applied to entire image would solve this problem:

Code Block
titlecorrection for base-line jitter
arr = det.raw.calib(evt)

med = np.median(arr)
if fabs(med>thr_med_max): continue # discard deviation of median exceeding some threshold
arr -= med
<here apply per-pixel thresholds etc to arr>

# generate image from arr, if necessary
img = det.raw.image(evt, nda=arr)