37 lines
895 B
Tcl
37 lines
895 B
Tcl
# MOTOR HOST AND PORT
|
|
foreach {mc host port} {
|
|
MC1 mc1-platypus pmc1-platypus
|
|
MC2 mc2-platypus pmc2-platypus
|
|
MC3 mc3-platypus pmc3-platypus
|
|
MC4 mc4-platypus pmc4-platypus
|
|
} {
|
|
dict set MOTOR_HOSTPORT $mc HOST $host
|
|
dict set MOTOR_HOSTPORT $mc PORT $port
|
|
}
|
|
|
|
# BEAM MONITOR HOST AND PORT
|
|
foreach {bm host port} {
|
|
MONITOR_1 das1-platypus 30000
|
|
MONITOR_2 das1-platypus 30001
|
|
} {
|
|
dict set MONITOR_HOSTPORT $bm HOST $host
|
|
dict set MONITOR_HOSTPORT $bm PORT $port
|
|
}
|
|
|
|
# HISTOGRAM SERVER HOST AND PORT
|
|
foreach {key host port} {
|
|
HMM das1-platypus.nbi.ansto.gov.au 8080
|
|
HMSTAT das1-platypus.nbi.ansto.gov.au 8081
|
|
} {
|
|
dict set HISTMEM_HOSTPORT $key HOST $host
|
|
dict set HISTMEM_HOSTPORT $key PORT $port
|
|
}
|
|
|
|
# CHOPPER HOST AND PORT
|
|
foreach {key host port} {
|
|
NCS013 137.157.202.137 10000
|
|
} {
|
|
dict set CHOPPER_HOSTPORT $key HOST $host
|
|
dict set CHOPPER_HOSTPORT $key PORT $port
|
|
}
|