Skip to content
Snippets Groups Projects

Post Apocalypse Round 5 - restore & image

Merged Charlotte Hausman requested to merge testing_barrage_fixes into main
4 files
+ 374
17
Compare changes
  • Side-by-side
  • Inline
Files
4
@@ -109,10 +109,11 @@ class CalibrationLauncher(LauncherIF):
self.metadata = get_abs_file(parameters.get("metadata"))
def launch_casa(self):
if self.parameters["product_type"] == "restore":
check_input = self.check_restorable()
else:
check_input = self.check_calibratable()
check_input = (
self.check_restorable()
if self.parameters["product_type"] == "restore"
else self.check_calibratable()
)
if check_input:
self.prepare_for_casa()
@@ -174,10 +175,11 @@ class ImagingLauncher(LauncherIF):
self.metadata = get_abs_file(parameters.get("metadata"))
def launch_casa(self):
if self.parameters["product_type"] == "integrated":
check_input = self.check_cal_and_imageable()
else:
check_input = self.check_imageable()
check_input = (
self.check_cal_and_imageable()
if self.parameters["product_type"] == "integrated"
else self.check_imageable()
)
if check_input:
self.run_audit(self.parameters)
Loading