GUI, Scripts And Analysis Code: Difference between revisions

From HELIOS Digital DAQ
Jump to navigation Jump to search
(Created page with "=Starting ACQ Control= #!/bin/bash -l runEdm() { export EDMOBJECTS=/global/devel/extensions/dgs1/src/edm/setup export EDMHELPFILES=/global/devel/extensions/dgs1/src/edm...")
 
Line 18: Line 18:


All of these exports could (and should be placed in the ''.bashrc'' file).
All of these exports could (and should be placed in the ''.bashrc'' file).
'''runControl''' is a call to the main gui screen located in ''/global/devel/systems/helios/edm/scripts.'' This script should be modified to host more information than it currently does.

Revision as of 22:10, June 23, 2015

Starting ACQ Control

#!/bin/bash -l
runEdm() {
 export EDMOBJECTS=/global/devel/extensions/dgs1/src/edm/setup
 export EDMHELPFILES=/global/devel/extensions/dgs1/src/edm/helpFiles
 export EDMBASE=/global/devel/extensions/dgs1/src/edm
 export EDM=/global/devel/extensions/dgs1/src/edm/edmMain/O.linux-x86/edm
 export EDMPVOBJECTS=/global/devel/extensions/dgs1/src/edm/setup
 export EDMFILES=/global/devel/extensions/dgs1/src/edm/setup
 export EDMDATAFILES=$EDMDATAFILES:/global/devel/systems/helios/edm/screens
 export EDMSCRIPTS=/global/devel/systems/helios/edm/scripts
#  echo "export EDMDATAFILES=$EDMDATAFILES"
 $EDM -x runControl &
 echo "Edits are possible in this mode."
}
runEdm

All of these exports could (and should be placed in the .bashrc file).

runControl is a call to the main gui screen located in /global/devel/systems/helios/edm/scripts. This script should be modified to host more information than it currently does.