fix
This commit is contained in:
@@ -394,6 +394,7 @@ def focussingSequence(
|
|||||||
|
|
||||||
ret_code = set_focus_func(foc_val)
|
ret_code = set_focus_func(foc_val)
|
||||||
if ret_code:
|
if ret_code:
|
||||||
|
ret_val["ret_code"] = ret_code
|
||||||
print("FAIL!", file=log_output)
|
print("FAIL!", file=log_output)
|
||||||
break
|
break
|
||||||
else:
|
else:
|
||||||
@@ -405,8 +406,12 @@ def focussingSequence(
|
|||||||
print(log_ident, file=log_output, end="")
|
print(log_ident, file=log_output, end="")
|
||||||
print("get image '{}' ...\t".format(full_filename), file=log_output, end="")
|
print("get image '{}' ...\t".format(full_filename), file=log_output, end="")
|
||||||
|
|
||||||
get_image_func(full_filename, seq_kwds["exp_time"])
|
ret_code = get_image_func(full_filename, seq_kwds["exp_time"])
|
||||||
|
if ret_code:
|
||||||
|
ret_val["ret_code"] = ret_code
|
||||||
|
print("FAIL!", file=log_output)
|
||||||
|
break
|
||||||
|
else:
|
||||||
print("OK", file=log_output)
|
print("OK", file=log_output)
|
||||||
|
|
||||||
futures.append(executor.submit(amt.compute_mean_flux_radius, fname, **seq_kwds))
|
futures.append(executor.submit(amt.compute_mean_flux_radius, fname, **seq_kwds))
|
||||||
|
|||||||
Reference in New Issue
Block a user