SourceTypeStep
- class jwst.srctype.SourceTypeStep(name=None, parent=None, config_file=None, _validate_kwds=True, **kws)[source]
Bases:
JwstStep
Select and set a source type based on various inputs.
The source type is used in later calibrations to determine the appropriate methods to use. Input comes from either the SRCTYAPT keyword value, which is populated from user info in the APT, or the NIRSpec MSA planning tool. The source type can be also specified on the command line for exposures containing a single pre-defined target.
Create a
Step
instance.- Parameters:
- namestr
The name of the Step instance. Used in logging messages and in cache filenames. If not provided, one will be generated based on the class name.
- parent
Step
The parent step of this step. Used to determine a fully-qualified name for this step, and to determine the mode in which to run this step.
- config_filestr or pathlib.Path
The path to the config file that this step was initialized with. Use to determine relative path names of other config files.
- _validate_kwdsbool
Validate given
kws
against specs/config.- **kwsdict
Additional parameters to set. These will be set as member variables on the new Step instance.
Attributes Summary
Methods Summary
process
(step_input)Determine the source type.
Attributes Documentation
- class_alias = 'srctype'
- spec
source_type = option('POINT','EXTENDED', default=None) # user-supplied source type
Methods Documentation
- process(step_input)[source]
Determine the source type.
- Parameters:
- step_inputstr, IFUImageModel, MultiSlitModel, or SlitModel
Either the path to the file or the science data model to be corrected.
- Returns:
- datamodelIFUImageModel, MultiSlitModel, or SlitModel
Data model with keyword “SRCTYPE” populated with either “POINT” or “EXTENDED”.