You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Contents

2014-01-22 Meeting minutes

Hi everyone,

Here is a short summary of what I heard today for how we should start
with the pnCCD.

For pnCCD algorithms:
common-mode, pedestals, hot-pixels, quadrant rotations, hit-finders,
support in mikhail's calibManager

For pnCCD online displays: (using matplotlib for now)
shot by shot raw data
shot by shot calibrated data
projections of the above
region-of-interest
strip-charts of interesting quantities
(also display calibration values like noise-map,pedestal-map)

After this we will work on the acqiris as well (acqiris
constant-fraction algos already exist in psana).

Attached below is a 12 line python program that plots a real pnCCD
image and an x-projection (amoc0113 also has pnccd data we can look
at).  You can run it on a psana node by saving it to pnccd.py and
doing "sit_setup" and then "ipython pnccd.py".  This sort of code
should work online too (although we may have to change matplotlib
settings) as well as with calibrated images.

Display group (dan, mikhail, me) meets Thursday at 10:30.  Analysis
group (sebastian, ankush(?), phil, mikhail, me) meets Friday at 1.

See you then...

chris


First script form Chris

Use interactive psana framework:

from psana import *

events = DataSource('exp=AMO/amos0113:run=1').events()
evt = events.next()

#to see what data types one can request from the event
#print evt.keys()

src = Source('DetInfo(Camp.0:pnCCD.0)')
frame = evt.get(PNCCD.FullFrameV1, src)

import matplotlib.pyplot as plt
plt.figure('PNCCD')
plt.imshow(frame.data())
plt.show()

CASS Heritage

Online monitor

 

 

 

 

  • No labels