Versions Compared

Key

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

...

Another concern is the node that has the 6 KCU cards for the multimode to single mode conversion of 48 fiber pairs (perhaps minus 4 since in principle the timing can be sent with the local txi xpm using multimode?).

Do we also need to support det.image in the DRP?

Schedule

(on Dec. 19, 2022) Sometime in February/March a prototype with 3 tiles will be released (could generate fake data for missing panels for 1 quad).  Full detector: summer?

...

Running this script on a psffb node (twice so we get all the data in cache so it behaves more like the daq):.  Do we also need to support det.image in the drp?

Code Block
(ana-4.0.48-py3) drp-srcf-eb004:~$ more junk.py
import time
from psana import *
ds = DataSource('exp=mfxx1005021:run=340')
det = Detector('epix10k2M')
for nevt,evt in enumerate(ds.events()):
    img = det.image(evt)
    #print(img.shape)
    if nevt>=20: break
    if nevt==0: tstart=time.time() # start the timer after first event (which is slow)
print('time per evt:',(time.time()-tstart)/nevt,'nevt:',nevt)

(ana-4.0.48-py3) drp-srcf-eb004:~$ python junk.py
time per evt: 0.17038806676864623 nevt: 20
(ana-4.0.48-py3) drp-srcf-eb004:~$ python junk.py
time per evt: 0.17048853635787964 nevt: 20
(ana-4.0.48-py3) drp-srcf-eb004:~$ 

...