19 lines
389 B
Tcl
19 lines
389 B
Tcl
# Detector voltage controller
|
|
|
|
set sim_mode [SplitReply [detector_simulation]]
|
|
|
|
if {$::sim_mode == "true"} {
|
|
EvFactory new dhv1 sim
|
|
} else {
|
|
clientput "Detector Voltage control not yet available"
|
|
# makeasyncqueue acq NHQ200 xxxxxxxxxxxxxx yyyy
|
|
# evfactory new dhv1 nhqvps acq
|
|
# dhv1 lowerlimit xxx
|
|
# dhv1 upperlimit xxx
|
|
# dhv1 tolerance xxx
|
|
# dhv1 max xxx
|
|
# dhv1 rate xxx
|
|
# dhv1 lock
|
|
}
|
|
|