Ami3Pipeline

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

Bases: JwstPipeline

Ami3Pipeline: Apply all level-3 calibration steps to an association of level-2b AMI exposures. Included steps are: ami_analyze (fringe detection) ami_normalize (normalize results by reference target)

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_ami3'
step_defs: ClassVar = {'ami_analyze': <class 'jwst.ami.ami_analyze_step.AmiAnalyzeStep'>, 'ami_normalize': <class 'jwst.ami.ami_normalize_step.AmiNormalizeStep'>}

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.