Versions Compared

Key

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

...

single panel shape:(1, 144, 768)


New interface for single or a few of total number of panels

exp=tstx00417,run=277

segnums = det.raw._segment_numbers : [3,]

pedestals and other arrays from calib constants including mask and geometry coordinate and index arrays:

peds = det.raw._pedestals()  # peds.shape=(1, 144, 768) 

peds = det.raw._pedestals(all_segs=True)  # peds.shape=(20, 144, 768) 

raw = det.raw.raw(evt) # raw.shape=(1, 144, 768) < ALWAYS

raw = det.raw.calib(evt) # calib.shape=(1, 144, 768) < ALWAYS, because derived from raw.

image = det.raw.image(evt, nda=None, value_for_missing_segments=100, **kwa)

...