* @throws SalsaDeviceException
*/
public void loadScan(IConfig1D config, IContext context) throws SalsaDeviceException {
String scanServerName = context.getScanServerName();
if (TangoDeviceHelper.isDeviceRunning(scanServerName)) {
scanConnectorTool1D = new ScanConnectorTool1D(scanServerName);
} else {
throw new SalsaDeviceException("Cannot load scan config1D " + config.getName() + " because "
+ scanServerName + " device is down");
}
}