Skip to content
Snippets Groups Projects
Commit f41c289d authored by Wouter Klijn's avatar Wouter Klijn
Browse files

Task #3222: Forgot to set all debugging skip parameters to False (do not skip)

parent 83c3350e
No related branches found
No related tags found
No related merge requests found
...@@ -143,7 +143,7 @@ class msss_imager_pipeline(control): ...@@ -143,7 +143,7 @@ class msss_imager_pipeline(control):
processed_ms_dir = os.path.join(self.scratch_directory, "subbands") processed_ms_dir = os.path.join(self.scratch_directory, "subbands")
concat_ms_map_path, timeslice_map_path, raw_ms_per_image_map_path = \ concat_ms_map_path, timeslice_map_path, raw_ms_per_image_map_path = \
self._prepare_phase(input_mapfile, target_mapfile, processed_ms_dir, self._prepare_phase(input_mapfile, target_mapfile, processed_ms_dir,
skip = True) skip = False)
#We start with an empty source_list #We start with an empty source_list
sourcelist_map = None sourcelist_map = None
...@@ -161,24 +161,24 @@ class msss_imager_pipeline(control): ...@@ -161,24 +161,24 @@ class msss_imager_pipeline(control):
parmdbs_path, sky_path = self._create_dbs( parmdbs_path, sky_path = self._create_dbs(
concat_ms_map_path, timeslice_map_path, concat_ms_map_path, timeslice_map_path,
source_list = source_list, source_list = source_list,
skip_create_dbs = True) skip_create_dbs = False)
# ***************************************************************** # *****************************************************************
# (3) bbs_imager recipe # (3) bbs_imager recipe
bbs_output = self._bbs(timeslice_map_path, parmdbs_path, sky_path, bbs_output = self._bbs(timeslice_map_path, parmdbs_path, sky_path,
skip = True) skip = False)
# ****************************************************************** # ******************************************************************
# (4) Get parameters awimager from the prepare_parset and inputs # (4) Get parameters awimager from the prepare_parset and inputs
aw_image_mapfile, maxbaseline = self._aw_imager(concat_ms_map_path, aw_image_mapfile, maxbaseline = self._aw_imager(concat_ms_map_path,
idx_loop, sky_path, idx_loop, sky_path,
skip = True) skip = False)
# ***************************************************************** # *****************************************************************
# (5) Source finding # (5) Source finding
sourcelist_map = self._source_finding(aw_image_mapfile, sourcelist_map = self._source_finding(aw_image_mapfile,
idx_loop, skip = True) idx_loop, skip = False)
#should the output be a sourcedb? instead of a sourcelist #should the output be a sourcedb? instead of a sourcelist
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment