Versions Compared

Key

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

...

1) There are four parameters required to uniquely identify an image at LCLS. Type the (1) experiment name, (2) run number, (3) detector name, and (4) event number in the Experiment Parameters panel.

For this tutorial, we will look at experiment cxitut13, run 10, detector DscCsPad, event 11.

Note that available detector names will be printed on the terminal once you have typed in the experiment name and the run number. 2)  You can specify the experiment parameters as command line arguments in psocake using the psana-style experiment run string. This is the recommended way of starting psocake:
Code Block
languagepython
#######################################
# Available area detectors: 
# ('CxiDs1.0:Cspad.0', 'DscCsPad', '')
#######################################

CxiDs1.0:Cspad.0 is the full detector name. DscCsPad is the simpler DAQ alias. Psocake can understand both naming conventions.

$ psocake exp=cxitut13:run=10 -d DscCsPad -n 11 -m sfx

Or you can also use the -e and -r arguments for the experiment and the run number2)  You can specify the experiment parameters as command line arguments in psocake using the psana-style experiment run string. This is the recommended way of starting psocake:

Code Block
languagepython
$ psocake exp=cxitut13:run=$ psocake -e cxitut13 -r 10 -d DscCsPad -n 11 -m sfx

...

Note that available detector names will be printed on the terminal once you have typed in the experiment name and the run number

...

$ psocake -e cxitut13 -r 10 -d DscCsPad -n 11 -m sfx
Code Block
languagepython
#######################################
# Available area detectors: 
# ('CxiDs1.0:Cspad.0', 'DscCsPad', '')
#######################################

CxiDs1.0:Cspad.0 is the full detector name. DscCsPad is the simpler DAQ alias. Psocake can understand both naming conventions.

To check psocake version:

...