Versions Compared

Key

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

...

Code Block
from psana import *
ds = DataSource('exp=xpptut15:run=59:smd')

epicsVarFullName = Detector('HX2:DVD:GCC:01:PMON')
epicsVarAlias = Detector('SampleTemp_GetA')

for nevent,evt in enumerate(ds.events()):
    print epicsVarFullName()
    print epicsVarAlias()
    break

References