Versions Compared

Key

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

...

Type "psocake" on your terminal to open up the GUI.:

Code Block
languagepython
$ psocake

1) Type the experiment name, run number, detector name, and event number in the Experiment Parameters panel.

2) Second option is to use psana-style experiment run string, (e.g. For experiment=For this tutorial, we will look at experiment cxi06216, run = 22, detector = DscCsPad, event = 11).3) Third option is to use -e and -r arguments.

Note that available detector names will be printed on the terminal when you type in the experiment name and run number.

Code Block
languagepython
#######################
# Available detectors:  ['DscCsPad']
#######################

2) You can specify the experiment parameters as command line arguments in psocake using the psana-style experiment run string:

Code Block
languagepython
$ psocake
$ psocake exp=cxi06216:run=22 -d DscCsPad -n 11

3) You can also use -e and -r arguments for the experiment and the run number:

Code Block
languagepython
$ psocake -e cxi06216 -r 22 -d DscCsPad -n 11

For argument options, use --help.:

Code Block
languagepython
$ psocake --help

...