Fix erroneous filenames that match other files

This commit is contained in:
Douglas Clowes
2014-07-23 16:04:00 +10:00
parent 8d4366fa95
commit dda4a0f8f6
2 changed files with 4 additions and 4 deletions

View File

@ -1049,13 +1049,13 @@ proc check {tc_root whichCtrlLoop} {
set bCheckLimits [get_param $tc_root checkAlarmLimitsD] set bCheckLimits [get_param $tc_root checkAlarmLimitsD]
} }
default { default {
error "sct_ls336.tcl check(): Can't set setpoint. No valid input sensor specified for this output control loop." error "sct_lakeshore_336.tcl check(): Can't set setpoint. No valid input sensor specified for this output control loop."
} }
} }
# clientput "check(): doCheck:$bCheckLimits lolimit=$lolimit setpoint=$setpoint hilimit=$hilimit" # clientput "check(): doCheck:$bCheckLimits lolimit=$lolimit setpoint=$setpoint hilimit=$hilimit"
if {$bCheckLimits == 1} { if {$bCheckLimits == 1} {
if {$setpoint < $lolimit || $setpoint > $hilimit} { if {$setpoint < $lolimit || $setpoint > $hilimit} {
error "sct_ls336.tcl: setpoint $tc_root/sensor/sensorValue$whichSensor violates set alarm limits" error "sct_lakeshore_336.tcl: setpoint $tc_root/sensor/sensorValue$whichSensor violates set alarm limits"
} }
} }
} message ]} { } message ]} {

View File

@ -1176,13 +1176,13 @@ proc check {tc_root whichCtrlLoop} {
set bCheckLimits $::scobj::ls340::checkAlarmLimitsD set bCheckLimits $::scobj::ls340::checkAlarmLimitsD
} }
default { default {
error "sct_ls340.tcl check(): Can't set setpoint. No valid input sensor specified for this output control loop." error "sct_lakeshore_340.tcl check(): Can't set setpoint. No valid input sensor specified for this output control loop."
} }
} }
# clientput "check(): doCheck:$bCheckLimits lolimit=$lolimit setpoint=$setpoint hilimit=$hilimit" # clientput "check(): doCheck:$bCheckLimits lolimit=$lolimit setpoint=$setpoint hilimit=$hilimit"
if {$bCheckLimits == 1} { if {$bCheckLimits == 1} {
if {$setpoint < $lolimit || $setpoint > $hilimit} { if {$setpoint < $lolimit || $setpoint > $hilimit} {
error "sct_ls340.tcl: setpoint $tc_root/sensor/sensorValue$whichSensor violates set alarm limits" error "sct_lakeshore_340.tcl: setpoint $tc_root/sensor/sensorValue$whichSensor violates set alarm limits"
} }
} }
} message ]} { } message ]} {