Skip to content

Commit

Permalink
remove plotSlitFlux() from ARC SLIT recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-simpson committed Dec 13, 2023
1 parent 50b0497 commit 834657e
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion geminidr/ghost/recipes/sq/recipes_ARC_SLITV.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,27 @@
"""
recipe_tags = set(['GHOST', 'CAL', 'SLITV', 'ARC'])

from .recipes_SLITV import makeProcessedSlit as makeProcessedSlitArc
def makeProcessedSlitArc(p):
"""
This recipe processes GHOST science data.
Parameters
----------
p : Primitives object
A primitive set matching the recipe_tags.
"""

p.prepare()
p.addDQ()
p.addVAR(read_noise=True)
p.biasCorrect()
p.ADUToElectrons()
p.addVAR(poisson_noise=True)
p.darkCorrect()
p.CRCorrect()
p.processSlits()
p.stackFrames()
p.storeProcessedSlit()
return

_default = makeProcessedSlitArc

0 comments on commit 834657e

Please sign in to comment.