Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added DRLD description of recipes to documentation in recipe #108

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -166,12 +166,30 @@ class MetisPupilImaging(MetisRecipe):
_email = "[email protected]"
_copyright = "GPL-3.0-or-later"
_synopsis = "Basic processing of pupil images"
_description = (
"This recipe performs basic reduction (dark current subtraction, flat fielding,\n"
"optional bias subtraction, persistance and linearity corrections) on engineering\n"
"images of the pupil masks. This recipe is not expected to be used by observers\n"
"during regular use."
)
_description = """
This recipe performs basic reduction (dark current subtraction, flat fielding,
optional bias subtraction, persistance and linearity corrections) on engineering
images of the pupil masks. This recipe is not expected to be used by observers
during regular use.

INPUTS
{band}_PUPIL_RAW
LINEARITY_{det}
GAIN_MAP_{det}
PERSISTENCE_MAP
MASTER_DARK_{det}
MASTER_IMG_FLAT_LAMP_{band}

where band/det is LM or N and 2RG or GEO

OUTPUT
{band}_PUPIL_REDUCED

Algorithm
Apply dark current and flat field corrections and optionally bias subtraction,
persistence and linearity corrections.
"""


parameters = cpl.ui.ParameterList([
cpl.ui.ParameterEnum(
Expand Down
Loading