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

Task #3860: Bugfix on parm_export_cal functionality

parent 1ed24bb1
No related branches found
No related tags found
No related merge requests found
......@@ -289,8 +289,14 @@ class msss_calibrator_pipeline(control):
# Swapping outliers in the gains with the median
# Export the calibration solutions using gainoutliercorrection and store
# the results in the files specified in the instrument mapfile.
export_instrument_model = eval(py_parset.getString(
'Calibration.export_instrument_model'))
try:
export_instrument_model = eval(py_parset.getString(
'Calibration.export_instrument_model'))
except:
export_instrument_model = True
# export_instrument_model = eval(py_parset.getString(
# 'Calibration.export_instrument_model'))
with duration(self, "gainoutliercorrection"):
self.run_task("gainoutliercorrection",
(parmdb_mapfile, instrument_mapfile),
......
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