it can't be changed. r3591 | ffr | 2012-06-04 20:19:00 +1000 (Mon, 04 Jun 2012) | 3 lines
17 lines
557 B
Tcl
17 lines
557 B
Tcl
# Author : Jing Chen (jgn@ansto.gov.au)
|
|
|
|
source $cfPath(commands)/commands_common.tcl
|
|
|
|
namespace eval motor {
|
|
# is_homing_list = comma separated list of motors which are safe to send "home"
|
|
variable is_homing_list ""
|
|
}
|
|
|
|
proc ::commands::isc_initialize {} {
|
|
::commands::ic_initialize
|
|
# Set the "detector type" variable for Taipan to run bmon scans instead of histmem scans
|
|
# and lock it so that its value is not changed when the status in status.tcl is restored.
|
|
::scan::runscan_cmd -set detector "bmon"
|
|
::scan::runscan_cmd_par_detector lock
|
|
}
|