Versions Compared

Key

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

The LCLS DAQ includes many slowly changing quantities (e.g. voltages, temperatures) that are recorded with software called EPICS.  Also, many other non-area-detectors are not yet accessible with the simple "Detector" interface.  We

We have plans to make everything all data accessible with the easier "Detector" interface, but until that is complete we support the following older forms of accessing detector information.

Code Block
from psana import *
ds = DataSource('exp=xpptut15:run=59:smd')
evrFullName = Source('DetInfo(NoDetector.0:Evr.0)')
evrAliasName = Source('evr0')
ebeamName =  Source('BldInfo(EBeam)')
es = ds.env().epicsStore()
for nevent,evt in enumerate(ds.events()):
    # these next two lines are equivalent (second one uses "alias" name)        
    evr = evt.get(EvrData.DataV4, evrFullName)
    evr = evt.get(EvrData.DataV4, evrAliasName)
    # now fetch ebeam BLD ("Beam Line Data")                                    
    ebeam = evt.get(Bld.BldDataEBeamV7, ebeamName)
    # now access one of the slower "epics variables"                            
    if evr is None or ebeam is None: continue
    print evr
    print ebeam
    print es.value('HX2:DVD:GCC:01:PMON')
    break