Fix erroneous filenames that match other files

This commit is contained in:
Douglas Clowes
2014-07-23 16:04:00 +10:00
parent e3b583150e
commit dedcc49284
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]
}
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"
if {$bCheckLimits == 1} {
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 ]} {

View File

@ -1176,13 +1176,13 @@ proc check {tc_root whichCtrlLoop} {
set bCheckLimits $::scobj::ls340::checkAlarmLimitsD
}
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"
if {$bCheckLimits == 1} {
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 ]} {