Skip to content

Commit

Permalink
Added wavelength correction to nod and shuffle pipeline in kcwi_pipel…
Browse files Browse the repository at this point in the history
…ine.py, to address issue #144
  • Loading branch information
scizen9 committed Nov 9, 2023
1 parent 6c453a8 commit cc2881e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion kcwidrp/pipelines/kcwi_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,9 @@ class Kcwi_pipeline(BasePipeline):
"nandshuff_make_cube"),
"nandshuff_make_cube": ("MakeCube",
"making_cube_started", # icube
"nandshuff_wavelengthcorr"),
"nandshuff_wavelengthcorr": ("WavelengthCorrections",
"wavelength_correction_started", # icubew
"nandshuff_correct_dar"),
"nandshuff_correct_dar": ("CorrectDar",
"correcting_dar_started", # icubed
Expand All @@ -327,7 +330,8 @@ def __init__(self, context: ProcessingContext):
self.cnt = 0

def add_to_dataframe_only(self, action, context):
self.context.pipeline_logger.info("******* ADD to DATAFRAME ONLY: %s" % action.args.name)
self.context.pipeline_logger.info("******* ADD to DATAFRAME ONLY: %s" %
action.args.name)
return action.args

def action_planner(self, action, context):
Expand Down

0 comments on commit cc2881e

Please sign in to comment.