DarkPipeline

class jwst.pipeline.DarkPipeline(*args, **kwargs)[source]

Bases: JwstPipeline

DarkPipeline: Apply detector-level calibration steps to raw JWST dark ramp to produce a corrected 4-D ramp product. Included steps are: group_scale, dq_init, saturation, ipc, superbias, refpix, rscd, lastframe, and linearity.

See Step.__init__ for the parameters.

Attributes Summary

class_alias

step_defs

Methods Summary

process(input)

This is where real work happens.

Attributes Documentation

class_alias = 'calwebb_dark'
step_defs: ClassVar = {'dq_init': <class 'jwst.dq_init.dq_init_step.DQInitStep'>, 'emicorr': <class 'jwst.emicorr.emicorr_step.EmiCorrStep'>, 'firstframe': <class 'jwst.firstframe.firstframe_step.FirstFrameStep'>, 'group_scale': <class 'jwst.group_scale.group_scale_step.GroupScaleStep'>, 'ipc': <class 'jwst.ipc.ipc_step.IPCStep'>, 'lastframe': <class 'jwst.lastframe.lastframe_step.LastFrameStep'>, 'linearity': <class 'jwst.linearity.linearity_step.LinearityStep'>, 'refpix': <class 'jwst.refpix.refpix_step.RefPixStep'>, 'reset': <class 'jwst.reset.reset_step.ResetStep'>, 'rscd': <class 'jwst.rscd.rscd_step.RscdStep'>, 'saturation': <class 'jwst.saturation.saturation_step.SaturationStep'>, 'superbias': <class 'jwst.superbias.superbias_step.SuperBiasStep'>}

Methods Documentation

process(input)[source]

This is where real work happens. Every Step subclass has to override this method. The default behaviour is to raise a NotImplementedError exception.