32 lines
781 B
Tcl
32 lines
781 B
Tcl
# Specify NONE for HOST and PORT if there is no fake device to talk to.
|
|
|
|
# TEST MOTOR HOST AND PORT
|
|
foreach {key host port} {
|
|
MC1 localhost 62034
|
|
MC2 localhost 62035
|
|
MC3 localhost 62036
|
|
MC4 localhost 62037
|
|
} {
|
|
dict set MOTOR_HOSTPORT $key HOST $host
|
|
dict set MOTOR_HOSTPORT $key PORT $port
|
|
}
|
|
|
|
# TEST BEAM MONITOR HOST AND PORT
|
|
foreach {key host port} {
|
|
MONITOR_1 localhost 30000
|
|
MONITOR_2 localhost 30001
|
|
MONITOR_3 localhost 30002
|
|
} {
|
|
dict set MONITOR_HOSTPORT $key HOST $host
|
|
dict set MONITOR_HOSTPORT $key PORT $port
|
|
}
|
|
|
|
# TEST HISTOGRAM SERVER HOST AND PORT
|
|
foreach {key host port} {
|
|
HMM das1-test.nbi.ansto.gov.au 8080
|
|
HMSTAT das1-test.nbi.ansto.gov.au 8081
|
|
} {
|
|
dict set HISTMEM_HOSTPORT $key HOST $host
|
|
dict set HISTMEM_HOSTPORT $key PORT $port
|
|
}
|