NIRCam Coronagraphy Pipeline Notebook#
Authors: B. Sunnquist, A.L. Carter, based on the NIRISS/NIRCam imaging notebooks by R. Diaz and B. Hilbert
Last Updated: April 17, 2026
Pipeline Version: 2.0.0 (Build 12.3)
Purpose:
This notebook provides a framework for processing generic Near-Infrared
Camera (NIRCam) Coronagraphy data through all three James Webb Space Telescope
(JWST) pipeline stages. Data is assumed to be located in a folder structure
following the paths set up below. It should not be necessary to edit
any cells other than in the Configuration section unless
modifying the standard pipeline processing options.
Data:
This example is set up to use an example dataset from
Program ID
1386 (PI: Sasha Hinkley).
The science PSF is HIP-65426 which is taken using 2 different roll angles in observations 2 and 3. These observations use the DEEP8 readout pattern with 2 integrations per exposure and 15 groups per intergration. The PSF reference star is HIP-68245 taken in observation 1 using a 9-POINT-CIRCLE dither pattern. This observation uses the MEDIUM8 readout pattern with 2 integrations per exposure and 4 groups per integration. All data is observed on the NRCALONG detector with the SUB320A335R subarray and uses the F444W filter and MASK335R round coronagraphic mask.
Example input data to use will be downloaded automatically unless
disabled (i.e., to use local files instead).
JWST pipeline version and CRDS context:
This notebook was written for the above-specified pipeline version and associated build context for this version of the JWST Calibration Pipeline. Information about this and other contexts can be found in the JWST Calibration Reference Data System (CRDS server). If you use different pipeline versions, please refer to the table here to determine what context to use. To learn more about the differences for the pipeline, read the relevant documentation.
Please note that pipeline software development is a continuous process, so results in some cases may be slightly different if a subsequent version is used. For optimal results, users are strongly encouraged to reprocess their data using the most recent pipeline version and associated CRDS context, taking advantage of bug fixes and algorithm improvements.
Any known issues for this build are provided in the JWST User Documentaion.
Updates:
This notebook is regularly updated as improvements are made to the
pipeline. Find the most up to date version of this notebook at:
https://github.com/spacetelescope/jwst-pipeline-notebooks/
Recent Changes:
Feb 26, 2025: original notebook created
May 5, 2025: Updated to jwst 1.18.0 (no significant changes)
July 16, 2025: Updated to jwst 1.19.1 (no significant changes)
December 10, 2025: Updated to jwst 1.20.2 (no significant changes)
March 27, 2026: Updated to demonstrate PSF library subtraction
April 17, 2026: Updated to jwst 2.0.0 (no significant changes)
Table of Contents#
1. Configuration#
Install dependencies and parameters#
To make sure that the pipeline version is compatabile with the steps
discussed below and the required dependencies and packages are installed,
you can create a fresh conda environment and install the provided
requirements.txt file:
conda create -n nircam_coronagraphy_pipeline python=3.13
conda activate nircam_coronagraphy_pipeline
pip install -r requirements.txt
Set the basic parameters to use with this notebook.#
These parameters will affect what data is used, where data is located (if already in disk), and pipeline modules run in this data. The list of parameters are:
demo_mode
directories with data
pipeline modules
# Basic import necessary for configuration
import os
demo_mode must be set appropriately below.
Set demo_mode = True to run in demonstration mode. In this
mode this notebook will download example data from the Barbara A.
Mikulski Archive for Space Telescopes
(MAST) and process it through
the pipeline. This will all happen in a local directory unless modified in
Section 3 below.
Set demo_mode = False if you want to process your own data
that has already been downloaded and provide the location of the data.
# Set parameters for demo_mode, channel, band, data mode directories, and
# processing steps.
# -----------------------------Demo Mode---------------------------------
demo_mode = True
if demo_mode:
print('Running in demonstration mode using online example data!')
# --------------------------User Mode Directories------------------------
# If demo_mode = False, look for user data in these paths
if not demo_mode:
# Set directory paths for processing specific data; these will need
# to be changed to your local directory setup (below are given as
# examples)
basedir = os.path.join(os.getcwd(), '')
# Point to where science observation data are
# Assumes uncalibrated data in <sci_dir>/uncal/ and results in stage1,
# stage2, stage3 directories
sci_dir = os.path.join(basedir, 'PID1386/')
# Create directory if it does not exist
if not os.path.isdir(sci_dir):
os.mkdir(sci_dir)
print('Using user provided files')
# --------------------------Set Processing Steps--------------------------
# Individual pipeline stages can be turned on/off here. Note that a later
# stage won't be able to run unless data products have already been
# produced from the prior stage.
# Science processing
dodet1 = True # calwebb_detector1
doimage2 = True # calwebb_image2
docoron3 = True # calwebb_coron3
docoron3_psflib = True # Custom extension to calwebb_coron3
Running in demonstration mode using online example data!
Set CRDS context and server#
Before importing CRDS and JWST modules, we need
to configure our environment. This includes defining a CRDS cache
directory in which to keep the reference files that will be used by the
calibration pipeline.
If the root directory for the local CRDS cache directory has not been set
already, it will be set to create one in the home directory.
Build Context Table
# ------------------------Set CRDS context and paths----------------------
# Each version of the calibration pipeline is associated with a specific CRDS
# context file. The pipeline will select the appropriate context file behind
# the scenes while running. However, if you wish to override the default context
# file and run the pipeline with a different context, you can set that using
# the CRDS_CONTEXT environment variable. Here we show how this is done,
# although we leave the line commented out in order to use the default context.
# If you wish to specify a different context, uncomment the line below.
#os.environ['CRDS_CONTEXT'] = 'jwst_1322.pmap' # CRDS context for 1.17.1
# Check whether the local CRDS cache directory has been set.
# If not, set it to the user home directory
if (os.getenv('CRDS_PATH') is None):
os.environ['CRDS_PATH'] = os.path.join(os.path.expanduser('~'), 'crds')
# Check whether the CRDS server URL has been set. If not, set it.
if (os.getenv('CRDS_SERVER_URL') is None):
os.environ['CRDS_SERVER_URL'] = 'https://jwst-crds.stsci.edu'
# Echo CRDS path in use
print(f"CRDS local filepath: {os.environ['CRDS_PATH']}")
print(f"CRDS file server: {os.environ['CRDS_SERVER_URL']}")
if os.getenv('CRDS_CONTEXT'):
print(f"CRDS CONTEXT: {os.environ['CRDS_CONTEXT']}")
CRDS local filepath: /home/runner/crds
CRDS file server: https://jwst-crds.stsci.edu
2. Package Imports#
# Use the entire available screen width for this notebook
from IPython.display import display, HTML
display(HTML("<style>.container { width:95% !important; }</style>"))
# Basic system utilities for interacting with files
# ----------------------General Imports------------------------------------
import glob, os, importlib
import time
# Numpy
import numpy as np
# To display full ouptut of cell, not just the last result
from IPython.core.interactiveshell import InteractiveShell
InteractiveShell.ast_node_interactivity = "all"
# -----------------------Astropy/Astroquery Imports--------------------------------
# for viewing astropy images and tables
from astropy.io import fits
from astropy.table import Table
# for downloading demo files
from astroquery.mast import Observations
# ------------ Pipeline and Visualization Imports -----------------------
# for visualizing images
import matplotlib.pyplot as plt
# for JWST calibration pipeline
import jwst
import crds
from jwst.pipeline import Detector1Pipeline
from jwst.pipeline import Image2Pipeline
from jwst.pipeline import Coron3Pipeline
# JWST pipeline utilities
from jwst import datamodels
from jwst.associations import asn_from_list # Tools for creating association files
from jwst.associations.lib.rules_level3 import Asn_Lv3NRCCoron # Definition of a Lvl3 association file
# Echo pipeline version and CRDS context in use
print(f"JWST Calibration Pipeline Version: {jwst.__version__}")
print(f"Using CRDS Context: {crds.get_context_name('jwst')}")
JWST Calibration Pipeline Version: 2.0.0
CRDS - INFO - Calibration SW Found: jwst 2.0.0 (/home/runner/micromamba/envs/ci-env/lib/python3.13/site-packages/jwst-2.0.0.dist-info)
Using CRDS Context: jwst_1535.pmap
# Start a timer to keep track of runtime
time0 = time.perf_counter()
3. Demo Mode Setup (ignore if not using demo data)#
If running in demonstration mode, set up the program information to
retrieve the uncalibrated data automatically from MAST using
astroquery.
MAST allows for flexibility of searching by the proposal ID and the
observation ID instead of just filenames.
We will download data from Program ID 1386 (PI: Sasha Hinkley). The science target is HIP-65426 which is taken using 2 different roll angles in observations 2 and 3 (2 total uncal files). The reference PSF is HIP-68245 taken in observation 1 using a 9-POINT-CIRCLE dither pattern (9 total uncal files). All data is observed on the NRCALONG detector with the SUB320A335R subarray and uses the F444W filter and MASK335R round coronagraphic mask.
More information about the JWST file naming conventions can be found at: https://jwst-pipeline.readthedocs.io/en/latest/jwst/data_products/file_naming.html
# Set up the program information and paths for demo program
if demo_mode:
print('Running in demonstration mode and will download example data from MAST!')
program = "01386"
data_dir = os.path.abspath(os.path.join('.', 'nrc_coron_demo_data'))
download_dir = data_dir
sci_dir = data_dir
uncal_dir = os.path.join(sci_dir, 'uncal')
# Ensure filepaths for input data exist
if not os.path.exists(uncal_dir):
os.makedirs(uncal_dir)
# Create directory if it does not exist
if not os.path.isdir(data_dir):
os.mkdir(data_dir)
Running in demonstration mode and will download example data from MAST!
Identify list of science (SCI) uncalibrated files associated with visits.
# Obtain a list of observation IDs for the specified demo program
if demo_mode:
sci_obs_id_table = Observations.query_criteria(instrument_name=["NIRCAM/CORON"],
proposal_id=program,
filters=['F444W']
)
if demo_mode:
sci_obs_id_table
| intentType | obs_collection | provenance_name | instrument_name | project | filters | wave_region | target_name | target_classification | obs_id | s_ra | s_dec | dataproduct_type | proposal_pi | calib_level | t_min | t_max | t_exptime | wavelength_region | em_min | em_max | obs_title | t_obs_release | proposal_id | proposal_type | sequence_number | s_region | jpegURL | dataURL | dataRights | mtFlag | srcDen | obsid | objID | wave_min | wave_max |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| str7 | str4 | str7 | str12 | str4 | str13 | str8 | str9 | str45 | str51 | float64 | float64 | str5 | str14 | int64 | float64 | float64 | float64 | str8 | float64 | float64 | str70 | float64 | str4 | str3 | int64 | str118 | str77 | str78 | str6 | bool | float64 | str9 | str10 | float64 | float64 |
| science | JWST | CALJWST | NIRCAM/CORON | JWST | F444W;MASKRND | INFRARED | HIP-65426 | Star; A dwarfs; Exoplanet Systems; Exoplanets | jw01386-c1020_t001_nircam_f444w-maskrnd-sub320a335r | 201.1500665548344 | -51.504577205821654 | image | Hinkley, Sasha | 3 | 59789.958721030096 | 59790.21965303241 | 1231.534 | INFRARED | 3880.0 | 4986.0 | High Contrast Imaging of Exoplanets and Exoplanetary Systems with JWST | 59790.3863773 | 1386 | ERS | -- | POLYGON 201.146807187 -51.500183361 201.156498821 -51.502415104 201.152923418 -51.508431947 201.143230679 -51.50619991 | mast:JWST/product/jw01386-c1020_t001_nircam_f444w-maskrnd-sub320a335r_i2d.jpg | mast:JWST/product/jw01386-c1020_t001_nircam_f444w-maskrnd-sub320a335r_i2d.fits | PUBLIC | False | nan | 101155383 | 1059938148 | 3880.0 | 4986.0 |
# Turn the list of visits into a list of uncalibrated data files
if demo_mode:
# Define types of files to select
file_dict = {'uncal': {'product_type': 'SCIENCE',
'productSubGroupDescription': 'UNCAL',
'filters': 'F444W;MASKRND',
'calib_level': [1]}}
# Science files
sci_files_to_download = []
# Loop over visits identifying uncalibrated files that are associated with them
for exposure in (sci_obs_id_table):
products = Observations.get_product_list(exposure)
for filetype, query_dict in file_dict.items():
filtered_products = Observations.filter_products(products, productType=query_dict['product_type'],
productSubGroupDescription=query_dict['productSubGroupDescription'],
filters=query_dict['filters'],
calib_level=query_dict['calib_level'])
sci_files_to_download.extend(filtered_products['dataURI'])
sci_files_to_download = sorted(sci_files_to_download)
print(f"Science files selected for downloading: {len(sci_files_to_download)}")
Science files selected for downloading: 11
# List the files to download
if demo_mode:
sci_files_to_download
[np.str_('mast:JWST/product/jw01386001001_0310e_00001_nrcalong_uncal.fits'),
np.str_('mast:JWST/product/jw01386001001_0310e_00002_nrcalong_uncal.fits'),
np.str_('mast:JWST/product/jw01386001001_0310e_00003_nrcalong_uncal.fits'),
np.str_('mast:JWST/product/jw01386001001_0310e_00004_nrcalong_uncal.fits'),
np.str_('mast:JWST/product/jw01386001001_0310e_00005_nrcalong_uncal.fits'),
np.str_('mast:JWST/product/jw01386001001_0310e_00006_nrcalong_uncal.fits'),
np.str_('mast:JWST/product/jw01386001001_0310e_00007_nrcalong_uncal.fits'),
np.str_('mast:JWST/product/jw01386001001_0310e_00008_nrcalong_uncal.fits'),
np.str_('mast:JWST/product/jw01386001001_0310e_00009_nrcalong_uncal.fits'),
np.str_('mast:JWST/product/jw01386002001_0310a_00001_nrcalong_uncal.fits'),
np.str_('mast:JWST/product/jw01386003001_0310a_00001_nrcalong_uncal.fits')]
Download all the uncal files and place them into the appropriate directories.
# Download the demo data if it does not already exist
if demo_mode:
for filename in sci_files_to_download:
sci_manifest = Observations.download_file(filename,
local_path=uncal_dir)
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw01386001001_0310e_00001_nrcalong_uncal.fits to /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/uncal/jw01386001001_0310e_00001_nrcalong_uncal.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw01386001001_0310e_00002_nrcalong_uncal.fits to /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/uncal/jw01386001001_0310e_00002_nrcalong_uncal.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw01386001001_0310e_00003_nrcalong_uncal.fits to /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/uncal/jw01386001001_0310e_00003_nrcalong_uncal.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw01386001001_0310e_00004_nrcalong_uncal.fits to /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/uncal/jw01386001001_0310e_00004_nrcalong_uncal.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw01386001001_0310e_00005_nrcalong_uncal.fits to /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/uncal/jw01386001001_0310e_00005_nrcalong_uncal.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw01386001001_0310e_00006_nrcalong_uncal.fits to /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/uncal/jw01386001001_0310e_00006_nrcalong_uncal.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw01386001001_0310e_00007_nrcalong_uncal.fits to /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/uncal/jw01386001001_0310e_00007_nrcalong_uncal.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw01386001001_0310e_00008_nrcalong_uncal.fits to /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/uncal/jw01386001001_0310e_00008_nrcalong_uncal.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw01386001001_0310e_00009_nrcalong_uncal.fits to /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/uncal/jw01386001001_0310e_00009_nrcalong_uncal.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw01386002001_0310a_00001_nrcalong_uncal.fits to /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/uncal/jw01386002001_0310a_00001_nrcalong_uncal.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:JWST/product/jw01386003001_0310a_00001_nrcalong_uncal.fits to /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/uncal/jw01386003001_0310a_00001_nrcalong_uncal.fits ...
[Done]
4. Directory Setup#
Set up detailed paths to input/output stages here.
# Define output subdirectories to keep science data products organized
uncal_dir = os.path.join(sci_dir, 'uncal') # Uncalibrated pipeline inputs should be here
det1_dir = os.path.join(sci_dir, 'stage1') # calwebb_detector1 pipeline outputs will go here
image2_dir = os.path.join(sci_dir, 'stage2') # calwebb_image2 pipeline outputs will go here
coron3_dir = os.path.join(sci_dir, 'stage3') # calwebb_coron3 pipeline outputs will go here
coron3_psflib_dir = os.path.join(data_dir, 'stage3_psflib/') # calwebb_coron3 pipeline outputs using the PSF library will go here
# We need to check that the desired output directories exist, and if not create them
if not os.path.exists(det1_dir):
os.makedirs(det1_dir)
if not os.path.exists(image2_dir):
os.makedirs(image2_dir)
if not os.path.exists(coron3_dir):
os.makedirs(coron3_dir)
if not os.path.exists(coron3_psflib_dir):
os.makedirs(coron3_psflib_dir)
Look at the first file to determine exposure parameters and practice using JWST datamodels to show basic exposure information.
# List uncal files
uncal_files = sorted(glob.glob(os.path.join(uncal_dir, '*_uncal.fits')))
colnames = ('Instrument', 'Filter', 'Pupil', 'Number of Integrations', 'Number of Groups',
'Readout pattern', 'Dither position number')
dtypes = ('S7', 'S10', 'S10', 'i4', 'i4', 'S15', 'i4')
meta_check = Table(names=(colnames), dtype=dtypes)
# Open example files and get metadata for display
if len(uncal_files) > 0:
lw_examine = datamodels.open(uncal_files[0])
lw_row = [lw_examine.meta.instrument.name, lw_examine.meta.instrument.filter,
lw_examine.meta.instrument.pupil, lw_examine.meta.exposure.nints,
lw_examine.meta.exposure.ngroups, lw_examine.meta.exposure.readpatt,
lw_examine.meta.dither.position_number]
meta_check.add_row(lw_row)
# Print out exposure info
meta_check
| Instrument | Filter | Pupil | Number of Integrations | Number of Groups | Readout pattern | Dither position number |
|---|---|---|---|---|---|---|
| bytes7 | bytes10 | bytes10 | int32 | int32 | bytes15 | int32 |
| NIRCAM | F444W | MASKRND | 2 | 4 | MEDIUM8 | 1 |
# Print out the time benchmark
time_det1 = time.perf_counter()
print(f"Runtime so far: {time_det1 - time0:0.0f} seconds")
Runtime so far: 8 seconds
5. Detector1 Pipeline#
Run the datasets through the
Detector1
stage of the pipeline to apply detector level calibrations and create a
countrate data product where slopes are fitted to the integration ramps.
These *_rate.fits products are 2D (nrows x ncols), averaged over all
integrations. 3D countrate data products (*_rateints.fits) are also
created (nintegrations x nrows x ncols) which have the fitted ramp slopes
for each integration.
By default, all steps in the Detector1 stage of the pipeline are run for
NIRCam except the ipc correction step and the gain_scale step. Note
that the persistence step
has been turned off by default starting with CRDS context jwst_1264.pmap.
This step does not automatically correct the science data for persistence.
The persistence step creates a *_trapsfilled.fits file which is a model
that records the number of traps filled at each pixel at the end of an exposure.
This file would be used as an input to the persistence step, via the input_trapsfilled
argument, to correct the subsequent science exposure for persistence. Since persistence
is not well calibrated for NIRCam, the step has been turned off in order to speed up
calibration and to not create empty *_trapsfilled.fits files. This step
can be turned on when running the pipeline by setting skip = False in the cell below using a dictionary.
An additional 1/f noise-cleaning algorithm, clean_flicker_noise, has been implemented at the group stage in the Detector1Pipeline. This step is also off by default. The cell bellow provides an example on how to turn it on and change parameters.
As of CRDS context jwst_1155.pmap and later, the
jump step
of the Detector1 stage of the pipeline will remove signal associated
with snowballs
in the NIRCam imaging and coronagraphy modes. This correction is turned on using the parameter
expand_large_events=True. This and other parameters related to the snowball correction
are specified in the pars-jumpstep parameter reference file. Users may wish to alter
parameters to optimize removal of snowball residuals. Available parameters are discussed
in the Detection and Flagging of Showers and Snowballs in JWST Technical Report (Regan 2023).
# Set up a dictionary to define how the Detector1 pipeline should be configured
# Boilerplate dictionary setup
det1dict = {}
det1dict['group_scale'], det1dict['dq_init'], det1dict['saturation'] = {}, {}, {}
det1dict['ipc'], det1dict['superbias'], det1dict['refpix'] = {}, {}, {}
det1dict['linearity'], det1dict['persistence'], det1dict['dark_current'], = {}, {}, {}
det1dict['charge_migration'], det1dict['jump'], det1dict['clean_flicker_noise'] = {}, {}, {}
det1dict['ramp_fit'], det1dict['gain_scale'] = {}, {}
# Overrides for whether or not certain steps should be skipped
# skipping the persistence step
det1dict['persistence']['skip'] = True
# Overrides for various reference files
# Files should be in the base local directory or provide full path
#det1dict['dq_init']['override_mask'] = 'myfile.fits' # Bad pixel mask
#det1dict['saturation']['override_saturation'] = 'myfile.fits' # Saturation
#det1dict['reset']['override_reset'] = 'myfile.fits' # Reset
#det1dict['linearity']['override_linearity'] = 'myfile.fits' # Linearity
#det1dict['rscd']['override_rscd'] = 'myfile.fits' # RSCD
#det1dict['dark_current']['override_dark'] = 'myfile.fits' # Dark current subtraction
#det1dict['jump']['override_gain'] = 'myfile.fits' # Gain used by jump step
#det1dict['ramp_fit']['override_gain'] = 'myfile.fits' # Gain used by ramp fitting step
#det1dict['jump']['override_readnoise'] = 'myfile.fits' # Read noise used by jump step
#det1dict['ramp_fit']['override_readnoise'] = 'myfile.fits' # Read noise used by ramp fitting step
# Turn on multi-core processing (This is off by default). Choose what fraction
# of cores to use (quarter, half, all, or an integer number)
det1dict['jump']['maximum_cores'] = 'half'
# Explicitly turn on snowball correction. (Even though it is on by default)
det1dict['jump']['expand_large_events'] = True
# Turn on 1/f correction if desired
# For guidance see https://jwst-docs.stsci.edu/known-issues-with-jwst-data/1-f-noise
#det1dict['clean_flicker_noise']['skip'] = False
#det1dict['clean_flicker_noise']['fit_method'] = 'median' # 'median' or 'fft'
#det1dict['clean_flicker_noise']['background_method'] = 'median' # 'median' or 'model'
#det1dict['clean_flicker_noise']['fit_by_channel'] = False
Run the Detector1 pipeline on all input data, regardless of filter.
# Run Detector1 stage of pipeline, specifying:
# output directory to save *_rate.fits files
# save_results flag set to True so the rate files are saved
if dodet1:
for uncal in uncal_files:
rate_result = Detector1Pipeline.call(uncal, output_dir=det1_dir, steps=det1dict, save_results=True)
else:
print('Skipping Detector1 processing')
2026-04-15 20:13:41,970 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_system_datalvl_0002.rmap 694 bytes (1 / 224 files) (0 / 796.2 K bytes)
2026-04-15 20:13:42,054 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_system_calver_0069.rmap 5.8 K bytes (2 / 224 files) (694 / 796.2 K bytes)
2026-04-15 20:13:42,141 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_system_0064.imap 385 bytes (3 / 224 files) (6.5 K / 796.2 K bytes)
2026-04-15 20:13:42,235 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_wavelengthrange_0024.rmap 1.4 K bytes (4 / 224 files) (6.9 K / 796.2 K bytes)
2026-04-15 20:13:42,345 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_wavecorr_0005.rmap 884 bytes (5 / 224 files) (8.3 K / 796.2 K bytes)
2026-04-15 20:13:42,437 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_superbias_0089.rmap 39.4 K bytes (6 / 224 files) (9.1 K / 796.2 K bytes)
2026-04-15 20:13:42,554 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_sirskernel_0002.rmap 704 bytes (7 / 224 files) (48.5 K / 796.2 K bytes)
2026-04-15 20:13:42,642 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_sflat_0027.rmap 20.6 K bytes (8 / 224 files) (49.2 K / 796.2 K bytes)
2026-04-15 20:13:42,742 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_saturation_0018.rmap 2.0 K bytes (9 / 224 files) (69.8 K / 796.2 K bytes)
2026-04-15 20:13:42,828 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_refpix_0015.rmap 1.6 K bytes (10 / 224 files) (71.9 K / 796.2 K bytes)
2026-04-15 20:13:42,910 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_readnoise_0025.rmap 2.6 K bytes (11 / 224 files) (73.4 K / 796.2 K bytes)
2026-04-15 20:13:42,992 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_psf_0002.rmap 687 bytes (12 / 224 files) (76.0 K / 796.2 K bytes)
2026-04-15 20:13:43,076 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_pictureframe_0002.rmap 886 bytes (13 / 224 files) (76.7 K / 796.2 K bytes)
2026-04-15 20:13:43,161 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_photom_0013.rmap 958 bytes (14 / 224 files) (77.6 K / 796.2 K bytes)
2026-04-15 20:13:43,253 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_pathloss_0011.rmap 1.2 K bytes (15 / 224 files) (78.5 K / 796.2 K bytes)
2026-04-15 20:13:43,339 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_pars-whitelightstep_0001.rmap 777 bytes (16 / 224 files) (79.7 K / 796.2 K bytes)
2026-04-15 20:13:43,424 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_pars-tso3pipeline_0001.rmap 786 bytes (17 / 224 files) (80.5 K / 796.2 K bytes)
2026-04-15 20:13:43,501 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_pars-spec2pipeline_0013.rmap 2.1 K bytes (18 / 224 files) (81.3 K / 796.2 K bytes)
2026-04-15 20:13:43,580 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_pars-resamplespecstep_0002.rmap 709 bytes (19 / 224 files) (83.4 K / 796.2 K bytes)
2026-04-15 20:13:43,659 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_pars-refpixstep_0003.rmap 910 bytes (20 / 224 files) (84.1 K / 796.2 K bytes)
2026-04-15 20:13:43,754 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_pars-pixelreplacestep_0001.rmap 818 bytes (21 / 224 files) (85.0 K / 796.2 K bytes)
2026-04-15 20:13:43,845 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_pars-pictureframestep_0001.rmap 818 bytes (22 / 224 files) (85.8 K / 796.2 K bytes)
2026-04-15 20:13:43,932 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_pars-outlierdetectionstep_0005.rmap 1.1 K bytes (23 / 224 files) (86.7 K / 796.2 K bytes)
2026-04-15 20:13:44,016 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_pars-jumpstep_0006.rmap 810 bytes (24 / 224 files) (87.8 K / 796.2 K bytes)
2026-04-15 20:13:44,094 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_pars-image2pipeline_0008.rmap 1.0 K bytes (25 / 224 files) (88.6 K / 796.2 K bytes)
2026-04-15 20:13:44,179 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_pars-extract1dstep_0001.rmap 794 bytes (26 / 224 files) (89.6 K / 796.2 K bytes)
2026-04-15 20:13:44,264 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_pars-detector1pipeline_0004.rmap 1.1 K bytes (27 / 224 files) (90.4 K / 796.2 K bytes)
2026-04-15 20:13:44,351 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_pars-darkpipeline_0003.rmap 872 bytes (28 / 224 files) (91.5 K / 796.2 K bytes)
2026-04-15 20:13:44,443 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_pars-darkcurrentstep_0003.rmap 1.8 K bytes (29 / 224 files) (92.4 K / 796.2 K bytes)
2026-04-15 20:13:44,529 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_pars-cubebuildstep_0001.rmap 862 bytes (30 / 224 files) (94.2 K / 796.2 K bytes)
2026-04-15 20:13:44,624 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_pars-cleanflickernoisestep_0002.rmap 983 bytes (31 / 224 files) (95.1 K / 796.2 K bytes)
2026-04-15 20:13:44,719 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_pars-adaptivetracemodelstep_0002.rmap 997 bytes (32 / 224 files) (96.1 K / 796.2 K bytes)
2026-04-15 20:13:44,805 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_ote_0030.rmap 1.3 K bytes (33 / 224 files) (97.1 K / 796.2 K bytes)
2026-04-15 20:13:44,890 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_msaoper_0018.rmap 1.6 K bytes (34 / 224 files) (98.3 K / 796.2 K bytes)
2026-04-15 20:13:44,985 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_msa_0027.rmap 1.3 K bytes (35 / 224 files) (100.0 K / 796.2 K bytes)
2026-04-15 20:13:45,072 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_mask_0045.rmap 4.9 K bytes (36 / 224 files) (101.2 K / 796.2 K bytes)
2026-04-15 20:13:45,153 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_linearity_0017.rmap 1.6 K bytes (37 / 224 files) (106.2 K / 796.2 K bytes)
2026-04-15 20:13:45,242 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_ipc_0006.rmap 876 bytes (38 / 224 files) (107.7 K / 796.2 K bytes)
2026-04-15 20:13:45,321 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_ifuslicer_0018.rmap 1.5 K bytes (39 / 224 files) (108.6 K / 796.2 K bytes)
2026-04-15 20:13:45,404 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_ifupost_0020.rmap 1.5 K bytes (40 / 224 files) (110.1 K / 796.2 K bytes)
2026-04-15 20:13:45,480 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_ifufore_0017.rmap 1.5 K bytes (41 / 224 files) (111.6 K / 796.2 K bytes)
2026-04-15 20:13:45,569 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_gain_0023.rmap 1.8 K bytes (42 / 224 files) (113.1 K / 796.2 K bytes)
2026-04-15 20:13:45,659 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_fpa_0028.rmap 1.3 K bytes (43 / 224 files) (114.9 K / 796.2 K bytes)
2026-04-15 20:13:45,742 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_fore_0026.rmap 5.0 K bytes (44 / 224 files) (116.2 K / 796.2 K bytes)
2026-04-15 20:13:45,820 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_flat_0015.rmap 3.8 K bytes (45 / 224 files) (121.1 K / 796.2 K bytes)
2026-04-15 20:13:45,905 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_fflat_0030.rmap 7.2 K bytes (46 / 224 files) (124.9 K / 796.2 K bytes)
2026-04-15 20:13:45,992 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_extract1d_0018.rmap 2.3 K bytes (47 / 224 files) (132.1 K / 796.2 K bytes)
2026-04-15 20:13:46,080 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_disperser_0028.rmap 5.7 K bytes (48 / 224 files) (134.4 K / 796.2 K bytes)
2026-04-15 20:13:46,169 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_dflat_0007.rmap 1.1 K bytes (49 / 224 files) (140.1 K / 796.2 K bytes)
2026-04-15 20:13:46,256 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_dark_0085.rmap 37.4 K bytes (50 / 224 files) (141.3 K / 796.2 K bytes)
2026-04-15 20:13:46,361 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_cubepar_0015.rmap 966 bytes (51 / 224 files) (178.7 K / 796.2 K bytes)
2026-04-15 20:13:46,441 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_collimator_0026.rmap 1.3 K bytes (52 / 224 files) (179.6 K / 796.2 K bytes)
2026-04-15 20:13:46,526 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_camera_0026.rmap 1.3 K bytes (53 / 224 files) (181.0 K / 796.2 K bytes)
2026-04-15 20:13:46,613 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_barshadow_0007.rmap 1.8 K bytes (54 / 224 files) (182.3 K / 796.2 K bytes)
2026-04-15 20:13:46,693 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_area_0019.rmap 6.8 K bytes (55 / 224 files) (184.1 K / 796.2 K bytes)
2026-04-15 20:13:46,782 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_apcorr_0009.rmap 5.6 K bytes (56 / 224 files) (190.9 K / 796.2 K bytes)
2026-04-15 20:13:46,859 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nirspec_0432.imap 6.2 K bytes (57 / 224 files) (196.5 K / 796.2 K bytes)
2026-04-15 20:13:46,949 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_wavelengthrange_0008.rmap 897 bytes (58 / 224 files) (202.6 K / 796.2 K bytes)
2026-04-15 20:13:47,031 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_trappars_0004.rmap 753 bytes (59 / 224 files) (203.5 K / 796.2 K bytes)
2026-04-15 20:13:47,113 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_trapdensity_0005.rmap 705 bytes (60 / 224 files) (204.3 K / 796.2 K bytes)
2026-04-15 20:13:47,204 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_throughput_0005.rmap 1.3 K bytes (61 / 224 files) (205.0 K / 796.2 K bytes)
2026-04-15 20:13:47,289 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_superbias_0035.rmap 8.3 K bytes (62 / 224 files) (206.2 K / 796.2 K bytes)
2026-04-15 20:13:47,370 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_specwcs_0017.rmap 3.1 K bytes (63 / 224 files) (214.5 K / 796.2 K bytes)
2026-04-15 20:13:47,454 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_specprofile_0010.rmap 2.5 K bytes (64 / 224 files) (217.7 K / 796.2 K bytes)
2026-04-15 20:13:47,539 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_speckernel_0006.rmap 1.0 K bytes (65 / 224 files) (220.2 K / 796.2 K bytes)
2026-04-15 20:13:47,624 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_sirskernel_0002.rmap 700 bytes (66 / 224 files) (221.2 K / 796.2 K bytes)
2026-04-15 20:13:47,710 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_saturation_0015.rmap 829 bytes (67 / 224 files) (221.9 K / 796.2 K bytes)
2026-04-15 20:13:47,798 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_readnoise_0011.rmap 987 bytes (68 / 224 files) (222.7 K / 796.2 K bytes)
2026-04-15 20:13:47,880 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_photom_0041.rmap 1.3 K bytes (69 / 224 files) (223.7 K / 796.2 K bytes)
2026-04-15 20:13:47,968 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_persat_0007.rmap 674 bytes (70 / 224 files) (225.0 K / 796.2 K bytes)
2026-04-15 20:13:48,062 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_pathloss_0003.rmap 758 bytes (71 / 224 files) (225.6 K / 796.2 K bytes)
2026-04-15 20:13:48,146 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_pastasoss_0006.rmap 818 bytes (72 / 224 files) (226.4 K / 796.2 K bytes)
2026-04-15 20:13:48,233 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_pars-wfsscontamstep_0001.rmap 797 bytes (73 / 224 files) (227.2 K / 796.2 K bytes)
2026-04-15 20:13:48,317 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_pars-undersamplecorrectionstep_0001.rmap 904 bytes (74 / 224 files) (228.0 K / 796.2 K bytes)
2026-04-15 20:13:48,401 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_pars-tweakregstep_0012.rmap 3.1 K bytes (75 / 224 files) (228.9 K / 796.2 K bytes)
2026-04-15 20:13:48,488 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_pars-spec2pipeline_0009.rmap 1.2 K bytes (76 / 224 files) (232.0 K / 796.2 K bytes)
2026-04-15 20:13:48,575 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_pars-sourcecatalogstep_0002.rmap 2.3 K bytes (77 / 224 files) (233.3 K / 796.2 K bytes)
2026-04-15 20:13:48,656 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_pars-resamplestep_0002.rmap 687 bytes (78 / 224 files) (235.6 K / 796.2 K bytes)
2026-04-15 20:13:48,738 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_pars-outlierdetectionstep_0004.rmap 2.7 K bytes (79 / 224 files) (236.3 K / 796.2 K bytes)
2026-04-15 20:13:48,824 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_pars-jumpstep_0007.rmap 6.4 K bytes (80 / 224 files) (239.0 K / 796.2 K bytes)
2026-04-15 20:13:48,919 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_pars-image2pipeline_0005.rmap 1.0 K bytes (81 / 224 files) (245.3 K / 796.2 K bytes)
2026-04-15 20:13:49,006 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_pars-detector1pipeline_0005.rmap 1.5 K bytes (82 / 224 files) (246.3 K / 796.2 K bytes)
2026-04-15 20:13:49,095 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_pars-darkpipeline_0002.rmap 868 bytes (83 / 224 files) (247.9 K / 796.2 K bytes)
2026-04-15 20:13:49,191 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_pars-darkcurrentstep_0001.rmap 591 bytes (84 / 224 files) (248.8 K / 796.2 K bytes)
2026-04-15 20:13:49,272 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_pars-cleanflickernoisestep_0003.rmap 1.2 K bytes (85 / 224 files) (249.3 K / 796.2 K bytes)
2026-04-15 20:13:49,370 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_pars-chargemigrationstep_0005.rmap 5.7 K bytes (86 / 224 files) (250.6 K / 796.2 K bytes)
2026-04-15 20:13:49,447 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_pars-backgroundstep_0003.rmap 822 bytes (87 / 224 files) (256.2 K / 796.2 K bytes)
2026-04-15 20:13:49,535 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_nrm_0005.rmap 663 bytes (88 / 224 files) (257.0 K / 796.2 K bytes)
2026-04-15 20:13:49,619 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_mask_0025.rmap 1.6 K bytes (89 / 224 files) (257.7 K / 796.2 K bytes)
2026-04-15 20:13:49,706 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_linearity_0022.rmap 961 bytes (90 / 224 files) (259.3 K / 796.2 K bytes)
2026-04-15 20:13:49,794 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_ipc_0007.rmap 651 bytes (91 / 224 files) (260.3 K / 796.2 K bytes)
2026-04-15 20:13:49,873 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_gain_0011.rmap 797 bytes (92 / 224 files) (260.9 K / 796.2 K bytes)
2026-04-15 20:13:49,958 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_flat_0023.rmap 5.9 K bytes (93 / 224 files) (261.7 K / 796.2 K bytes)
2026-04-15 20:13:50,046 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_filteroffset_0010.rmap 853 bytes (94 / 224 files) (267.6 K / 796.2 K bytes)
2026-04-15 20:13:50,133 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_extract1d_0007.rmap 905 bytes (95 / 224 files) (268.4 K / 796.2 K bytes)
2026-04-15 20:13:50,226 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_drizpars_0004.rmap 519 bytes (96 / 224 files) (269.3 K / 796.2 K bytes)
2026-04-15 20:13:50,326 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_distortion_0025.rmap 3.4 K bytes (97 / 224 files) (269.9 K / 796.2 K bytes)
2026-04-15 20:13:50,411 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_dark_0039.rmap 8.3 K bytes (98 / 224 files) (273.3 K / 796.2 K bytes)
2026-04-15 20:13:50,496 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_bkg_0005.rmap 3.1 K bytes (99 / 224 files) (281.6 K / 796.2 K bytes)
2026-04-15 20:13:50,587 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_area_0014.rmap 2.7 K bytes (100 / 224 files) (284.7 K / 796.2 K bytes)
2026-04-15 20:13:50,666 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_apcorr_0010.rmap 4.3 K bytes (101 / 224 files) (287.4 K / 796.2 K bytes)
2026-04-15 20:13:50,752 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_abvegaoffset_0004.rmap 1.4 K bytes (102 / 224 files) (291.7 K / 796.2 K bytes)
2026-04-15 20:13:50,834 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_niriss_0308.imap 5.9 K bytes (103 / 224 files) (293.0 K / 796.2 K bytes)
2026-04-15 20:13:50,927 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nircam_wavelengthrange_0012.rmap 996 bytes (104 / 224 files) (299.0 K / 796.2 K bytes)
2026-04-15 20:13:51,012 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nircam_tsophot_0003.rmap 896 bytes (105 / 224 files) (300.0 K / 796.2 K bytes)
2026-04-15 20:13:51,104 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nircam_trappars_0003.rmap 1.6 K bytes (106 / 224 files) (300.9 K / 796.2 K bytes)
2026-04-15 20:13:51,188 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nircam_trapdensity_0003.rmap 1.6 K bytes (107 / 224 files) (302.5 K / 796.2 K bytes)
2026-04-15 20:13:51,272 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nircam_superbias_0022.rmap 25.5 K bytes (108 / 224 files) (304.1 K / 796.2 K bytes)
2026-04-15 20:13:51,385 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nircam_specwcs_0027.rmap 8.0 K bytes (109 / 224 files) (329.6 K / 796.2 K bytes)
2026-04-15 20:13:51,467 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nircam_sirskernel_0003.rmap 671 bytes (110 / 224 files) (337.6 K / 796.2 K bytes)
2026-04-15 20:13:51,550 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nircam_saturation_0011.rmap 2.8 K bytes (111 / 224 files) (338.3 K / 796.2 K bytes)
2026-04-15 20:13:51,654 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nircam_regions_0003.rmap 3.4 K bytes (112 / 224 files) (341.1 K / 796.2 K bytes)
2026-04-15 20:13:51,739 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nircam_readnoise_0028.rmap 27.1 K bytes (113 / 224 files) (344.5 K / 796.2 K bytes)
2026-04-15 20:13:51,845 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nircam_psfmask_0008.rmap 28.4 K bytes (114 / 224 files) (371.7 K / 796.2 K bytes)
2026-04-15 20:13:51,950 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nircam_photom_0031.rmap 3.4 K bytes (115 / 224 files) (400.0 K / 796.2 K bytes)
2026-04-15 20:13:52,026 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nircam_persat_0005.rmap 1.6 K bytes (116 / 224 files) (403.5 K / 796.2 K bytes)
2026-04-15 20:13:52,107 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nircam_pars-whitelightstep_0004.rmap 2.0 K bytes (117 / 224 files) (405.0 K / 796.2 K bytes)
2026-04-15 20:13:52,190 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nircam_pars-wfsscontamstep_0001.rmap 797 bytes (118 / 224 files) (407.0 K / 796.2 K bytes)
2026-04-15 20:13:52,280 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nircam_pars-tweakregstep_0003.rmap 4.5 K bytes (119 / 224 files) (407.8 K / 796.2 K bytes)
2026-04-15 20:13:52,361 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nircam_pars-tsophotometrystep_0003.rmap 1.1 K bytes (120 / 224 files) (412.3 K / 796.2 K bytes)
2026-04-15 20:13:52,446 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nircam_pars-spec2pipeline_0009.rmap 984 bytes (121 / 224 files) (413.4 K / 796.2 K bytes)
2026-04-15 20:13:52,531 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nircam_pars-sourcecatalogstep_0002.rmap 4.6 K bytes (122 / 224 files) (414.4 K / 796.2 K bytes)
2026-04-15 20:13:52,616 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nircam_pars-resamplestep_0002.rmap 687 bytes (123 / 224 files) (419.0 K / 796.2 K bytes)
2026-04-15 20:13:52,707 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nircam_pars-outlierdetectionstep_0003.rmap 940 bytes (124 / 224 files) (419.7 K / 796.2 K bytes)
2026-04-15 20:13:52,792 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nircam_pars-jumpstep_0005.rmap 806 bytes (125 / 224 files) (420.6 K / 796.2 K bytes)
2026-04-15 20:13:52,870 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nircam_pars-image2pipeline_0004.rmap 1.1 K bytes (126 / 224 files) (421.4 K / 796.2 K bytes)
2026-04-15 20:13:52,963 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nircam_pars-detector1pipeline_0007.rmap 1.7 K bytes (127 / 224 files) (422.6 K / 796.2 K bytes)
2026-04-15 20:13:53,047 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nircam_pars-darkpipeline_0002.rmap 868 bytes (128 / 224 files) (424.3 K / 796.2 K bytes)
2026-04-15 20:13:53,129 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nircam_pars-darkcurrentstep_0001.rmap 618 bytes (129 / 224 files) (425.2 K / 796.2 K bytes)
2026-04-15 20:13:53,208 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nircam_pars-backgroundstep_0003.rmap 822 bytes (130 / 224 files) (425.8 K / 796.2 K bytes)
2026-04-15 20:13:53,289 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nircam_mask_0014.rmap 5.4 K bytes (131 / 224 files) (426.6 K / 796.2 K bytes)
2026-04-15 20:13:53,370 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nircam_linearity_0011.rmap 2.4 K bytes (132 / 224 files) (432.0 K / 796.2 K bytes)
2026-04-15 20:13:53,451 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nircam_ipc_0003.rmap 2.0 K bytes (133 / 224 files) (434.4 K / 796.2 K bytes)
2026-04-15 20:13:53,531 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nircam_gain_0016.rmap 2.1 K bytes (134 / 224 files) (436.4 K / 796.2 K bytes)
2026-04-15 20:13:53,616 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nircam_flat_0028.rmap 51.7 K bytes (135 / 224 files) (438.5 K / 796.2 K bytes)
2026-04-15 20:13:53,739 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nircam_filteroffset_0004.rmap 1.4 K bytes (136 / 224 files) (490.2 K / 796.2 K bytes)
2026-04-15 20:13:53,831 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nircam_extract1d_0007.rmap 2.2 K bytes (137 / 224 files) (491.6 K / 796.2 K bytes)
2026-04-15 20:13:53,917 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nircam_drizpars_0001.rmap 519 bytes (138 / 224 files) (493.8 K / 796.2 K bytes)
2026-04-15 20:13:54,001 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nircam_distortion_0034.rmap 53.4 K bytes (139 / 224 files) (494.3 K / 796.2 K bytes)
2026-04-15 20:13:54,130 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nircam_dark_0054.rmap 33.9 K bytes (140 / 224 files) (547.6 K / 796.2 K bytes)
2026-04-15 20:13:54,244 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nircam_bkg_0002.rmap 7.0 K bytes (141 / 224 files) (581.5 K / 796.2 K bytes)
2026-04-15 20:13:54,332 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nircam_area_0012.rmap 33.5 K bytes (142 / 224 files) (588.5 K / 796.2 K bytes)
2026-04-15 20:13:54,435 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nircam_apcorr_0009.rmap 4.3 K bytes (143 / 224 files) (622.0 K / 796.2 K bytes)
2026-04-15 20:13:54,518 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nircam_abvegaoffset_0004.rmap 1.3 K bytes (144 / 224 files) (626.2 K / 796.2 K bytes)
2026-04-15 20:13:54,603 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_nircam_0354.imap 5.8 K bytes (145 / 224 files) (627.5 K / 796.2 K bytes)
2026-04-15 20:13:54,682 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_wavelengthrange_0030.rmap 1.0 K bytes (146 / 224 files) (633.3 K / 796.2 K bytes)
2026-04-15 20:13:54,770 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_tsophot_0004.rmap 882 bytes (147 / 224 files) (634.3 K / 796.2 K bytes)
2026-04-15 20:13:54,854 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_straymask_0009.rmap 987 bytes (148 / 224 files) (635.2 K / 796.2 K bytes)
2026-04-15 20:13:54,941 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_specwcs_0048.rmap 5.9 K bytes (149 / 224 files) (636.2 K / 796.2 K bytes)
2026-04-15 20:13:55,020 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_saturation_0015.rmap 1.2 K bytes (150 / 224 files) (642.1 K / 796.2 K bytes)
2026-04-15 20:13:55,109 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_rscd_0010.rmap 1.0 K bytes (151 / 224 files) (643.3 K / 796.2 K bytes)
2026-04-15 20:13:55,189 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_resol_0006.rmap 790 bytes (152 / 224 files) (644.3 K / 796.2 K bytes)
2026-04-15 20:13:55,274 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_reset_0026.rmap 3.9 K bytes (153 / 224 files) (645.1 K / 796.2 K bytes)
2026-04-15 20:13:55,357 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_regions_0036.rmap 4.4 K bytes (154 / 224 files) (649.0 K / 796.2 K bytes)
2026-04-15 20:13:55,439 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_readnoise_0023.rmap 1.6 K bytes (155 / 224 files) (653.3 K / 796.2 K bytes)
2026-04-15 20:13:55,520 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_psfmask_0009.rmap 2.1 K bytes (156 / 224 files) (655.0 K / 796.2 K bytes)
2026-04-15 20:13:55,602 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_psf_0008.rmap 2.6 K bytes (157 / 224 files) (657.1 K / 796.2 K bytes)
2026-04-15 20:13:55,686 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_photom_0063.rmap 3.9 K bytes (158 / 224 files) (659.7 K / 796.2 K bytes)
2026-04-15 20:13:55,766 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_pathloss_0005.rmap 866 bytes (159 / 224 files) (663.6 K / 796.2 K bytes)
2026-04-15 20:13:55,845 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_pars-whitelightstep_0003.rmap 912 bytes (160 / 224 files) (664.4 K / 796.2 K bytes)
2026-04-15 20:13:55,927 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_pars-wfsscontamstep_0001.rmap 787 bytes (161 / 224 files) (665.4 K / 796.2 K bytes)
2026-04-15 20:13:56,013 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_pars-tweakregstep_0003.rmap 1.8 K bytes (162 / 224 files) (666.1 K / 796.2 K bytes)
2026-04-15 20:13:56,093 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_pars-tsophotometrystep_0003.rmap 2.7 K bytes (163 / 224 files) (668.0 K / 796.2 K bytes)
2026-04-15 20:13:56,178 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_pars-spec3pipeline_0011.rmap 886 bytes (164 / 224 files) (670.6 K / 796.2 K bytes)
2026-04-15 20:13:56,257 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_pars-spec2pipeline_0013.rmap 1.4 K bytes (165 / 224 files) (671.5 K / 796.2 K bytes)
2026-04-15 20:13:56,339 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_pars-sourcecatalogstep_0003.rmap 1.9 K bytes (166 / 224 files) (672.9 K / 796.2 K bytes)
2026-04-15 20:13:56,424 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_pars-resamplestep_0002.rmap 677 bytes (167 / 224 files) (674.9 K / 796.2 K bytes)
2026-04-15 20:13:56,504 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_pars-resamplespecstep_0002.rmap 706 bytes (168 / 224 files) (675.5 K / 796.2 K bytes)
2026-04-15 20:13:56,594 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_pars-outlierdetectionstep_0020.rmap 3.4 K bytes (169 / 224 files) (676.2 K / 796.2 K bytes)
2026-04-15 20:13:56,680 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_pars-jumpstep_0011.rmap 1.6 K bytes (170 / 224 files) (679.6 K / 796.2 K bytes)
2026-04-15 20:13:56,772 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_pars-image2pipeline_0010.rmap 1.1 K bytes (171 / 224 files) (681.2 K / 796.2 K bytes)
2026-04-15 20:13:56,858 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_pars-extract1dstep_0003.rmap 807 bytes (172 / 224 files) (682.3 K / 796.2 K bytes)
2026-04-15 20:13:56,948 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_pars-emicorrstep_0003.rmap 796 bytes (173 / 224 files) (683.1 K / 796.2 K bytes)
2026-04-15 20:13:57,049 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_pars-detector1pipeline_0010.rmap 1.6 K bytes (174 / 224 files) (683.9 K / 796.2 K bytes)
2026-04-15 20:13:57,135 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_pars-darkpipeline_0002.rmap 860 bytes (175 / 224 files) (685.5 K / 796.2 K bytes)
2026-04-15 20:13:57,215 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_pars-darkcurrentstep_0002.rmap 683 bytes (176 / 224 files) (686.3 K / 796.2 K bytes)
2026-04-15 20:13:57,301 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_pars-backgroundstep_0003.rmap 814 bytes (177 / 224 files) (687.0 K / 796.2 K bytes)
2026-04-15 20:13:57,389 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_pars-adaptivetracemodelstep_0002.rmap 979 bytes (178 / 224 files) (687.8 K / 796.2 K bytes)
2026-04-15 20:13:57,481 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_mrsxartcorr_0002.rmap 2.2 K bytes (179 / 224 files) (688.8 K / 796.2 K bytes)
2026-04-15 20:13:57,566 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_mrsptcorr_0005.rmap 2.0 K bytes (180 / 224 files) (691.0 K / 796.2 K bytes)
2026-04-15 20:13:57,656 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_mask_0036.rmap 8.6 K bytes (181 / 224 files) (692.9 K / 796.2 K bytes)
2026-04-15 20:13:57,738 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_linearity_0018.rmap 2.8 K bytes (182 / 224 files) (701.6 K / 796.2 K bytes)
2026-04-15 20:13:57,821 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_ipc_0008.rmap 700 bytes (183 / 224 files) (704.4 K / 796.2 K bytes)
2026-04-15 20:13:57,906 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_gain_0013.rmap 3.9 K bytes (184 / 224 files) (705.1 K / 796.2 K bytes)
2026-04-15 20:13:57,989 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_fringefreq_0003.rmap 1.4 K bytes (185 / 224 files) (709.0 K / 796.2 K bytes)
2026-04-15 20:13:58,073 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_fringe_0019.rmap 3.9 K bytes (186 / 224 files) (710.5 K / 796.2 K bytes)
2026-04-15 20:13:58,162 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_flat_0073.rmap 16.5 K bytes (187 / 224 files) (714.4 K / 796.2 K bytes)
2026-04-15 20:13:58,262 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_filteroffset_0029.rmap 2.4 K bytes (188 / 224 files) (730.9 K / 796.2 K bytes)
2026-04-15 20:13:58,354 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_extract1d_0022.rmap 1.0 K bytes (189 / 224 files) (733.3 K / 796.2 K bytes)
2026-04-15 20:13:58,440 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_emicorr_0004.rmap 663 bytes (190 / 224 files) (734.3 K / 796.2 K bytes)
2026-04-15 20:13:58,521 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_drizpars_0002.rmap 511 bytes (191 / 224 files) (735.0 K / 796.2 K bytes)
2026-04-15 20:13:58,607 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_distortion_0043.rmap 4.8 K bytes (192 / 224 files) (735.5 K / 796.2 K bytes)
2026-04-15 20:13:58,688 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_dark_0039.rmap 4.3 K bytes (193 / 224 files) (740.3 K / 796.2 K bytes)
2026-04-15 20:13:58,769 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_cubepar_0017.rmap 800 bytes (194 / 224 files) (744.6 K / 796.2 K bytes)
2026-04-15 20:13:58,852 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_bkg_0004.rmap 712 bytes (195 / 224 files) (745.4 K / 796.2 K bytes)
2026-04-15 20:13:58,934 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_area_0015.rmap 866 bytes (196 / 224 files) (746.1 K / 796.2 K bytes)
2026-04-15 20:13:59,016 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_apcorr_0023.rmap 5.0 K bytes (197 / 224 files) (746.9 K / 796.2 K bytes)
2026-04-15 20:13:59,106 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_abvegaoffset_0003.rmap 1.3 K bytes (198 / 224 files) (752.0 K / 796.2 K bytes)
2026-04-15 20:13:59,196 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_miri_0487.imap 6.0 K bytes (199 / 224 files) (753.2 K / 796.2 K bytes)
2026-04-15 20:13:59,277 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_fgs_trappars_0004.rmap 903 bytes (200 / 224 files) (759.3 K / 796.2 K bytes)
2026-04-15 20:13:59,364 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_fgs_trapdensity_0006.rmap 930 bytes (201 / 224 files) (760.2 K / 796.2 K bytes)
2026-04-15 20:13:59,442 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_fgs_superbias_0017.rmap 3.8 K bytes (202 / 224 files) (761.1 K / 796.2 K bytes)
2026-04-15 20:13:59,524 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_fgs_saturation_0009.rmap 779 bytes (203 / 224 files) (764.9 K / 796.2 K bytes)
2026-04-15 20:13:59,603 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_fgs_readnoise_0014.rmap 1.3 K bytes (204 / 224 files) (765.7 K / 796.2 K bytes)
2026-04-15 20:13:59,693 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_fgs_photom_0014.rmap 1.1 K bytes (205 / 224 files) (766.9 K / 796.2 K bytes)
2026-04-15 20:13:59,775 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_fgs_persat_0006.rmap 884 bytes (206 / 224 files) (768.1 K / 796.2 K bytes)
2026-04-15 20:13:59,863 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_fgs_pars-tweakregstep_0002.rmap 850 bytes (207 / 224 files) (769.0 K / 796.2 K bytes)
2026-04-15 20:13:59,943 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_fgs_pars-sourcecatalogstep_0001.rmap 636 bytes (208 / 224 files) (769.8 K / 796.2 K bytes)
2026-04-15 20:14:00,028 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_fgs_pars-outlierdetectionstep_0001.rmap 654 bytes (209 / 224 files) (770.4 K / 796.2 K bytes)
2026-04-15 20:14:00,115 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_fgs_pars-image2pipeline_0005.rmap 974 bytes (210 / 224 files) (771.1 K / 796.2 K bytes)
2026-04-15 20:14:00,200 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_fgs_pars-detector1pipeline_0002.rmap 1.0 K bytes (211 / 224 files) (772.1 K / 796.2 K bytes)
2026-04-15 20:14:00,286 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_fgs_pars-darkpipeline_0002.rmap 856 bytes (212 / 224 files) (773.1 K / 796.2 K bytes)
2026-04-15 20:14:00,368 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_fgs_mask_0023.rmap 1.1 K bytes (213 / 224 files) (774.0 K / 796.2 K bytes)
2026-04-15 20:14:00,447 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_fgs_linearity_0015.rmap 925 bytes (214 / 224 files) (775.0 K / 796.2 K bytes)
2026-04-15 20:14:00,534 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_fgs_ipc_0003.rmap 614 bytes (215 / 224 files) (775.9 K / 796.2 K bytes)
2026-04-15 20:14:00,618 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_fgs_gain_0010.rmap 890 bytes (216 / 224 files) (776.5 K / 796.2 K bytes)
2026-04-15 20:14:00,705 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_fgs_flat_0009.rmap 1.1 K bytes (217 / 224 files) (777.4 K / 796.2 K bytes)
2026-04-15 20:14:00,789 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_fgs_distortion_0011.rmap 1.2 K bytes (218 / 224 files) (778.6 K / 796.2 K bytes)
2026-04-15 20:14:00,870 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_fgs_dark_0017.rmap 4.3 K bytes (219 / 224 files) (779.8 K / 796.2 K bytes)
2026-04-15 20:14:00,950 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_fgs_area_0010.rmap 1.2 K bytes (220 / 224 files) (784.1 K / 796.2 K bytes)
2026-04-15 20:14:01,029 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_fgs_apcorr_0004.rmap 4.0 K bytes (221 / 224 files) (785.2 K / 796.2 K bytes)
2026-04-15 20:14:01,114 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_fgs_abvegaoffset_0002.rmap 1.3 K bytes (222 / 224 files) (789.2 K / 796.2 K bytes)
2026-04-15 20:14:01,196 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_fgs_0125.imap 5.1 K bytes (223 / 224 files) (790.5 K / 796.2 K bytes)
2026-04-15 20:14:01,283 - CRDS - INFO - Fetching /home/runner/crds/mappings/jwst/jwst_1535.pmap 580 bytes (224 / 224 files) (795.6 K / 796.2 K bytes)
2026-04-15 20:14:01,648 - CRDS - ERROR - Error determining best reference for 'pars-darkcurrentstep' = No match found.
2026-04-15 20:14:01,654 - CRDS - INFO - Fetching /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-jumpstep_0003.asdf 1.8 K bytes (1 / 1 files) (0 / 1.8 K bytes)
2026-04-15 20:14:01,740 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-jumpstep_0003.asdf
2026-04-15 20:14:01,756 - CRDS - INFO - Fetching /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-detector1pipeline_0007.asdf 3.0 K bytes (1 / 1 files) (0 / 3.0 K bytes)
2026-04-15 20:14:01,845 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-detector1pipeline_0007.asdf
2026-04-15 20:14:01,863 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-04-15 20:14:01,864 - stpipe.step - INFO - GroupScaleStep instance created.
2026-04-15 20:14:01,865 - stpipe.step - INFO - DQInitStep instance created.
2026-04-15 20:14:01,866 - stpipe.step - INFO - EmiCorrStep instance created.
2026-04-15 20:14:01,867 - stpipe.step - INFO - SaturationStep instance created.
2026-04-15 20:14:01,867 - stpipe.step - INFO - IPCStep instance created.
2026-04-15 20:14:01,868 - stpipe.step - INFO - SuperBiasStep instance created.
2026-04-15 20:14:01,869 - stpipe.step - INFO - RefPixStep instance created.
2026-04-15 20:14:01,870 - stpipe.step - INFO - RscdStep instance created.
2026-04-15 20:14:01,870 - stpipe.step - INFO - FirstFrameStep instance created.
2026-04-15 20:14:01,871 - stpipe.step - INFO - LastFrameStep instance created.
2026-04-15 20:14:01,872 - stpipe.step - INFO - LinearityStep instance created.
2026-04-15 20:14:01,873 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-04-15 20:14:01,875 - stpipe.step - INFO - ResetStep instance created.
2026-04-15 20:14:01,876 - stpipe.step - INFO - PersistenceStep instance created.
2026-04-15 20:14:01,877 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-04-15 20:14:01,878 - stpipe.step - INFO - JumpStep instance created.
2026-04-15 20:14:01,879 - stpipe.step - INFO - PictureFrameStep instance created.
2026-04-15 20:14:01,881 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-04-15 20:14:01,882 - stpipe.step - INFO - RampFitStep instance created.
2026-04-15 20:14:01,883 - stpipe.step - INFO - GainScaleStep instance created.
2026-04-15 20:14:02,049 - stpipe.step - INFO - Step Detector1Pipeline running with args ('/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/uncal/jw01386001001_0310e_00001_nrcalong_uncal.fits',).
2026-04-15 20:14:02,069 - stpipe.step - INFO - Step Detector1Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_calibrated_ramp: False
steps:
group_scale:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
dq_init:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
user_supplied_dq: None
emicorr:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
algorithm: joint
nints_to_phase: None
nbins: None
scale_reference: True
onthefly_corr_freq: None
use_n_cycles: 3
fit_ints_separately: False
user_supplied_reffile: None
save_intermediate_results: False
saturation:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
n_pix_grow_sat: 1
use_readpatt: True
ipc:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
superbias:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
refpix:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
odd_even_columns: True
use_side_ref_pixels: True
side_smoothing_length: 11
side_gain: 1.0
odd_even_rows: True
ovr_corr_mitigation_ftr: 3.0
preserve_irs2_refpix: False
irs2_mean_subtraction: False
refpix_algorithm: median
sigreject: 4.0
gaussmooth: 1.0
halfwidth: 30
rscd:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
firstframe:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
bright_use_group1: True
lastframe:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
linearity:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
dark_current:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
dark_output: None
average_dark_current: None
reset:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
persistence:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
input_trapsfilled: ''
flag_pers_cutoff: 40.0
save_persistence: False
save_trapsfilled: True
modify_input: False
charge_migration:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
signal_threshold: 25000.0
jump:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
rejection_threshold: 4.0
three_group_rejection_threshold: 6.0
four_group_rejection_threshold: 5.0
maximum_cores: half
flag_4_neighbors: True
max_jump_to_flag_neighbors: 1000
min_jump_to_flag_neighbors: 30
after_jump_flag_dn1: 0
after_jump_flag_time1: 0
after_jump_flag_dn2: 0
after_jump_flag_time2: 0
expand_large_events: True
min_sat_area: 1
min_jump_area: 5
expand_factor: 2
use_ellipses: False
sat_required_snowball: True
min_sat_radius_extend: 2.5
sat_expand: 2
edge_size: 25
mask_snowball_core_next_int: True
snowball_time_masked_next_int: 4000
find_showers: False
max_shower_amplitude: 4.0
extend_snr_threshold: 0.0
extend_min_area: 0
extend_inner_radius: 0
extend_outer_radius: 0.0
extend_ellipse_expand_ratio: 0.0
time_masked_after_shower: 0
min_diffs_single_pass: 10
max_extended_radius: 200
minimum_groups: 3
minimum_sigclip_groups: 100
only_use_ints: True
picture_frame:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
mask_science_regions: True
n_sigma: 2.0
save_mask: False
save_correction: False
clean_flicker_noise:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
autoparam: False
fit_method: median
fit_by_channel: False
background_method: median
background_box_size: None
mask_science_regions: False
apply_flat_field: False
n_sigma: 2.0
fit_histogram: False
single_mask: True
user_mask: None
save_mask: False
save_background: False
save_noise: False
ramp_fit:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
algorithm: OLS_C
int_name: ''
save_opt: False
opt_name: ''
suppress_one_group: False
firstgroup: None
lastgroup: None
maximum_cores: '1'
gain_scale:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
2026-04-15 20:14:02,095 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01386001001_0310e_00001_nrcalong_uncal.fits' reftypes = ['gain', 'linearity', 'mask', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'sirskernel', 'superbias']
2026-04-15 20:14:02,098 - CRDS - INFO - Fetching /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits 16.8 M bytes (1 / 7 files) (0 / 220.5 M bytes)
2026-04-15 20:14:02,573 - CRDS - INFO - Fetching /home/runner/crds/references/jwst/nircam/jwst_nircam_linearity_0052.fits 151.0 M bytes (2 / 7 files) (16.8 M / 220.5 M bytes)
2026-04-15 20:14:04,319 - CRDS - INFO - Fetching /home/runner/crds/references/jwst/nircam/jwst_nircam_mask_0076.fits 16.8 M bytes (3 / 7 files) (167.8 M / 220.5 M bytes)
2026-04-15 20:14:04,810 - CRDS - INFO - Fetching /home/runner/crds/references/jwst/nircam/jwst_nircam_readnoise_0284.fits 420.5 K bytes (4 / 7 files) (184.6 M / 220.5 M bytes)
2026-04-15 20:14:05,020 - CRDS - INFO - Fetching /home/runner/crds/references/jwst/nircam/jwst_nircam_saturation_0097.fits 33.6 M bytes (5 / 7 files) (185.0 M / 220.5 M bytes)
2026-04-15 20:14:05,624 - CRDS - INFO - Fetching /home/runner/crds/references/jwst/nircam/jwst_nircam_sirskernel_0002.asdf 661.0 K bytes (6 / 7 files) (218.6 M / 220.5 M bytes)
2026-04-15 20:14:05,858 - CRDS - INFO - Fetching /home/runner/crds/references/jwst/nircam/jwst_nircam_superbias_0229.fits 1.3 M bytes (7 / 7 files) (219.3 M / 220.5 M bytes)
2026-04-15 20:14:06,164 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits'.
2026-04-15 20:14:06,165 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_linearity_0052.fits'.
2026-04-15 20:14:06,166 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_mask_0076.fits'.
2026-04-15 20:14:06,167 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_readnoise_0284.fits'.
2026-04-15 20:14:06,168 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-04-15 20:14:06,168 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-04-15 20:14:06,169 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-04-15 20:14:06,170 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_saturation_0097.fits'.
2026-04-15 20:14:06,170 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_sirskernel_0002.asdf'.
2026-04-15 20:14:06,171 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_superbias_0229.fits'.
2026-04-15 20:14:06,172 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-04-15 20:14:06,498 - stpipe.step - INFO - Step group_scale running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00001_nrcalong_uncal.fits>,).
2026-04-15 20:14:06,499 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-04-15 20:14:06,500 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-04-15 20:14:06,502 - stpipe.step - INFO - Step group_scale done
2026-04-15 20:14:06,683 - stpipe.step - INFO - Step dq_init running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00001_nrcalong_uncal.fits>,).
2026-04-15 20:14:06,693 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_mask_0076.fits
2026-04-15 20:14:06,805 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:06,940 - jwst.dq_init.dq_initialization - INFO - Extracting mask subarray to match science data
2026-04-15 20:14:06,966 - CRDS - INFO - Calibration SW Found: jwst 2.0.0 (/home/runner/micromamba/envs/ci-env/lib/python3.13/site-packages/jwst-2.0.0.dist-info)
2026-04-15 20:14:07,068 - stpipe.step - INFO - Step dq_init done
2026-04-15 20:14:07,255 - stpipe.step - INFO - Step saturation running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00001_nrcalong_uncal.fits>,).
2026-04-15 20:14:07,263 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_saturation_0097.fits
2026-04-15 20:14:07,263 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_superbias_0229.fits
2026-04-15 20:14:07,376 - stdatamodels.dynamicdq - WARNING - Keyword RESERVED_4 does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:07,378 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:07,511 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_RESET does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:07,577 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:07,586 - jwst.saturation.saturation - INFO - Extracting reference file subarray to match science data
2026-04-15 20:14:07,607 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 8
2026-04-15 20:14:07,625 - stcal.saturation.saturation - INFO - Detected 12 saturated pixels
2026-04-15 20:14:07,627 - stcal.saturation.saturation - INFO - Detected 0 A/D floor pixels
2026-04-15 20:14:07,645 - stpipe.step - INFO - Step saturation done
2026-04-15 20:14:07,852 - stpipe.step - INFO - Step ipc running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00001_nrcalong_uncal.fits>,).
2026-04-15 20:14:07,853 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:08,061 - stpipe.step - INFO - Step superbias running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00001_nrcalong_uncal.fits>,).
2026-04-15 20:14:08,071 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_superbias_0229.fits
2026-04-15 20:14:08,110 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:08,139 - stpipe.step - INFO - Step superbias done
2026-04-15 20:14:08,341 - stpipe.step - INFO - Step refpix running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00001_nrcalong_uncal.fits>,).
2026-04-15 20:14:08,346 - jwst.refpix.reference_pixels - INFO - NIR subarray data
2026-04-15 20:14:08,351 - jwst.refpix.reference_pixels - INFO - Single readout amplifier used
2026-04-15 20:14:08,352 - jwst.refpix.reference_pixels - INFO - No valid reference pixels. This step will have no effect.
2026-04-15 20:14:08,382 - jwst.refpix.reference_pixels - INFO - Processing the zero frame
2026-04-15 20:14:08,444 - stpipe.step - INFO - Step refpix done
2026-04-15 20:14:08,668 - stpipe.step - INFO - Step linearity running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00001_nrcalong_uncal.fits>,).
2026-04-15 20:14:08,675 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_linearity_0052.fits
2026-04-15 20:14:08,812 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:08,814 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:08,814 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:08,815 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:08,816 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:08,817 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:08,818 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:08,878 - stpipe.step - INFO - Step linearity done
2026-04-15 20:14:09,081 - stpipe.step - INFO - Step persistence running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00001_nrcalong_uncal.fits>,).
2026-04-15 20:14:09,082 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:09,279 - stpipe.step - INFO - Step dark_current running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00001_nrcalong_uncal.fits>,).
2026-04-15 20:14:09,280 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:09,508 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00001_nrcalong_uncal.fits>,).
2026-04-15 20:14:09,509 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:09,713 - stpipe.step - INFO - Step jump running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00001_nrcalong_uncal.fits>,).
2026-04-15 20:14:09,714 - jwst.jump.jump_step - INFO - CR rejection threshold = 4 sigma
2026-04-15 20:14:09,714 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-04-15 20:14:09,724 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:14:09,727 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_readnoise_0284.fits
2026-04-15 20:14:09,762 - jwst.jump.jump_step - INFO - Extracting gain subarray to match science data
2026-04-15 20:14:09,780 - stcal.jump.jump - INFO - Executing two-point difference method
2026-04-15 20:14:09,780 - stcal.jump.jump - INFO - Creating 2 processes for jump detection
2026-04-15 20:14:10,206 - stcal.jump.jump - INFO - Flagging Snowballs
2026-04-15 20:14:10,264 - stcal.jump.jump - INFO - Total snowballs = 20
2026-04-15 20:14:10,265 - stcal.jump.jump - INFO - Total elapsed time = 0.484724 sec
2026-04-15 20:14:10,278 - jwst.jump.jump_step - INFO - The execution time in seconds: 0.563882
2026-04-15 20:14:10,281 - stpipe.step - INFO - Step jump done
2026-04-15 20:14:10,450 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00001_nrcalong_uncal.fits>,).
2026-04-15 20:14:10,451 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:10,617 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00001_nrcalong_uncal.fits>,).
2026-04-15 20:14:10,618 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:10,776 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00001_nrcalong_uncal.fits>,).
2026-04-15 20:14:10,788 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_readnoise_0284.fits
2026-04-15 20:14:10,789 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:14:10,818 - jwst.ramp_fitting.ramp_fit_step - INFO - Extracting gain subarray to match science data
2026-04-15 20:14:10,832 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-04-15 20:14:10,832 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-04-15 20:14:10,834 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-04-15 20:14:10,889 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 0.054839372634887695
2026-04-15 20:14:11,010 - stpipe.step - INFO - Step ramp_fit done
2026-04-15 20:14:11,164 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(320, 320) from jw01386001001_0310e_00001_nrcalong_uncal.fits>,).
2026-04-15 20:14:11,170 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:14:11,187 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:14:11,188 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:14:11,191 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:14:11,347 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(2, 320, 320) from jw01386001001_0310e_00001_nrcalong_uncal.fits>,).
2026-04-15 20:14:11,350 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:14:11,367 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:14:11,368 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:14:11,371 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:14:11,425 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00001_nrcalong_rateints.fits
2026-04-15 20:14:11,426 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-04-15 20:14:11,427 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:14:11,472 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00001_nrcalong_rate.fits
2026-04-15 20:14:11,473 - stpipe.step - INFO - Step Detector1Pipeline done
2026-04-15 20:14:11,473 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:14:11,504 - CRDS - ERROR - Error determining best reference for 'pars-darkcurrentstep' = No match found.
2026-04-15 20:14:11,508 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-jumpstep_0003.asdf
2026-04-15 20:14:11,522 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-detector1pipeline_0007.asdf
2026-04-15 20:14:11,537 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-04-15 20:14:11,538 - stpipe.step - INFO - GroupScaleStep instance created.
2026-04-15 20:14:11,539 - stpipe.step - INFO - DQInitStep instance created.
2026-04-15 20:14:11,540 - stpipe.step - INFO - EmiCorrStep instance created.
2026-04-15 20:14:11,541 - stpipe.step - INFO - SaturationStep instance created.
2026-04-15 20:14:11,542 - stpipe.step - INFO - IPCStep instance created.
2026-04-15 20:14:11,543 - stpipe.step - INFO - SuperBiasStep instance created.
2026-04-15 20:14:11,544 - stpipe.step - INFO - RefPixStep instance created.
2026-04-15 20:14:11,544 - stpipe.step - INFO - RscdStep instance created.
2026-04-15 20:14:11,545 - stpipe.step - INFO - FirstFrameStep instance created.
2026-04-15 20:14:11,546 - stpipe.step - INFO - LastFrameStep instance created.
2026-04-15 20:14:11,547 - stpipe.step - INFO - LinearityStep instance created.
2026-04-15 20:14:11,548 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-04-15 20:14:11,549 - stpipe.step - INFO - ResetStep instance created.
2026-04-15 20:14:11,550 - stpipe.step - INFO - PersistenceStep instance created.
2026-04-15 20:14:11,550 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-04-15 20:14:11,552 - stpipe.step - INFO - JumpStep instance created.
2026-04-15 20:14:11,553 - stpipe.step - INFO - PictureFrameStep instance created.
2026-04-15 20:14:11,554 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-04-15 20:14:11,555 - stpipe.step - INFO - RampFitStep instance created.
2026-04-15 20:14:11,556 - stpipe.step - INFO - GainScaleStep instance created.
2026-04-15 20:14:11,701 - stpipe.step - INFO - Step Detector1Pipeline running with args ('/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/uncal/jw01386001001_0310e_00002_nrcalong_uncal.fits',).
2026-04-15 20:14:11,720 - stpipe.step - INFO - Step Detector1Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_calibrated_ramp: False
steps:
group_scale:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
dq_init:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
user_supplied_dq: None
emicorr:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
algorithm: joint
nints_to_phase: None
nbins: None
scale_reference: True
onthefly_corr_freq: None
use_n_cycles: 3
fit_ints_separately: False
user_supplied_reffile: None
save_intermediate_results: False
saturation:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
n_pix_grow_sat: 1
use_readpatt: True
ipc:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
superbias:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
refpix:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
odd_even_columns: True
use_side_ref_pixels: True
side_smoothing_length: 11
side_gain: 1.0
odd_even_rows: True
ovr_corr_mitigation_ftr: 3.0
preserve_irs2_refpix: False
irs2_mean_subtraction: False
refpix_algorithm: median
sigreject: 4.0
gaussmooth: 1.0
halfwidth: 30
rscd:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
firstframe:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
bright_use_group1: True
lastframe:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
linearity:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
dark_current:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
dark_output: None
average_dark_current: None
reset:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
persistence:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
input_trapsfilled: ''
flag_pers_cutoff: 40.0
save_persistence: False
save_trapsfilled: True
modify_input: False
charge_migration:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
signal_threshold: 25000.0
jump:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
rejection_threshold: 4.0
three_group_rejection_threshold: 6.0
four_group_rejection_threshold: 5.0
maximum_cores: half
flag_4_neighbors: True
max_jump_to_flag_neighbors: 1000
min_jump_to_flag_neighbors: 30
after_jump_flag_dn1: 0
after_jump_flag_time1: 0
after_jump_flag_dn2: 0
after_jump_flag_time2: 0
expand_large_events: True
min_sat_area: 1
min_jump_area: 5
expand_factor: 2
use_ellipses: False
sat_required_snowball: True
min_sat_radius_extend: 2.5
sat_expand: 2
edge_size: 25
mask_snowball_core_next_int: True
snowball_time_masked_next_int: 4000
find_showers: False
max_shower_amplitude: 4.0
extend_snr_threshold: 0.0
extend_min_area: 0
extend_inner_radius: 0
extend_outer_radius: 0.0
extend_ellipse_expand_ratio: 0.0
time_masked_after_shower: 0
min_diffs_single_pass: 10
max_extended_radius: 200
minimum_groups: 3
minimum_sigclip_groups: 100
only_use_ints: True
picture_frame:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
mask_science_regions: True
n_sigma: 2.0
save_mask: False
save_correction: False
clean_flicker_noise:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
autoparam: False
fit_method: median
fit_by_channel: False
background_method: median
background_box_size: None
mask_science_regions: False
apply_flat_field: False
n_sigma: 2.0
fit_histogram: False
single_mask: True
user_mask: None
save_mask: False
save_background: False
save_noise: False
ramp_fit:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
algorithm: OLS_C
int_name: ''
save_opt: False
opt_name: ''
suppress_one_group: False
firstgroup: None
lastgroup: None
maximum_cores: '1'
gain_scale:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
2026-04-15 20:14:11,744 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01386001001_0310e_00002_nrcalong_uncal.fits' reftypes = ['gain', 'linearity', 'mask', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'sirskernel', 'superbias']
2026-04-15 20:14:11,747 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits'.
2026-04-15 20:14:11,747 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_linearity_0052.fits'.
2026-04-15 20:14:11,748 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_mask_0076.fits'.
2026-04-15 20:14:11,749 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_readnoise_0284.fits'.
2026-04-15 20:14:11,749 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-04-15 20:14:11,749 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-04-15 20:14:11,750 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-04-15 20:14:11,750 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_saturation_0097.fits'.
2026-04-15 20:14:11,751 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_sirskernel_0002.asdf'.
2026-04-15 20:14:11,752 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_superbias_0229.fits'.
2026-04-15 20:14:11,752 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-04-15 20:14:12,010 - stpipe.step - INFO - Step group_scale running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00002_nrcalong_uncal.fits>,).
2026-04-15 20:14:12,011 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-04-15 20:14:12,012 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-04-15 20:14:12,013 - stpipe.step - INFO - Step group_scale done
2026-04-15 20:14:12,154 - stpipe.step - INFO - Step dq_init running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00002_nrcalong_uncal.fits>,).
2026-04-15 20:14:12,157 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_mask_0076.fits
2026-04-15 20:14:12,246 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:12,376 - jwst.dq_init.dq_initialization - INFO - Extracting mask subarray to match science data
2026-04-15 20:14:12,401 - stpipe.step - INFO - Step dq_init done
2026-04-15 20:14:12,539 - stpipe.step - INFO - Step saturation running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00002_nrcalong_uncal.fits>,).
2026-04-15 20:14:12,544 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_saturation_0097.fits
2026-04-15 20:14:12,544 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_superbias_0229.fits
2026-04-15 20:14:12,630 - stdatamodels.dynamicdq - WARNING - Keyword RESERVED_4 does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:12,631 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:12,727 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_RESET does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:12,783 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:12,791 - jwst.saturation.saturation - INFO - Extracting reference file subarray to match science data
2026-04-15 20:14:12,809 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 8
2026-04-15 20:14:12,824 - stcal.saturation.saturation - INFO - Detected 0 saturated pixels
2026-04-15 20:14:12,825 - stcal.saturation.saturation - INFO - Detected 0 A/D floor pixels
2026-04-15 20:14:12,842 - stpipe.step - INFO - Step saturation done
2026-04-15 20:14:12,976 - stpipe.step - INFO - Step ipc running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00002_nrcalong_uncal.fits>,).
2026-04-15 20:14:12,977 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:13,117 - stpipe.step - INFO - Step superbias running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00002_nrcalong_uncal.fits>,).
2026-04-15 20:14:13,120 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_superbias_0229.fits
2026-04-15 20:14:13,156 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:13,181 - stpipe.step - INFO - Step superbias done
2026-04-15 20:14:13,318 - stpipe.step - INFO - Step refpix running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00002_nrcalong_uncal.fits>,).
2026-04-15 20:14:13,322 - jwst.refpix.reference_pixels - INFO - NIR subarray data
2026-04-15 20:14:13,325 - jwst.refpix.reference_pixels - INFO - Single readout amplifier used
2026-04-15 20:14:13,326 - jwst.refpix.reference_pixels - INFO - No valid reference pixels. This step will have no effect.
2026-04-15 20:14:13,343 - jwst.refpix.reference_pixels - INFO - Processing the zero frame
2026-04-15 20:14:13,394 - stpipe.step - INFO - Step refpix done
2026-04-15 20:14:13,537 - stpipe.step - INFO - Step linearity running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00002_nrcalong_uncal.fits>,).
2026-04-15 20:14:13,540 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_linearity_0052.fits
2026-04-15 20:14:13,635 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:13,636 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:13,637 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:13,638 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:13,638 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:13,639 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:13,640 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:13,690 - stpipe.step - INFO - Step linearity done
2026-04-15 20:14:13,841 - stpipe.step - INFO - Step persistence running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00002_nrcalong_uncal.fits>,).
2026-04-15 20:14:13,842 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:13,993 - stpipe.step - INFO - Step dark_current running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00002_nrcalong_uncal.fits>,).
2026-04-15 20:14:13,994 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:14,134 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00002_nrcalong_uncal.fits>,).
2026-04-15 20:14:14,134 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:14,278 - stpipe.step - INFO - Step jump running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00002_nrcalong_uncal.fits>,).
2026-04-15 20:14:14,278 - jwst.jump.jump_step - INFO - CR rejection threshold = 4 sigma
2026-04-15 20:14:14,279 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-04-15 20:14:14,282 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:14:14,284 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_readnoise_0284.fits
2026-04-15 20:14:14,315 - jwst.jump.jump_step - INFO - Extracting gain subarray to match science data
2026-04-15 20:14:14,330 - stcal.jump.jump - INFO - Executing two-point difference method
2026-04-15 20:14:14,332 - stcal.jump.jump - INFO - Creating 2 processes for jump detection
2026-04-15 20:14:14,736 - stcal.jump.jump - INFO - Flagging Snowballs
2026-04-15 20:14:14,787 - stcal.jump.jump - INFO - Total snowballs = 37
2026-04-15 20:14:14,788 - stcal.jump.jump - INFO - Total elapsed time = 0.456275 sec
2026-04-15 20:14:14,799 - jwst.jump.jump_step - INFO - The execution time in seconds: 0.520960
2026-04-15 20:14:14,802 - stpipe.step - INFO - Step jump done
2026-04-15 20:14:14,949 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00002_nrcalong_uncal.fits>,).
2026-04-15 20:14:14,950 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:15,109 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00002_nrcalong_uncal.fits>,).
2026-04-15 20:14:15,110 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:15,279 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00002_nrcalong_uncal.fits>,).
2026-04-15 20:14:15,285 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_readnoise_0284.fits
2026-04-15 20:14:15,285 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:14:15,316 - jwst.ramp_fitting.ramp_fit_step - INFO - Extracting gain subarray to match science data
2026-04-15 20:14:15,330 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-04-15 20:14:15,331 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-04-15 20:14:15,333 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-04-15 20:14:15,386 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 0.0523068904876709
2026-04-15 20:14:15,504 - stpipe.step - INFO - Step ramp_fit done
2026-04-15 20:14:15,682 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(320, 320) from jw01386001001_0310e_00002_nrcalong_uncal.fits>,).
2026-04-15 20:14:15,686 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:14:15,703 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:14:15,704 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:14:15,707 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:14:15,887 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(2, 320, 320) from jw01386001001_0310e_00002_nrcalong_uncal.fits>,).
2026-04-15 20:14:15,890 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:14:15,908 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:14:15,909 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:14:15,912 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:14:15,964 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00002_nrcalong_rateints.fits
2026-04-15 20:14:15,965 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-04-15 20:14:15,965 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:14:16,012 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00002_nrcalong_rate.fits
2026-04-15 20:14:16,013 - stpipe.step - INFO - Step Detector1Pipeline done
2026-04-15 20:14:16,013 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:14:16,046 - CRDS - ERROR - Error determining best reference for 'pars-darkcurrentstep' = No match found.
2026-04-15 20:14:16,050 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-jumpstep_0003.asdf
2026-04-15 20:14:16,065 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-detector1pipeline_0007.asdf
2026-04-15 20:14:16,082 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-04-15 20:14:16,083 - stpipe.step - INFO - GroupScaleStep instance created.
2026-04-15 20:14:16,084 - stpipe.step - INFO - DQInitStep instance created.
2026-04-15 20:14:16,085 - stpipe.step - INFO - EmiCorrStep instance created.
2026-04-15 20:14:16,086 - stpipe.step - INFO - SaturationStep instance created.
2026-04-15 20:14:16,087 - stpipe.step - INFO - IPCStep instance created.
2026-04-15 20:14:16,087 - stpipe.step - INFO - SuperBiasStep instance created.
2026-04-15 20:14:16,088 - stpipe.step - INFO - RefPixStep instance created.
2026-04-15 20:14:16,089 - stpipe.step - INFO - RscdStep instance created.
2026-04-15 20:14:16,090 - stpipe.step - INFO - FirstFrameStep instance created.
2026-04-15 20:14:16,090 - stpipe.step - INFO - LastFrameStep instance created.
2026-04-15 20:14:16,091 - stpipe.step - INFO - LinearityStep instance created.
2026-04-15 20:14:16,092 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-04-15 20:14:16,093 - stpipe.step - INFO - ResetStep instance created.
2026-04-15 20:14:16,094 - stpipe.step - INFO - PersistenceStep instance created.
2026-04-15 20:14:16,094 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-04-15 20:14:16,096 - stpipe.step - INFO - JumpStep instance created.
2026-04-15 20:14:16,096 - stpipe.step - INFO - PictureFrameStep instance created.
2026-04-15 20:14:16,097 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-04-15 20:14:16,098 - stpipe.step - INFO - RampFitStep instance created.
2026-04-15 20:14:16,099 - stpipe.step - INFO - GainScaleStep instance created.
2026-04-15 20:14:16,281 - stpipe.step - INFO - Step Detector1Pipeline running with args ('/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/uncal/jw01386001001_0310e_00003_nrcalong_uncal.fits',).
2026-04-15 20:14:16,301 - stpipe.step - INFO - Step Detector1Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_calibrated_ramp: False
steps:
group_scale:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
dq_init:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
user_supplied_dq: None
emicorr:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
algorithm: joint
nints_to_phase: None
nbins: None
scale_reference: True
onthefly_corr_freq: None
use_n_cycles: 3
fit_ints_separately: False
user_supplied_reffile: None
save_intermediate_results: False
saturation:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
n_pix_grow_sat: 1
use_readpatt: True
ipc:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
superbias:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
refpix:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
odd_even_columns: True
use_side_ref_pixels: True
side_smoothing_length: 11
side_gain: 1.0
odd_even_rows: True
ovr_corr_mitigation_ftr: 3.0
preserve_irs2_refpix: False
irs2_mean_subtraction: False
refpix_algorithm: median
sigreject: 4.0
gaussmooth: 1.0
halfwidth: 30
rscd:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
firstframe:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
bright_use_group1: True
lastframe:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
linearity:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
dark_current:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
dark_output: None
average_dark_current: None
reset:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
persistence:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
input_trapsfilled: ''
flag_pers_cutoff: 40.0
save_persistence: False
save_trapsfilled: True
modify_input: False
charge_migration:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
signal_threshold: 25000.0
jump:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
rejection_threshold: 4.0
three_group_rejection_threshold: 6.0
four_group_rejection_threshold: 5.0
maximum_cores: half
flag_4_neighbors: True
max_jump_to_flag_neighbors: 1000
min_jump_to_flag_neighbors: 30
after_jump_flag_dn1: 0
after_jump_flag_time1: 0
after_jump_flag_dn2: 0
after_jump_flag_time2: 0
expand_large_events: True
min_sat_area: 1
min_jump_area: 5
expand_factor: 2
use_ellipses: False
sat_required_snowball: True
min_sat_radius_extend: 2.5
sat_expand: 2
edge_size: 25
mask_snowball_core_next_int: True
snowball_time_masked_next_int: 4000
find_showers: False
max_shower_amplitude: 4.0
extend_snr_threshold: 0.0
extend_min_area: 0
extend_inner_radius: 0
extend_outer_radius: 0.0
extend_ellipse_expand_ratio: 0.0
time_masked_after_shower: 0
min_diffs_single_pass: 10
max_extended_radius: 200
minimum_groups: 3
minimum_sigclip_groups: 100
only_use_ints: True
picture_frame:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
mask_science_regions: True
n_sigma: 2.0
save_mask: False
save_correction: False
clean_flicker_noise:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
autoparam: False
fit_method: median
fit_by_channel: False
background_method: median
background_box_size: None
mask_science_regions: False
apply_flat_field: False
n_sigma: 2.0
fit_histogram: False
single_mask: True
user_mask: None
save_mask: False
save_background: False
save_noise: False
ramp_fit:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
algorithm: OLS_C
int_name: ''
save_opt: False
opt_name: ''
suppress_one_group: False
firstgroup: None
lastgroup: None
maximum_cores: '1'
gain_scale:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
2026-04-15 20:14:16,327 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01386001001_0310e_00003_nrcalong_uncal.fits' reftypes = ['gain', 'linearity', 'mask', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'sirskernel', 'superbias']
2026-04-15 20:14:16,330 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits'.
2026-04-15 20:14:16,331 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_linearity_0052.fits'.
2026-04-15 20:14:16,331 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_mask_0076.fits'.
2026-04-15 20:14:16,332 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_readnoise_0284.fits'.
2026-04-15 20:14:16,333 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-04-15 20:14:16,333 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-04-15 20:14:16,333 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-04-15 20:14:16,334 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_saturation_0097.fits'.
2026-04-15 20:14:16,334 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_sirskernel_0002.asdf'.
2026-04-15 20:14:16,335 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_superbias_0229.fits'.
2026-04-15 20:14:16,336 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-04-15 20:14:16,622 - stpipe.step - INFO - Step group_scale running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00003_nrcalong_uncal.fits>,).
2026-04-15 20:14:16,623 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-04-15 20:14:16,623 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-04-15 20:14:16,625 - stpipe.step - INFO - Step group_scale done
2026-04-15 20:14:16,792 - stpipe.step - INFO - Step dq_init running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00003_nrcalong_uncal.fits>,).
2026-04-15 20:14:16,795 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_mask_0076.fits
2026-04-15 20:14:16,889 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:17,020 - jwst.dq_init.dq_initialization - INFO - Extracting mask subarray to match science data
2026-04-15 20:14:17,045 - stpipe.step - INFO - Step dq_init done
2026-04-15 20:14:17,183 - stpipe.step - INFO - Step saturation running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00003_nrcalong_uncal.fits>,).
2026-04-15 20:14:17,187 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_saturation_0097.fits
2026-04-15 20:14:17,188 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_superbias_0229.fits
2026-04-15 20:14:17,275 - stdatamodels.dynamicdq - WARNING - Keyword RESERVED_4 does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:17,276 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:17,372 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_RESET does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:17,428 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:17,436 - jwst.saturation.saturation - INFO - Extracting reference file subarray to match science data
2026-04-15 20:14:17,454 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 8
2026-04-15 20:14:17,469 - stcal.saturation.saturation - INFO - Detected 0 saturated pixels
2026-04-15 20:14:17,470 - stcal.saturation.saturation - INFO - Detected 0 A/D floor pixels
2026-04-15 20:14:17,487 - stpipe.step - INFO - Step saturation done
2026-04-15 20:14:17,637 - stpipe.step - INFO - Step ipc running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00003_nrcalong_uncal.fits>,).
2026-04-15 20:14:17,637 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:17,779 - stpipe.step - INFO - Step superbias running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00003_nrcalong_uncal.fits>,).
2026-04-15 20:14:17,782 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_superbias_0229.fits
2026-04-15 20:14:17,818 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:17,843 - stpipe.step - INFO - Step superbias done
2026-04-15 20:14:17,981 - stpipe.step - INFO - Step refpix running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00003_nrcalong_uncal.fits>,).
2026-04-15 20:14:17,985 - jwst.refpix.reference_pixels - INFO - NIR subarray data
2026-04-15 20:14:17,988 - jwst.refpix.reference_pixels - INFO - Single readout amplifier used
2026-04-15 20:14:17,988 - jwst.refpix.reference_pixels - INFO - No valid reference pixels. This step will have no effect.
2026-04-15 20:14:18,009 - jwst.refpix.reference_pixels - INFO - Processing the zero frame
2026-04-15 20:14:18,060 - stpipe.step - INFO - Step refpix done
2026-04-15 20:14:18,197 - stpipe.step - INFO - Step linearity running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00003_nrcalong_uncal.fits>,).
2026-04-15 20:14:18,200 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_linearity_0052.fits
2026-04-15 20:14:18,295 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:18,296 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:18,297 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:18,298 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:18,299 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:18,299 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:18,300 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:18,351 - stpipe.step - INFO - Step linearity done
2026-04-15 20:14:18,501 - stpipe.step - INFO - Step persistence running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00003_nrcalong_uncal.fits>,).
2026-04-15 20:14:18,503 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:18,664 - stpipe.step - INFO - Step dark_current running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00003_nrcalong_uncal.fits>,).
2026-04-15 20:14:18,664 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:18,829 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00003_nrcalong_uncal.fits>,).
2026-04-15 20:14:18,830 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:19,001 - stpipe.step - INFO - Step jump running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00003_nrcalong_uncal.fits>,).
2026-04-15 20:14:19,001 - jwst.jump.jump_step - INFO - CR rejection threshold = 4 sigma
2026-04-15 20:14:19,002 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-04-15 20:14:19,005 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:14:19,008 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_readnoise_0284.fits
2026-04-15 20:14:19,041 - jwst.jump.jump_step - INFO - Extracting gain subarray to match science data
2026-04-15 20:14:19,057 - stcal.jump.jump - INFO - Executing two-point difference method
2026-04-15 20:14:19,058 - stcal.jump.jump - INFO - Creating 2 processes for jump detection
2026-04-15 20:14:19,489 - stcal.jump.jump - INFO - Flagging Snowballs
2026-04-15 20:14:19,549 - stcal.jump.jump - INFO - Total snowballs = 50
2026-04-15 20:14:19,549 - stcal.jump.jump - INFO - Total elapsed time = 0.491561 sec
2026-04-15 20:14:19,561 - jwst.jump.jump_step - INFO - The execution time in seconds: 0.559211
2026-04-15 20:14:19,563 - stpipe.step - INFO - Step jump done
2026-04-15 20:14:19,704 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00003_nrcalong_uncal.fits>,).
2026-04-15 20:14:19,705 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:19,843 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00003_nrcalong_uncal.fits>,).
2026-04-15 20:14:19,845 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:19,979 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00003_nrcalong_uncal.fits>,).
2026-04-15 20:14:19,984 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_readnoise_0284.fits
2026-04-15 20:14:19,985 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:14:20,014 - jwst.ramp_fitting.ramp_fit_step - INFO - Extracting gain subarray to match science data
2026-04-15 20:14:20,027 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-04-15 20:14:20,028 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-04-15 20:14:20,029 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-04-15 20:14:20,083 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 0.05291032791137695
2026-04-15 20:14:20,199 - stpipe.step - INFO - Step ramp_fit done
2026-04-15 20:14:20,335 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(320, 320) from jw01386001001_0310e_00003_nrcalong_uncal.fits>,).
2026-04-15 20:14:20,339 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:14:20,355 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:14:20,356 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:14:20,359 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:14:20,500 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(2, 320, 320) from jw01386001001_0310e_00003_nrcalong_uncal.fits>,).
2026-04-15 20:14:20,503 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:14:20,519 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:14:20,520 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:14:20,523 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:14:20,572 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00003_nrcalong_rateints.fits
2026-04-15 20:14:20,572 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-04-15 20:14:20,573 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:14:20,617 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00003_nrcalong_rate.fits
2026-04-15 20:14:20,618 - stpipe.step - INFO - Step Detector1Pipeline done
2026-04-15 20:14:20,618 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:14:20,648 - CRDS - ERROR - Error determining best reference for 'pars-darkcurrentstep' = No match found.
2026-04-15 20:14:20,652 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-jumpstep_0003.asdf
2026-04-15 20:14:20,666 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-detector1pipeline_0007.asdf
2026-04-15 20:14:20,682 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-04-15 20:14:20,683 - stpipe.step - INFO - GroupScaleStep instance created.
2026-04-15 20:14:20,683 - stpipe.step - INFO - DQInitStep instance created.
2026-04-15 20:14:20,685 - stpipe.step - INFO - EmiCorrStep instance created.
2026-04-15 20:14:20,686 - stpipe.step - INFO - SaturationStep instance created.
2026-04-15 20:14:20,687 - stpipe.step - INFO - IPCStep instance created.
2026-04-15 20:14:20,687 - stpipe.step - INFO - SuperBiasStep instance created.
2026-04-15 20:14:20,689 - stpipe.step - INFO - RefPixStep instance created.
2026-04-15 20:14:20,690 - stpipe.step - INFO - RscdStep instance created.
2026-04-15 20:14:20,691 - stpipe.step - INFO - FirstFrameStep instance created.
2026-04-15 20:14:20,691 - stpipe.step - INFO - LastFrameStep instance created.
2026-04-15 20:14:20,692 - stpipe.step - INFO - LinearityStep instance created.
2026-04-15 20:14:20,693 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-04-15 20:14:20,693 - stpipe.step - INFO - ResetStep instance created.
2026-04-15 20:14:20,694 - stpipe.step - INFO - PersistenceStep instance created.
2026-04-15 20:14:20,695 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-04-15 20:14:20,696 - stpipe.step - INFO - JumpStep instance created.
2026-04-15 20:14:20,697 - stpipe.step - INFO - PictureFrameStep instance created.
2026-04-15 20:14:20,698 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-04-15 20:14:20,699 - stpipe.step - INFO - RampFitStep instance created.
2026-04-15 20:14:20,700 - stpipe.step - INFO - GainScaleStep instance created.
2026-04-15 20:14:20,840 - stpipe.step - INFO - Step Detector1Pipeline running with args ('/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/uncal/jw01386001001_0310e_00004_nrcalong_uncal.fits',).
2026-04-15 20:14:20,860 - stpipe.step - INFO - Step Detector1Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_calibrated_ramp: False
steps:
group_scale:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
dq_init:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
user_supplied_dq: None
emicorr:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
algorithm: joint
nints_to_phase: None
nbins: None
scale_reference: True
onthefly_corr_freq: None
use_n_cycles: 3
fit_ints_separately: False
user_supplied_reffile: None
save_intermediate_results: False
saturation:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
n_pix_grow_sat: 1
use_readpatt: True
ipc:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
superbias:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
refpix:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
odd_even_columns: True
use_side_ref_pixels: True
side_smoothing_length: 11
side_gain: 1.0
odd_even_rows: True
ovr_corr_mitigation_ftr: 3.0
preserve_irs2_refpix: False
irs2_mean_subtraction: False
refpix_algorithm: median
sigreject: 4.0
gaussmooth: 1.0
halfwidth: 30
rscd:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
firstframe:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
bright_use_group1: True
lastframe:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
linearity:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
dark_current:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
dark_output: None
average_dark_current: None
reset:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
persistence:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
input_trapsfilled: ''
flag_pers_cutoff: 40.0
save_persistence: False
save_trapsfilled: True
modify_input: False
charge_migration:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
signal_threshold: 25000.0
jump:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
rejection_threshold: 4.0
three_group_rejection_threshold: 6.0
four_group_rejection_threshold: 5.0
maximum_cores: half
flag_4_neighbors: True
max_jump_to_flag_neighbors: 1000
min_jump_to_flag_neighbors: 30
after_jump_flag_dn1: 0
after_jump_flag_time1: 0
after_jump_flag_dn2: 0
after_jump_flag_time2: 0
expand_large_events: True
min_sat_area: 1
min_jump_area: 5
expand_factor: 2
use_ellipses: False
sat_required_snowball: True
min_sat_radius_extend: 2.5
sat_expand: 2
edge_size: 25
mask_snowball_core_next_int: True
snowball_time_masked_next_int: 4000
find_showers: False
max_shower_amplitude: 4.0
extend_snr_threshold: 0.0
extend_min_area: 0
extend_inner_radius: 0
extend_outer_radius: 0.0
extend_ellipse_expand_ratio: 0.0
time_masked_after_shower: 0
min_diffs_single_pass: 10
max_extended_radius: 200
minimum_groups: 3
minimum_sigclip_groups: 100
only_use_ints: True
picture_frame:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
mask_science_regions: True
n_sigma: 2.0
save_mask: False
save_correction: False
clean_flicker_noise:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
autoparam: False
fit_method: median
fit_by_channel: False
background_method: median
background_box_size: None
mask_science_regions: False
apply_flat_field: False
n_sigma: 2.0
fit_histogram: False
single_mask: True
user_mask: None
save_mask: False
save_background: False
save_noise: False
ramp_fit:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
algorithm: OLS_C
int_name: ''
save_opt: False
opt_name: ''
suppress_one_group: False
firstgroup: None
lastgroup: None
maximum_cores: '1'
gain_scale:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
2026-04-15 20:14:20,884 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01386001001_0310e_00004_nrcalong_uncal.fits' reftypes = ['gain', 'linearity', 'mask', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'sirskernel', 'superbias']
2026-04-15 20:14:20,888 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits'.
2026-04-15 20:14:20,888 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_linearity_0052.fits'.
2026-04-15 20:14:20,889 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_mask_0076.fits'.
2026-04-15 20:14:20,889 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_readnoise_0284.fits'.
2026-04-15 20:14:20,891 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-04-15 20:14:20,891 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-04-15 20:14:20,892 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-04-15 20:14:20,892 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_saturation_0097.fits'.
2026-04-15 20:14:20,893 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_sirskernel_0002.asdf'.
2026-04-15 20:14:20,893 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_superbias_0229.fits'.
2026-04-15 20:14:20,894 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-04-15 20:14:21,157 - stpipe.step - INFO - Step group_scale running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00004_nrcalong_uncal.fits>,).
2026-04-15 20:14:21,158 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-04-15 20:14:21,158 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-04-15 20:14:21,160 - stpipe.step - INFO - Step group_scale done
2026-04-15 20:14:21,311 - stpipe.step - INFO - Step dq_init running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00004_nrcalong_uncal.fits>,).
2026-04-15 20:14:21,313 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_mask_0076.fits
2026-04-15 20:14:21,399 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:21,522 - jwst.dq_init.dq_initialization - INFO - Extracting mask subarray to match science data
2026-04-15 20:14:21,547 - stpipe.step - INFO - Step dq_init done
2026-04-15 20:14:21,703 - stpipe.step - INFO - Step saturation running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00004_nrcalong_uncal.fits>,).
2026-04-15 20:14:21,708 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_saturation_0097.fits
2026-04-15 20:14:21,708 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_superbias_0229.fits
2026-04-15 20:14:21,797 - stdatamodels.dynamicdq - WARNING - Keyword RESERVED_4 does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:21,798 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:21,897 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_RESET does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:21,954 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:21,962 - jwst.saturation.saturation - INFO - Extracting reference file subarray to match science data
2026-04-15 20:14:21,980 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 8
2026-04-15 20:14:21,995 - stcal.saturation.saturation - INFO - Detected 9 saturated pixels
2026-04-15 20:14:21,996 - stcal.saturation.saturation - INFO - Detected 0 A/D floor pixels
2026-04-15 20:14:22,014 - stpipe.step - INFO - Step saturation done
2026-04-15 20:14:22,168 - stpipe.step - INFO - Step ipc running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00004_nrcalong_uncal.fits>,).
2026-04-15 20:14:22,169 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:22,323 - stpipe.step - INFO - Step superbias running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00004_nrcalong_uncal.fits>,).
2026-04-15 20:14:22,325 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_superbias_0229.fits
2026-04-15 20:14:22,361 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:22,386 - stpipe.step - INFO - Step superbias done
2026-04-15 20:14:22,540 - stpipe.step - INFO - Step refpix running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00004_nrcalong_uncal.fits>,).
2026-04-15 20:14:22,544 - jwst.refpix.reference_pixels - INFO - NIR subarray data
2026-04-15 20:14:22,547 - jwst.refpix.reference_pixels - INFO - Single readout amplifier used
2026-04-15 20:14:22,548 - jwst.refpix.reference_pixels - INFO - No valid reference pixels. This step will have no effect.
2026-04-15 20:14:22,569 - jwst.refpix.reference_pixels - INFO - Processing the zero frame
2026-04-15 20:14:22,624 - stpipe.step - INFO - Step refpix done
2026-04-15 20:14:22,776 - stpipe.step - INFO - Step linearity running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00004_nrcalong_uncal.fits>,).
2026-04-15 20:14:22,779 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_linearity_0052.fits
2026-04-15 20:14:22,877 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:22,878 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:22,879 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:22,879 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:22,880 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:22,881 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:22,881 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:22,932 - stpipe.step - INFO - Step linearity done
2026-04-15 20:14:23,079 - stpipe.step - INFO - Step persistence running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00004_nrcalong_uncal.fits>,).
2026-04-15 20:14:23,080 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:23,224 - stpipe.step - INFO - Step dark_current running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00004_nrcalong_uncal.fits>,).
2026-04-15 20:14:23,225 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:23,373 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00004_nrcalong_uncal.fits>,).
2026-04-15 20:14:23,374 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:23,530 - stpipe.step - INFO - Step jump running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00004_nrcalong_uncal.fits>,).
2026-04-15 20:14:23,531 - jwst.jump.jump_step - INFO - CR rejection threshold = 4 sigma
2026-04-15 20:14:23,531 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-04-15 20:14:23,534 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:14:23,536 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_readnoise_0284.fits
2026-04-15 20:14:23,568 - jwst.jump.jump_step - INFO - Extracting gain subarray to match science data
2026-04-15 20:14:23,585 - stcal.jump.jump - INFO - Executing two-point difference method
2026-04-15 20:14:23,586 - stcal.jump.jump - INFO - Creating 2 processes for jump detection
2026-04-15 20:14:23,996 - stcal.jump.jump - INFO - Flagging Snowballs
2026-04-15 20:14:24,047 - stcal.jump.jump - INFO - Total snowballs = 32
2026-04-15 20:14:24,048 - stcal.jump.jump - INFO - Total elapsed time = 0.461812 sec
2026-04-15 20:14:24,059 - jwst.jump.jump_step - INFO - The execution time in seconds: 0.528337
2026-04-15 20:14:24,062 - stpipe.step - INFO - Step jump done
2026-04-15 20:14:24,212 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00004_nrcalong_uncal.fits>,).
2026-04-15 20:14:24,213 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:24,353 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00004_nrcalong_uncal.fits>,).
2026-04-15 20:14:24,354 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:24,499 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00004_nrcalong_uncal.fits>,).
2026-04-15 20:14:24,504 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_readnoise_0284.fits
2026-04-15 20:14:24,505 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:14:24,534 - jwst.ramp_fitting.ramp_fit_step - INFO - Extracting gain subarray to match science data
2026-04-15 20:14:24,548 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-04-15 20:14:24,548 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-04-15 20:14:24,550 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-04-15 20:14:24,602 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 0.0519108772277832
2026-04-15 20:14:24,717 - stpipe.step - INFO - Step ramp_fit done
2026-04-15 20:14:24,871 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(320, 320) from jw01386001001_0310e_00004_nrcalong_uncal.fits>,).
2026-04-15 20:14:24,874 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:14:24,891 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:14:24,892 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:14:24,895 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:14:25,049 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(2, 320, 320) from jw01386001001_0310e_00004_nrcalong_uncal.fits>,).
2026-04-15 20:14:25,052 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:14:25,069 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:14:25,069 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:14:25,072 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:14:25,123 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00004_nrcalong_rateints.fits
2026-04-15 20:14:25,123 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-04-15 20:14:25,124 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:14:25,171 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00004_nrcalong_rate.fits
2026-04-15 20:14:25,172 - stpipe.step - INFO - Step Detector1Pipeline done
2026-04-15 20:14:25,172 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:14:25,203 - CRDS - ERROR - Error determining best reference for 'pars-darkcurrentstep' = No match found.
2026-04-15 20:14:25,207 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-jumpstep_0003.asdf
2026-04-15 20:14:25,222 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-detector1pipeline_0007.asdf
2026-04-15 20:14:25,238 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-04-15 20:14:25,239 - stpipe.step - INFO - GroupScaleStep instance created.
2026-04-15 20:14:25,240 - stpipe.step - INFO - DQInitStep instance created.
2026-04-15 20:14:25,241 - stpipe.step - INFO - EmiCorrStep instance created.
2026-04-15 20:14:25,242 - stpipe.step - INFO - SaturationStep instance created.
2026-04-15 20:14:25,242 - stpipe.step - INFO - IPCStep instance created.
2026-04-15 20:14:25,243 - stpipe.step - INFO - SuperBiasStep instance created.
2026-04-15 20:14:25,244 - stpipe.step - INFO - RefPixStep instance created.
2026-04-15 20:14:25,245 - stpipe.step - INFO - RscdStep instance created.
2026-04-15 20:14:25,245 - stpipe.step - INFO - FirstFrameStep instance created.
2026-04-15 20:14:25,246 - stpipe.step - INFO - LastFrameStep instance created.
2026-04-15 20:14:25,247 - stpipe.step - INFO - LinearityStep instance created.
2026-04-15 20:14:25,248 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-04-15 20:14:25,248 - stpipe.step - INFO - ResetStep instance created.
2026-04-15 20:14:25,249 - stpipe.step - INFO - PersistenceStep instance created.
2026-04-15 20:14:25,250 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-04-15 20:14:25,251 - stpipe.step - INFO - JumpStep instance created.
2026-04-15 20:14:25,252 - stpipe.step - INFO - PictureFrameStep instance created.
2026-04-15 20:14:25,253 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-04-15 20:14:25,254 - stpipe.step - INFO - RampFitStep instance created.
2026-04-15 20:14:25,255 - stpipe.step - INFO - GainScaleStep instance created.
2026-04-15 20:14:25,417 - stpipe.step - INFO - Step Detector1Pipeline running with args ('/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/uncal/jw01386001001_0310e_00005_nrcalong_uncal.fits',).
2026-04-15 20:14:25,442 - stpipe.step - INFO - Step Detector1Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_calibrated_ramp: False
steps:
group_scale:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
dq_init:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
user_supplied_dq: None
emicorr:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
algorithm: joint
nints_to_phase: None
nbins: None
scale_reference: True
onthefly_corr_freq: None
use_n_cycles: 3
fit_ints_separately: False
user_supplied_reffile: None
save_intermediate_results: False
saturation:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
n_pix_grow_sat: 1
use_readpatt: True
ipc:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
superbias:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
refpix:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
odd_even_columns: True
use_side_ref_pixels: True
side_smoothing_length: 11
side_gain: 1.0
odd_even_rows: True
ovr_corr_mitigation_ftr: 3.0
preserve_irs2_refpix: False
irs2_mean_subtraction: False
refpix_algorithm: median
sigreject: 4.0
gaussmooth: 1.0
halfwidth: 30
rscd:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
firstframe:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
bright_use_group1: True
lastframe:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
linearity:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
dark_current:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
dark_output: None
average_dark_current: None
reset:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
persistence:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
input_trapsfilled: ''
flag_pers_cutoff: 40.0
save_persistence: False
save_trapsfilled: True
modify_input: False
charge_migration:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
signal_threshold: 25000.0
jump:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
rejection_threshold: 4.0
three_group_rejection_threshold: 6.0
four_group_rejection_threshold: 5.0
maximum_cores: half
flag_4_neighbors: True
max_jump_to_flag_neighbors: 1000
min_jump_to_flag_neighbors: 30
after_jump_flag_dn1: 0
after_jump_flag_time1: 0
after_jump_flag_dn2: 0
after_jump_flag_time2: 0
expand_large_events: True
min_sat_area: 1
min_jump_area: 5
expand_factor: 2
use_ellipses: False
sat_required_snowball: True
min_sat_radius_extend: 2.5
sat_expand: 2
edge_size: 25
mask_snowball_core_next_int: True
snowball_time_masked_next_int: 4000
find_showers: False
max_shower_amplitude: 4.0
extend_snr_threshold: 0.0
extend_min_area: 0
extend_inner_radius: 0
extend_outer_radius: 0.0
extend_ellipse_expand_ratio: 0.0
time_masked_after_shower: 0
min_diffs_single_pass: 10
max_extended_radius: 200
minimum_groups: 3
minimum_sigclip_groups: 100
only_use_ints: True
picture_frame:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
mask_science_regions: True
n_sigma: 2.0
save_mask: False
save_correction: False
clean_flicker_noise:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
autoparam: False
fit_method: median
fit_by_channel: False
background_method: median
background_box_size: None
mask_science_regions: False
apply_flat_field: False
n_sigma: 2.0
fit_histogram: False
single_mask: True
user_mask: None
save_mask: False
save_background: False
save_noise: False
ramp_fit:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
algorithm: OLS_C
int_name: ''
save_opt: False
opt_name: ''
suppress_one_group: False
firstgroup: None
lastgroup: None
maximum_cores: '1'
gain_scale:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
2026-04-15 20:14:25,467 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01386001001_0310e_00005_nrcalong_uncal.fits' reftypes = ['gain', 'linearity', 'mask', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'sirskernel', 'superbias']
2026-04-15 20:14:25,470 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits'.
2026-04-15 20:14:25,471 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_linearity_0052.fits'.
2026-04-15 20:14:25,472 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_mask_0076.fits'.
2026-04-15 20:14:25,472 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_readnoise_0284.fits'.
2026-04-15 20:14:25,473 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-04-15 20:14:25,473 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-04-15 20:14:25,474 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-04-15 20:14:25,474 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_saturation_0097.fits'.
2026-04-15 20:14:25,475 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_sirskernel_0002.asdf'.
2026-04-15 20:14:25,475 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_superbias_0229.fits'.
2026-04-15 20:14:25,476 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-04-15 20:14:25,779 - stpipe.step - INFO - Step group_scale running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00005_nrcalong_uncal.fits>,).
2026-04-15 20:14:25,780 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-04-15 20:14:25,781 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-04-15 20:14:25,783 - stpipe.step - INFO - Step group_scale done
2026-04-15 20:14:25,962 - stpipe.step - INFO - Step dq_init running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00005_nrcalong_uncal.fits>,).
2026-04-15 20:14:25,965 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_mask_0076.fits
2026-04-15 20:14:26,067 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:26,225 - jwst.dq_init.dq_initialization - INFO - Extracting mask subarray to match science data
2026-04-15 20:14:26,254 - stpipe.step - INFO - Step dq_init done
2026-04-15 20:14:26,440 - stpipe.step - INFO - Step saturation running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00005_nrcalong_uncal.fits>,).
2026-04-15 20:14:26,445 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_saturation_0097.fits
2026-04-15 20:14:26,446 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_superbias_0229.fits
2026-04-15 20:14:26,554 - stdatamodels.dynamicdq - WARNING - Keyword RESERVED_4 does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:26,555 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:26,679 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_RESET does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:26,742 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:26,751 - jwst.saturation.saturation - INFO - Extracting reference file subarray to match science data
2026-04-15 20:14:26,771 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 8
2026-04-15 20:14:26,789 - stcal.saturation.saturation - INFO - Detected 0 saturated pixels
2026-04-15 20:14:26,791 - stcal.saturation.saturation - INFO - Detected 0 A/D floor pixels
2026-04-15 20:14:26,809 - stpipe.step - INFO - Step saturation done
2026-04-15 20:14:27,001 - stpipe.step - INFO - Step ipc running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00005_nrcalong_uncal.fits>,).
2026-04-15 20:14:27,002 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:27,191 - stpipe.step - INFO - Step superbias running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00005_nrcalong_uncal.fits>,).
2026-04-15 20:14:27,195 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_superbias_0229.fits
2026-04-15 20:14:27,233 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:27,260 - stpipe.step - INFO - Step superbias done
2026-04-15 20:14:27,442 - stpipe.step - INFO - Step refpix running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00005_nrcalong_uncal.fits>,).
2026-04-15 20:14:27,444 - jwst.refpix.reference_pixels - INFO - NIR subarray data
2026-04-15 20:14:27,447 - jwst.refpix.reference_pixels - INFO - Single readout amplifier used
2026-04-15 20:14:27,447 - jwst.refpix.reference_pixels - INFO - No valid reference pixels. This step will have no effect.
2026-04-15 20:14:27,472 - jwst.refpix.reference_pixels - INFO - Processing the zero frame
2026-04-15 20:14:27,530 - stpipe.step - INFO - Step refpix done
2026-04-15 20:14:27,705 - stpipe.step - INFO - Step linearity running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00005_nrcalong_uncal.fits>,).
2026-04-15 20:14:27,708 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_linearity_0052.fits
2026-04-15 20:14:27,801 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:27,802 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:27,802 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:27,803 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:27,804 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:27,805 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:27,806 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:27,858 - stpipe.step - INFO - Step linearity done
2026-04-15 20:14:28,030 - stpipe.step - INFO - Step persistence running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00005_nrcalong_uncal.fits>,).
2026-04-15 20:14:28,031 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:28,197 - stpipe.step - INFO - Step dark_current running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00005_nrcalong_uncal.fits>,).
2026-04-15 20:14:28,198 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:28,353 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00005_nrcalong_uncal.fits>,).
2026-04-15 20:14:28,354 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:28,492 - stpipe.step - INFO - Step jump running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00005_nrcalong_uncal.fits>,).
2026-04-15 20:14:28,493 - jwst.jump.jump_step - INFO - CR rejection threshold = 4 sigma
2026-04-15 20:14:28,494 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-04-15 20:14:28,497 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:14:28,500 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_readnoise_0284.fits
2026-04-15 20:14:28,529 - jwst.jump.jump_step - INFO - Extracting gain subarray to match science data
2026-04-15 20:14:28,546 - stcal.jump.jump - INFO - Executing two-point difference method
2026-04-15 20:14:28,546 - stcal.jump.jump - INFO - Creating 2 processes for jump detection
2026-04-15 20:14:28,952 - stcal.jump.jump - INFO - Flagging Snowballs
2026-04-15 20:14:29,007 - stcal.jump.jump - INFO - Total snowballs = 31
2026-04-15 20:14:29,007 - stcal.jump.jump - INFO - Total elapsed time = 0.461189 sec
2026-04-15 20:14:29,019 - jwst.jump.jump_step - INFO - The execution time in seconds: 0.525609
2026-04-15 20:14:29,022 - stpipe.step - INFO - Step jump done
2026-04-15 20:14:29,192 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00005_nrcalong_uncal.fits>,).
2026-04-15 20:14:29,193 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:29,362 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00005_nrcalong_uncal.fits>,).
2026-04-15 20:14:29,363 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:29,539 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00005_nrcalong_uncal.fits>,).
2026-04-15 20:14:29,545 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_readnoise_0284.fits
2026-04-15 20:14:29,546 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:14:29,577 - jwst.ramp_fitting.ramp_fit_step - INFO - Extracting gain subarray to match science data
2026-04-15 20:14:29,591 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-04-15 20:14:29,592 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-04-15 20:14:29,593 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-04-15 20:14:29,646 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 0.05166935920715332
2026-04-15 20:14:29,762 - stpipe.step - INFO - Step ramp_fit done
2026-04-15 20:14:29,924 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(320, 320) from jw01386001001_0310e_00005_nrcalong_uncal.fits>,).
2026-04-15 20:14:29,927 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:14:29,943 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:14:29,944 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:14:29,947 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:14:30,108 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(2, 320, 320) from jw01386001001_0310e_00005_nrcalong_uncal.fits>,).
2026-04-15 20:14:30,111 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:14:30,128 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:14:30,129 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:14:30,132 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:14:30,183 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00005_nrcalong_rateints.fits
2026-04-15 20:14:30,183 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-04-15 20:14:30,184 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:14:30,231 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00005_nrcalong_rate.fits
2026-04-15 20:14:30,232 - stpipe.step - INFO - Step Detector1Pipeline done
2026-04-15 20:14:30,233 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:14:30,264 - CRDS - ERROR - Error determining best reference for 'pars-darkcurrentstep' = No match found.
2026-04-15 20:14:30,268 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-jumpstep_0003.asdf
2026-04-15 20:14:30,282 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-detector1pipeline_0007.asdf
2026-04-15 20:14:30,298 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-04-15 20:14:30,299 - stpipe.step - INFO - GroupScaleStep instance created.
2026-04-15 20:14:30,300 - stpipe.step - INFO - DQInitStep instance created.
2026-04-15 20:14:30,301 - stpipe.step - INFO - EmiCorrStep instance created.
2026-04-15 20:14:30,302 - stpipe.step - INFO - SaturationStep instance created.
2026-04-15 20:14:30,303 - stpipe.step - INFO - IPCStep instance created.
2026-04-15 20:14:30,304 - stpipe.step - INFO - SuperBiasStep instance created.
2026-04-15 20:14:30,305 - stpipe.step - INFO - RefPixStep instance created.
2026-04-15 20:14:30,306 - stpipe.step - INFO - RscdStep instance created.
2026-04-15 20:14:30,306 - stpipe.step - INFO - FirstFrameStep instance created.
2026-04-15 20:14:30,307 - stpipe.step - INFO - LastFrameStep instance created.
2026-04-15 20:14:30,308 - stpipe.step - INFO - LinearityStep instance created.
2026-04-15 20:14:30,308 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-04-15 20:14:30,309 - stpipe.step - INFO - ResetStep instance created.
2026-04-15 20:14:30,310 - stpipe.step - INFO - PersistenceStep instance created.
2026-04-15 20:14:30,310 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-04-15 20:14:30,312 - stpipe.step - INFO - JumpStep instance created.
2026-04-15 20:14:30,313 - stpipe.step - INFO - PictureFrameStep instance created.
2026-04-15 20:14:30,314 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-04-15 20:14:30,314 - stpipe.step - INFO - RampFitStep instance created.
2026-04-15 20:14:30,315 - stpipe.step - INFO - GainScaleStep instance created.
2026-04-15 20:14:30,470 - stpipe.step - INFO - Step Detector1Pipeline running with args ('/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/uncal/jw01386001001_0310e_00006_nrcalong_uncal.fits',).
2026-04-15 20:14:30,489 - stpipe.step - INFO - Step Detector1Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_calibrated_ramp: False
steps:
group_scale:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
dq_init:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
user_supplied_dq: None
emicorr:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
algorithm: joint
nints_to_phase: None
nbins: None
scale_reference: True
onthefly_corr_freq: None
use_n_cycles: 3
fit_ints_separately: False
user_supplied_reffile: None
save_intermediate_results: False
saturation:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
n_pix_grow_sat: 1
use_readpatt: True
ipc:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
superbias:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
refpix:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
odd_even_columns: True
use_side_ref_pixels: True
side_smoothing_length: 11
side_gain: 1.0
odd_even_rows: True
ovr_corr_mitigation_ftr: 3.0
preserve_irs2_refpix: False
irs2_mean_subtraction: False
refpix_algorithm: median
sigreject: 4.0
gaussmooth: 1.0
halfwidth: 30
rscd:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
firstframe:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
bright_use_group1: True
lastframe:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
linearity:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
dark_current:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
dark_output: None
average_dark_current: None
reset:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
persistence:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
input_trapsfilled: ''
flag_pers_cutoff: 40.0
save_persistence: False
save_trapsfilled: True
modify_input: False
charge_migration:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
signal_threshold: 25000.0
jump:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
rejection_threshold: 4.0
three_group_rejection_threshold: 6.0
four_group_rejection_threshold: 5.0
maximum_cores: half
flag_4_neighbors: True
max_jump_to_flag_neighbors: 1000
min_jump_to_flag_neighbors: 30
after_jump_flag_dn1: 0
after_jump_flag_time1: 0
after_jump_flag_dn2: 0
after_jump_flag_time2: 0
expand_large_events: True
min_sat_area: 1
min_jump_area: 5
expand_factor: 2
use_ellipses: False
sat_required_snowball: True
min_sat_radius_extend: 2.5
sat_expand: 2
edge_size: 25
mask_snowball_core_next_int: True
snowball_time_masked_next_int: 4000
find_showers: False
max_shower_amplitude: 4.0
extend_snr_threshold: 0.0
extend_min_area: 0
extend_inner_radius: 0
extend_outer_radius: 0.0
extend_ellipse_expand_ratio: 0.0
time_masked_after_shower: 0
min_diffs_single_pass: 10
max_extended_radius: 200
minimum_groups: 3
minimum_sigclip_groups: 100
only_use_ints: True
picture_frame:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
mask_science_regions: True
n_sigma: 2.0
save_mask: False
save_correction: False
clean_flicker_noise:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
autoparam: False
fit_method: median
fit_by_channel: False
background_method: median
background_box_size: None
mask_science_regions: False
apply_flat_field: False
n_sigma: 2.0
fit_histogram: False
single_mask: True
user_mask: None
save_mask: False
save_background: False
save_noise: False
ramp_fit:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
algorithm: OLS_C
int_name: ''
save_opt: False
opt_name: ''
suppress_one_group: False
firstgroup: None
lastgroup: None
maximum_cores: '1'
gain_scale:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
2026-04-15 20:14:30,514 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01386001001_0310e_00006_nrcalong_uncal.fits' reftypes = ['gain', 'linearity', 'mask', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'sirskernel', 'superbias']
2026-04-15 20:14:30,517 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits'.
2026-04-15 20:14:30,518 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_linearity_0052.fits'.
2026-04-15 20:14:30,519 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_mask_0076.fits'.
2026-04-15 20:14:30,519 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_readnoise_0284.fits'.
2026-04-15 20:14:30,520 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-04-15 20:14:30,520 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-04-15 20:14:30,521 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-04-15 20:14:30,521 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_saturation_0097.fits'.
2026-04-15 20:14:30,522 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_sirskernel_0002.asdf'.
2026-04-15 20:14:30,523 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_superbias_0229.fits'.
2026-04-15 20:14:30,523 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-04-15 20:14:30,829 - stpipe.step - INFO - Step group_scale running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00006_nrcalong_uncal.fits>,).
2026-04-15 20:14:30,830 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-04-15 20:14:30,830 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-04-15 20:14:30,832 - stpipe.step - INFO - Step group_scale done
2026-04-15 20:14:31,003 - stpipe.step - INFO - Step dq_init running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00006_nrcalong_uncal.fits>,).
2026-04-15 20:14:31,006 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_mask_0076.fits
2026-04-15 20:14:31,106 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:31,256 - jwst.dq_init.dq_initialization - INFO - Extracting mask subarray to match science data
2026-04-15 20:14:31,283 - stpipe.step - INFO - Step dq_init done
2026-04-15 20:14:31,471 - stpipe.step - INFO - Step saturation running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00006_nrcalong_uncal.fits>,).
2026-04-15 20:14:31,476 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_saturation_0097.fits
2026-04-15 20:14:31,477 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_superbias_0229.fits
2026-04-15 20:14:31,571 - stdatamodels.dynamicdq - WARNING - Keyword RESERVED_4 does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:31,571 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:31,675 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_RESET does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:31,735 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:31,744 - jwst.saturation.saturation - INFO - Extracting reference file subarray to match science data
2026-04-15 20:14:31,763 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 8
2026-04-15 20:14:31,780 - stcal.saturation.saturation - INFO - Detected 14 saturated pixels
2026-04-15 20:14:31,781 - stcal.saturation.saturation - INFO - Detected 0 A/D floor pixels
2026-04-15 20:14:31,799 - stpipe.step - INFO - Step saturation done
2026-04-15 20:14:31,989 - stpipe.step - INFO - Step ipc running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00006_nrcalong_uncal.fits>,).
2026-04-15 20:14:31,990 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:32,173 - stpipe.step - INFO - Step superbias running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00006_nrcalong_uncal.fits>,).
2026-04-15 20:14:32,176 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_superbias_0229.fits
2026-04-15 20:14:32,221 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:32,251 - stpipe.step - INFO - Step superbias done
2026-04-15 20:14:32,407 - stpipe.step - INFO - Step refpix running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00006_nrcalong_uncal.fits>,).
2026-04-15 20:14:32,409 - jwst.refpix.reference_pixels - INFO - NIR subarray data
2026-04-15 20:14:32,412 - jwst.refpix.reference_pixels - INFO - Single readout amplifier used
2026-04-15 20:14:32,412 - jwst.refpix.reference_pixels - INFO - No valid reference pixels. This step will have no effect.
2026-04-15 20:14:32,433 - jwst.refpix.reference_pixels - INFO - Processing the zero frame
2026-04-15 20:14:32,486 - stpipe.step - INFO - Step refpix done
2026-04-15 20:14:32,622 - stpipe.step - INFO - Step linearity running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00006_nrcalong_uncal.fits>,).
2026-04-15 20:14:32,625 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_linearity_0052.fits
2026-04-15 20:14:32,708 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:32,709 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:32,710 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:32,711 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:32,712 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:32,712 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:32,713 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:32,763 - stpipe.step - INFO - Step linearity done
2026-04-15 20:14:32,899 - stpipe.step - INFO - Step persistence running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00006_nrcalong_uncal.fits>,).
2026-04-15 20:14:32,899 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:33,050 - stpipe.step - INFO - Step dark_current running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00006_nrcalong_uncal.fits>,).
2026-04-15 20:14:33,051 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:33,222 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00006_nrcalong_uncal.fits>,).
2026-04-15 20:14:33,223 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:33,410 - stpipe.step - INFO - Step jump running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00006_nrcalong_uncal.fits>,).
2026-04-15 20:14:33,410 - jwst.jump.jump_step - INFO - CR rejection threshold = 4 sigma
2026-04-15 20:14:33,411 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-04-15 20:14:33,414 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:14:33,417 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_readnoise_0284.fits
2026-04-15 20:14:33,449 - jwst.jump.jump_step - INFO - Extracting gain subarray to match science data
2026-04-15 20:14:33,466 - stcal.jump.jump - INFO - Executing two-point difference method
2026-04-15 20:14:33,467 - stcal.jump.jump - INFO - Creating 2 processes for jump detection
2026-04-15 20:14:33,952 - stcal.jump.jump - INFO - Flagging Snowballs
2026-04-15 20:14:34,007 - stcal.jump.jump - INFO - Total snowballs = 33
2026-04-15 20:14:34,008 - stcal.jump.jump - INFO - Total elapsed time = 0.540539 sec
2026-04-15 20:14:34,022 - jwst.jump.jump_step - INFO - The execution time in seconds: 0.611385
2026-04-15 20:14:34,025 - stpipe.step - INFO - Step jump done
2026-04-15 20:14:34,261 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00006_nrcalong_uncal.fits>,).
2026-04-15 20:14:34,262 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:34,506 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00006_nrcalong_uncal.fits>,).
2026-04-15 20:14:34,507 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:34,717 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00006_nrcalong_uncal.fits>,).
2026-04-15 20:14:34,723 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_readnoise_0284.fits
2026-04-15 20:14:34,724 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:14:34,755 - jwst.ramp_fitting.ramp_fit_step - INFO - Extracting gain subarray to match science data
2026-04-15 20:14:34,769 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-04-15 20:14:34,769 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-04-15 20:14:34,772 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-04-15 20:14:34,824 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 0.05149269104003906
2026-04-15 20:14:34,951 - stpipe.step - INFO - Step ramp_fit done
2026-04-15 20:14:35,142 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(320, 320) from jw01386001001_0310e_00006_nrcalong_uncal.fits>,).
2026-04-15 20:14:35,146 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:14:35,164 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:14:35,164 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:14:35,167 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:14:35,359 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(2, 320, 320) from jw01386001001_0310e_00006_nrcalong_uncal.fits>,).
2026-04-15 20:14:35,363 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:14:35,381 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:14:35,382 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:14:35,385 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:14:35,438 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00006_nrcalong_rateints.fits
2026-04-15 20:14:35,439 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-04-15 20:14:35,440 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:14:35,489 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00006_nrcalong_rate.fits
2026-04-15 20:14:35,490 - stpipe.step - INFO - Step Detector1Pipeline done
2026-04-15 20:14:35,490 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:14:35,523 - CRDS - ERROR - Error determining best reference for 'pars-darkcurrentstep' = No match found.
2026-04-15 20:14:35,527 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-jumpstep_0003.asdf
2026-04-15 20:14:35,542 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-detector1pipeline_0007.asdf
2026-04-15 20:14:35,559 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-04-15 20:14:35,560 - stpipe.step - INFO - GroupScaleStep instance created.
2026-04-15 20:14:35,561 - stpipe.step - INFO - DQInitStep instance created.
2026-04-15 20:14:35,563 - stpipe.step - INFO - EmiCorrStep instance created.
2026-04-15 20:14:35,563 - stpipe.step - INFO - SaturationStep instance created.
2026-04-15 20:14:35,564 - stpipe.step - INFO - IPCStep instance created.
2026-04-15 20:14:35,565 - stpipe.step - INFO - SuperBiasStep instance created.
2026-04-15 20:14:35,566 - stpipe.step - INFO - RefPixStep instance created.
2026-04-15 20:14:35,567 - stpipe.step - INFO - RscdStep instance created.
2026-04-15 20:14:35,568 - stpipe.step - INFO - FirstFrameStep instance created.
2026-04-15 20:14:35,569 - stpipe.step - INFO - LastFrameStep instance created.
2026-04-15 20:14:35,570 - stpipe.step - INFO - LinearityStep instance created.
2026-04-15 20:14:35,572 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-04-15 20:14:35,573 - stpipe.step - INFO - ResetStep instance created.
2026-04-15 20:14:35,573 - stpipe.step - INFO - PersistenceStep instance created.
2026-04-15 20:14:35,574 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-04-15 20:14:35,576 - stpipe.step - INFO - JumpStep instance created.
2026-04-15 20:14:35,577 - stpipe.step - INFO - PictureFrameStep instance created.
2026-04-15 20:14:35,578 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-04-15 20:14:35,579 - stpipe.step - INFO - RampFitStep instance created.
2026-04-15 20:14:35,580 - stpipe.step - INFO - GainScaleStep instance created.
2026-04-15 20:14:35,776 - stpipe.step - INFO - Step Detector1Pipeline running with args ('/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/uncal/jw01386001001_0310e_00007_nrcalong_uncal.fits',).
2026-04-15 20:14:35,797 - stpipe.step - INFO - Step Detector1Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_calibrated_ramp: False
steps:
group_scale:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
dq_init:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
user_supplied_dq: None
emicorr:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
algorithm: joint
nints_to_phase: None
nbins: None
scale_reference: True
onthefly_corr_freq: None
use_n_cycles: 3
fit_ints_separately: False
user_supplied_reffile: None
save_intermediate_results: False
saturation:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
n_pix_grow_sat: 1
use_readpatt: True
ipc:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
superbias:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
refpix:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
odd_even_columns: True
use_side_ref_pixels: True
side_smoothing_length: 11
side_gain: 1.0
odd_even_rows: True
ovr_corr_mitigation_ftr: 3.0
preserve_irs2_refpix: False
irs2_mean_subtraction: False
refpix_algorithm: median
sigreject: 4.0
gaussmooth: 1.0
halfwidth: 30
rscd:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
firstframe:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
bright_use_group1: True
lastframe:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
linearity:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
dark_current:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
dark_output: None
average_dark_current: None
reset:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
persistence:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
input_trapsfilled: ''
flag_pers_cutoff: 40.0
save_persistence: False
save_trapsfilled: True
modify_input: False
charge_migration:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
signal_threshold: 25000.0
jump:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
rejection_threshold: 4.0
three_group_rejection_threshold: 6.0
four_group_rejection_threshold: 5.0
maximum_cores: half
flag_4_neighbors: True
max_jump_to_flag_neighbors: 1000
min_jump_to_flag_neighbors: 30
after_jump_flag_dn1: 0
after_jump_flag_time1: 0
after_jump_flag_dn2: 0
after_jump_flag_time2: 0
expand_large_events: True
min_sat_area: 1
min_jump_area: 5
expand_factor: 2
use_ellipses: False
sat_required_snowball: True
min_sat_radius_extend: 2.5
sat_expand: 2
edge_size: 25
mask_snowball_core_next_int: True
snowball_time_masked_next_int: 4000
find_showers: False
max_shower_amplitude: 4.0
extend_snr_threshold: 0.0
extend_min_area: 0
extend_inner_radius: 0
extend_outer_radius: 0.0
extend_ellipse_expand_ratio: 0.0
time_masked_after_shower: 0
min_diffs_single_pass: 10
max_extended_radius: 200
minimum_groups: 3
minimum_sigclip_groups: 100
only_use_ints: True
picture_frame:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
mask_science_regions: True
n_sigma: 2.0
save_mask: False
save_correction: False
clean_flicker_noise:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
autoparam: False
fit_method: median
fit_by_channel: False
background_method: median
background_box_size: None
mask_science_regions: False
apply_flat_field: False
n_sigma: 2.0
fit_histogram: False
single_mask: True
user_mask: None
save_mask: False
save_background: False
save_noise: False
ramp_fit:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
algorithm: OLS_C
int_name: ''
save_opt: False
opt_name: ''
suppress_one_group: False
firstgroup: None
lastgroup: None
maximum_cores: '1'
gain_scale:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
2026-04-15 20:14:35,823 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01386001001_0310e_00007_nrcalong_uncal.fits' reftypes = ['gain', 'linearity', 'mask', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'sirskernel', 'superbias']
2026-04-15 20:14:35,826 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits'.
2026-04-15 20:14:35,827 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_linearity_0052.fits'.
2026-04-15 20:14:35,828 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_mask_0076.fits'.
2026-04-15 20:14:35,828 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_readnoise_0284.fits'.
2026-04-15 20:14:35,829 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-04-15 20:14:35,829 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-04-15 20:14:35,830 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-04-15 20:14:35,830 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_saturation_0097.fits'.
2026-04-15 20:14:35,831 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_sirskernel_0002.asdf'.
2026-04-15 20:14:35,832 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_superbias_0229.fits'.
2026-04-15 20:14:35,832 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-04-15 20:14:36,159 - stpipe.step - INFO - Step group_scale running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00007_nrcalong_uncal.fits>,).
2026-04-15 20:14:36,161 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-04-15 20:14:36,162 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-04-15 20:14:36,164 - stpipe.step - INFO - Step group_scale done
2026-04-15 20:14:36,361 - stpipe.step - INFO - Step dq_init running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00007_nrcalong_uncal.fits>,).
2026-04-15 20:14:36,364 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_mask_0076.fits
2026-04-15 20:14:36,479 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:36,671 - jwst.dq_init.dq_initialization - INFO - Extracting mask subarray to match science data
2026-04-15 20:14:36,699 - stpipe.step - INFO - Step dq_init done
2026-04-15 20:14:36,887 - stpipe.step - INFO - Step saturation running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00007_nrcalong_uncal.fits>,).
2026-04-15 20:14:36,892 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_saturation_0097.fits
2026-04-15 20:14:36,892 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_superbias_0229.fits
2026-04-15 20:14:37,020 - stdatamodels.dynamicdq - WARNING - Keyword RESERVED_4 does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:37,021 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:37,188 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_RESET does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:37,253 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:37,262 - jwst.saturation.saturation - INFO - Extracting reference file subarray to match science data
2026-04-15 20:14:37,282 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 8
2026-04-15 20:14:37,298 - stcal.saturation.saturation - INFO - Detected 0 saturated pixels
2026-04-15 20:14:37,300 - stcal.saturation.saturation - INFO - Detected 0 A/D floor pixels
2026-04-15 20:14:37,318 - stpipe.step - INFO - Step saturation done
2026-04-15 20:14:37,507 - stpipe.step - INFO - Step ipc running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00007_nrcalong_uncal.fits>,).
2026-04-15 20:14:37,508 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:37,692 - stpipe.step - INFO - Step superbias running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00007_nrcalong_uncal.fits>,).
2026-04-15 20:14:37,695 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_superbias_0229.fits
2026-04-15 20:14:37,733 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:37,761 - stpipe.step - INFO - Step superbias done
2026-04-15 20:14:37,933 - stpipe.step - INFO - Step refpix running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00007_nrcalong_uncal.fits>,).
2026-04-15 20:14:37,936 - jwst.refpix.reference_pixels - INFO - NIR subarray data
2026-04-15 20:14:37,939 - jwst.refpix.reference_pixels - INFO - Single readout amplifier used
2026-04-15 20:14:37,940 - jwst.refpix.reference_pixels - INFO - No valid reference pixels. This step will have no effect.
2026-04-15 20:14:37,964 - jwst.refpix.reference_pixels - INFO - Processing the zero frame
2026-04-15 20:14:38,022 - stpipe.step - INFO - Step refpix done
2026-04-15 20:14:38,201 - stpipe.step - INFO - Step linearity running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00007_nrcalong_uncal.fits>,).
2026-04-15 20:14:38,205 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_linearity_0052.fits
2026-04-15 20:14:38,304 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:38,305 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:38,306 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:38,306 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:38,307 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:38,308 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:38,309 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:38,362 - stpipe.step - INFO - Step linearity done
2026-04-15 20:14:38,544 - stpipe.step - INFO - Step persistence running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00007_nrcalong_uncal.fits>,).
2026-04-15 20:14:38,545 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:38,733 - stpipe.step - INFO - Step dark_current running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00007_nrcalong_uncal.fits>,).
2026-04-15 20:14:38,734 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:38,913 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00007_nrcalong_uncal.fits>,).
2026-04-15 20:14:38,914 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:39,077 - stpipe.step - INFO - Step jump running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00007_nrcalong_uncal.fits>,).
2026-04-15 20:14:39,078 - jwst.jump.jump_step - INFO - CR rejection threshold = 4 sigma
2026-04-15 20:14:39,078 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-04-15 20:14:39,081 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:14:39,084 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_readnoise_0284.fits
2026-04-15 20:14:39,115 - jwst.jump.jump_step - INFO - Extracting gain subarray to match science data
2026-04-15 20:14:39,133 - stcal.jump.jump - INFO - Executing two-point difference method
2026-04-15 20:14:39,133 - stcal.jump.jump - INFO - Creating 2 processes for jump detection
2026-04-15 20:14:39,571 - stcal.jump.jump - INFO - Flagging Snowballs
2026-04-15 20:14:39,629 - stcal.jump.jump - INFO - Total snowballs = 30
2026-04-15 20:14:39,630 - stcal.jump.jump - INFO - Total elapsed time = 0.496497 sec
2026-04-15 20:14:39,643 - jwst.jump.jump_step - INFO - The execution time in seconds: 0.565188
2026-04-15 20:14:39,646 - stpipe.step - INFO - Step jump done
2026-04-15 20:14:39,843 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00007_nrcalong_uncal.fits>,).
2026-04-15 20:14:39,843 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:40,038 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00007_nrcalong_uncal.fits>,).
2026-04-15 20:14:40,040 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:40,249 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00007_nrcalong_uncal.fits>,).
2026-04-15 20:14:40,255 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_readnoise_0284.fits
2026-04-15 20:14:40,256 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:14:40,288 - jwst.ramp_fitting.ramp_fit_step - INFO - Extracting gain subarray to match science data
2026-04-15 20:14:40,303 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-04-15 20:14:40,303 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-04-15 20:14:40,305 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-04-15 20:14:40,360 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 0.053637027740478516
2026-04-15 20:14:40,480 - stpipe.step - INFO - Step ramp_fit done
2026-04-15 20:14:40,654 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(320, 320) from jw01386001001_0310e_00007_nrcalong_uncal.fits>,).
2026-04-15 20:14:40,658 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:14:40,676 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:14:40,677 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:14:40,680 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:14:40,856 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(2, 320, 320) from jw01386001001_0310e_00007_nrcalong_uncal.fits>,).
2026-04-15 20:14:40,859 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:14:40,877 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:14:40,878 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:14:40,881 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:14:40,934 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00007_nrcalong_rateints.fits
2026-04-15 20:14:40,935 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-04-15 20:14:40,935 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:14:40,984 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00007_nrcalong_rate.fits
2026-04-15 20:14:40,984 - stpipe.step - INFO - Step Detector1Pipeline done
2026-04-15 20:14:40,985 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:14:41,016 - CRDS - ERROR - Error determining best reference for 'pars-darkcurrentstep' = No match found.
2026-04-15 20:14:41,021 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-jumpstep_0003.asdf
2026-04-15 20:14:41,035 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-detector1pipeline_0007.asdf
2026-04-15 20:14:41,052 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-04-15 20:14:41,053 - stpipe.step - INFO - GroupScaleStep instance created.
2026-04-15 20:14:41,053 - stpipe.step - INFO - DQInitStep instance created.
2026-04-15 20:14:41,055 - stpipe.step - INFO - EmiCorrStep instance created.
2026-04-15 20:14:41,056 - stpipe.step - INFO - SaturationStep instance created.
2026-04-15 20:14:41,057 - stpipe.step - INFO - IPCStep instance created.
2026-04-15 20:14:41,058 - stpipe.step - INFO - SuperBiasStep instance created.
2026-04-15 20:14:41,059 - stpipe.step - INFO - RefPixStep instance created.
2026-04-15 20:14:41,060 - stpipe.step - INFO - RscdStep instance created.
2026-04-15 20:14:41,061 - stpipe.step - INFO - FirstFrameStep instance created.
2026-04-15 20:14:41,061 - stpipe.step - INFO - LastFrameStep instance created.
2026-04-15 20:14:41,062 - stpipe.step - INFO - LinearityStep instance created.
2026-04-15 20:14:41,063 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-04-15 20:14:41,064 - stpipe.step - INFO - ResetStep instance created.
2026-04-15 20:14:41,065 - stpipe.step - INFO - PersistenceStep instance created.
2026-04-15 20:14:41,066 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-04-15 20:14:41,068 - stpipe.step - INFO - JumpStep instance created.
2026-04-15 20:14:41,069 - stpipe.step - INFO - PictureFrameStep instance created.
2026-04-15 20:14:41,070 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-04-15 20:14:41,071 - stpipe.step - INFO - RampFitStep instance created.
2026-04-15 20:14:41,072 - stpipe.step - INFO - GainScaleStep instance created.
2026-04-15 20:14:41,258 - stpipe.step - INFO - Step Detector1Pipeline running with args ('/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/uncal/jw01386001001_0310e_00008_nrcalong_uncal.fits',).
2026-04-15 20:14:41,277 - stpipe.step - INFO - Step Detector1Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_calibrated_ramp: False
steps:
group_scale:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
dq_init:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
user_supplied_dq: None
emicorr:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
algorithm: joint
nints_to_phase: None
nbins: None
scale_reference: True
onthefly_corr_freq: None
use_n_cycles: 3
fit_ints_separately: False
user_supplied_reffile: None
save_intermediate_results: False
saturation:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
n_pix_grow_sat: 1
use_readpatt: True
ipc:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
superbias:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
refpix:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
odd_even_columns: True
use_side_ref_pixels: True
side_smoothing_length: 11
side_gain: 1.0
odd_even_rows: True
ovr_corr_mitigation_ftr: 3.0
preserve_irs2_refpix: False
irs2_mean_subtraction: False
refpix_algorithm: median
sigreject: 4.0
gaussmooth: 1.0
halfwidth: 30
rscd:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
firstframe:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
bright_use_group1: True
lastframe:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
linearity:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
dark_current:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
dark_output: None
average_dark_current: None
reset:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
persistence:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
input_trapsfilled: ''
flag_pers_cutoff: 40.0
save_persistence: False
save_trapsfilled: True
modify_input: False
charge_migration:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
signal_threshold: 25000.0
jump:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
rejection_threshold: 4.0
three_group_rejection_threshold: 6.0
four_group_rejection_threshold: 5.0
maximum_cores: half
flag_4_neighbors: True
max_jump_to_flag_neighbors: 1000
min_jump_to_flag_neighbors: 30
after_jump_flag_dn1: 0
after_jump_flag_time1: 0
after_jump_flag_dn2: 0
after_jump_flag_time2: 0
expand_large_events: True
min_sat_area: 1
min_jump_area: 5
expand_factor: 2
use_ellipses: False
sat_required_snowball: True
min_sat_radius_extend: 2.5
sat_expand: 2
edge_size: 25
mask_snowball_core_next_int: True
snowball_time_masked_next_int: 4000
find_showers: False
max_shower_amplitude: 4.0
extend_snr_threshold: 0.0
extend_min_area: 0
extend_inner_radius: 0
extend_outer_radius: 0.0
extend_ellipse_expand_ratio: 0.0
time_masked_after_shower: 0
min_diffs_single_pass: 10
max_extended_radius: 200
minimum_groups: 3
minimum_sigclip_groups: 100
only_use_ints: True
picture_frame:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
mask_science_regions: True
n_sigma: 2.0
save_mask: False
save_correction: False
clean_flicker_noise:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
autoparam: False
fit_method: median
fit_by_channel: False
background_method: median
background_box_size: None
mask_science_regions: False
apply_flat_field: False
n_sigma: 2.0
fit_histogram: False
single_mask: True
user_mask: None
save_mask: False
save_background: False
save_noise: False
ramp_fit:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
algorithm: OLS_C
int_name: ''
save_opt: False
opt_name: ''
suppress_one_group: False
firstgroup: None
lastgroup: None
maximum_cores: '1'
gain_scale:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
2026-04-15 20:14:41,302 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01386001001_0310e_00008_nrcalong_uncal.fits' reftypes = ['gain', 'linearity', 'mask', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'sirskernel', 'superbias']
2026-04-15 20:14:41,306 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits'.
2026-04-15 20:14:41,307 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_linearity_0052.fits'.
2026-04-15 20:14:41,307 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_mask_0076.fits'.
2026-04-15 20:14:41,308 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_readnoise_0284.fits'.
2026-04-15 20:14:41,308 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-04-15 20:14:41,309 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-04-15 20:14:41,309 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-04-15 20:14:41,310 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_saturation_0097.fits'.
2026-04-15 20:14:41,310 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_sirskernel_0002.asdf'.
2026-04-15 20:14:41,311 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_superbias_0229.fits'.
2026-04-15 20:14:41,312 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-04-15 20:14:41,627 - stpipe.step - INFO - Step group_scale running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00008_nrcalong_uncal.fits>,).
2026-04-15 20:14:41,628 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-04-15 20:14:41,629 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-04-15 20:14:41,631 - stpipe.step - INFO - Step group_scale done
2026-04-15 20:14:41,843 - stpipe.step - INFO - Step dq_init running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00008_nrcalong_uncal.fits>,).
2026-04-15 20:14:41,846 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_mask_0076.fits
2026-04-15 20:14:41,952 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:42,131 - jwst.dq_init.dq_initialization - INFO - Extracting mask subarray to match science data
2026-04-15 20:14:42,159 - stpipe.step - INFO - Step dq_init done
2026-04-15 20:14:42,341 - stpipe.step - INFO - Step saturation running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00008_nrcalong_uncal.fits>,).
2026-04-15 20:14:42,346 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_saturation_0097.fits
2026-04-15 20:14:42,346 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_superbias_0229.fits
2026-04-15 20:14:42,448 - stdatamodels.dynamicdq - WARNING - Keyword RESERVED_4 does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:42,449 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:42,568 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_RESET does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:42,629 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:42,637 - jwst.saturation.saturation - INFO - Extracting reference file subarray to match science data
2026-04-15 20:14:42,655 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 8
2026-04-15 20:14:42,671 - stcal.saturation.saturation - INFO - Detected 0 saturated pixels
2026-04-15 20:14:42,673 - stcal.saturation.saturation - INFO - Detected 0 A/D floor pixels
2026-04-15 20:14:42,690 - stpipe.step - INFO - Step saturation done
2026-04-15 20:14:42,849 - stpipe.step - INFO - Step ipc running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00008_nrcalong_uncal.fits>,).
2026-04-15 20:14:42,850 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:43,006 - stpipe.step - INFO - Step superbias running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00008_nrcalong_uncal.fits>,).
2026-04-15 20:14:43,009 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_superbias_0229.fits
2026-04-15 20:14:43,044 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:43,069 - stpipe.step - INFO - Step superbias done
2026-04-15 20:14:43,226 - stpipe.step - INFO - Step refpix running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00008_nrcalong_uncal.fits>,).
2026-04-15 20:14:43,229 - jwst.refpix.reference_pixels - INFO - NIR subarray data
2026-04-15 20:14:43,232 - jwst.refpix.reference_pixels - INFO - Single readout amplifier used
2026-04-15 20:14:43,232 - jwst.refpix.reference_pixels - INFO - No valid reference pixels. This step will have no effect.
2026-04-15 20:14:43,252 - jwst.refpix.reference_pixels - INFO - Processing the zero frame
2026-04-15 20:14:43,302 - stpipe.step - INFO - Step refpix done
2026-04-15 20:14:43,455 - stpipe.step - INFO - Step linearity running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00008_nrcalong_uncal.fits>,).
2026-04-15 20:14:43,459 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_linearity_0052.fits
2026-04-15 20:14:43,545 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:43,546 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:43,547 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:43,548 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:43,549 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:43,549 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:43,550 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:43,602 - stpipe.step - INFO - Step linearity done
2026-04-15 20:14:43,755 - stpipe.step - INFO - Step persistence running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00008_nrcalong_uncal.fits>,).
2026-04-15 20:14:43,756 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:43,913 - stpipe.step - INFO - Step dark_current running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00008_nrcalong_uncal.fits>,).
2026-04-15 20:14:43,914 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:44,072 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00008_nrcalong_uncal.fits>,).
2026-04-15 20:14:44,073 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:44,242 - stpipe.step - INFO - Step jump running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00008_nrcalong_uncal.fits>,).
2026-04-15 20:14:44,243 - jwst.jump.jump_step - INFO - CR rejection threshold = 4 sigma
2026-04-15 20:14:44,243 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-04-15 20:14:44,248 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:14:44,250 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_readnoise_0284.fits
2026-04-15 20:14:44,280 - jwst.jump.jump_step - INFO - Extracting gain subarray to match science data
2026-04-15 20:14:44,296 - stcal.jump.jump - INFO - Executing two-point difference method
2026-04-15 20:14:44,297 - stcal.jump.jump - INFO - Creating 2 processes for jump detection
2026-04-15 20:14:44,684 - stcal.jump.jump - INFO - Flagging Snowballs
2026-04-15 20:14:44,734 - stcal.jump.jump - INFO - Total snowballs = 19
2026-04-15 20:14:44,734 - stcal.jump.jump - INFO - Total elapsed time = 0.437779 sec
2026-04-15 20:14:44,746 - jwst.jump.jump_step - INFO - The execution time in seconds: 0.502875
2026-04-15 20:14:44,748 - stpipe.step - INFO - Step jump done
2026-04-15 20:14:44,895 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00008_nrcalong_uncal.fits>,).
2026-04-15 20:14:44,896 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:45,039 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00008_nrcalong_uncal.fits>,).
2026-04-15 20:14:45,040 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:45,193 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00008_nrcalong_uncal.fits>,).
2026-04-15 20:14:45,198 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_readnoise_0284.fits
2026-04-15 20:14:45,198 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:14:45,228 - jwst.ramp_fitting.ramp_fit_step - INFO - Extracting gain subarray to match science data
2026-04-15 20:14:45,242 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-04-15 20:14:45,242 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-04-15 20:14:45,244 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-04-15 20:14:45,296 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 0.05157780647277832
2026-04-15 20:14:45,411 - stpipe.step - INFO - Step ramp_fit done
2026-04-15 20:14:45,562 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(320, 320) from jw01386001001_0310e_00008_nrcalong_uncal.fits>,).
2026-04-15 20:14:45,565 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:14:45,581 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:14:45,582 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:14:45,585 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:14:45,735 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(2, 320, 320) from jw01386001001_0310e_00008_nrcalong_uncal.fits>,).
2026-04-15 20:14:45,738 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:14:45,755 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:14:45,756 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:14:45,759 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:14:45,809 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00008_nrcalong_rateints.fits
2026-04-15 20:14:45,809 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-04-15 20:14:45,810 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:14:45,856 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00008_nrcalong_rate.fits
2026-04-15 20:14:45,857 - stpipe.step - INFO - Step Detector1Pipeline done
2026-04-15 20:14:45,857 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:14:45,888 - CRDS - ERROR - Error determining best reference for 'pars-darkcurrentstep' = No match found.
2026-04-15 20:14:45,892 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-jumpstep_0003.asdf
2026-04-15 20:14:45,905 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-detector1pipeline_0007.asdf
2026-04-15 20:14:45,921 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-04-15 20:14:45,922 - stpipe.step - INFO - GroupScaleStep instance created.
2026-04-15 20:14:45,923 - stpipe.step - INFO - DQInitStep instance created.
2026-04-15 20:14:45,924 - stpipe.step - INFO - EmiCorrStep instance created.
2026-04-15 20:14:45,925 - stpipe.step - INFO - SaturationStep instance created.
2026-04-15 20:14:45,925 - stpipe.step - INFO - IPCStep instance created.
2026-04-15 20:14:45,926 - stpipe.step - INFO - SuperBiasStep instance created.
2026-04-15 20:14:45,927 - stpipe.step - INFO - RefPixStep instance created.
2026-04-15 20:14:45,928 - stpipe.step - INFO - RscdStep instance created.
2026-04-15 20:14:45,929 - stpipe.step - INFO - FirstFrameStep instance created.
2026-04-15 20:14:45,930 - stpipe.step - INFO - LastFrameStep instance created.
2026-04-15 20:14:45,931 - stpipe.step - INFO - LinearityStep instance created.
2026-04-15 20:14:45,931 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-04-15 20:14:45,932 - stpipe.step - INFO - ResetStep instance created.
2026-04-15 20:14:45,933 - stpipe.step - INFO - PersistenceStep instance created.
2026-04-15 20:14:45,933 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-04-15 20:14:45,935 - stpipe.step - INFO - JumpStep instance created.
2026-04-15 20:14:45,936 - stpipe.step - INFO - PictureFrameStep instance created.
2026-04-15 20:14:45,937 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-04-15 20:14:45,938 - stpipe.step - INFO - RampFitStep instance created.
2026-04-15 20:14:45,939 - stpipe.step - INFO - GainScaleStep instance created.
2026-04-15 20:14:46,097 - stpipe.step - INFO - Step Detector1Pipeline running with args ('/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/uncal/jw01386001001_0310e_00009_nrcalong_uncal.fits',).
2026-04-15 20:14:46,116 - stpipe.step - INFO - Step Detector1Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_calibrated_ramp: False
steps:
group_scale:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
dq_init:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
user_supplied_dq: None
emicorr:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
algorithm: joint
nints_to_phase: None
nbins: None
scale_reference: True
onthefly_corr_freq: None
use_n_cycles: 3
fit_ints_separately: False
user_supplied_reffile: None
save_intermediate_results: False
saturation:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
n_pix_grow_sat: 1
use_readpatt: True
ipc:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
superbias:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
refpix:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
odd_even_columns: True
use_side_ref_pixels: True
side_smoothing_length: 11
side_gain: 1.0
odd_even_rows: True
ovr_corr_mitigation_ftr: 3.0
preserve_irs2_refpix: False
irs2_mean_subtraction: False
refpix_algorithm: median
sigreject: 4.0
gaussmooth: 1.0
halfwidth: 30
rscd:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
firstframe:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
bright_use_group1: True
lastframe:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
linearity:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
dark_current:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
dark_output: None
average_dark_current: None
reset:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
persistence:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
input_trapsfilled: ''
flag_pers_cutoff: 40.0
save_persistence: False
save_trapsfilled: True
modify_input: False
charge_migration:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
signal_threshold: 25000.0
jump:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
rejection_threshold: 4.0
three_group_rejection_threshold: 6.0
four_group_rejection_threshold: 5.0
maximum_cores: half
flag_4_neighbors: True
max_jump_to_flag_neighbors: 1000
min_jump_to_flag_neighbors: 30
after_jump_flag_dn1: 0
after_jump_flag_time1: 0
after_jump_flag_dn2: 0
after_jump_flag_time2: 0
expand_large_events: True
min_sat_area: 1
min_jump_area: 5
expand_factor: 2
use_ellipses: False
sat_required_snowball: True
min_sat_radius_extend: 2.5
sat_expand: 2
edge_size: 25
mask_snowball_core_next_int: True
snowball_time_masked_next_int: 4000
find_showers: False
max_shower_amplitude: 4.0
extend_snr_threshold: 0.0
extend_min_area: 0
extend_inner_radius: 0
extend_outer_radius: 0.0
extend_ellipse_expand_ratio: 0.0
time_masked_after_shower: 0
min_diffs_single_pass: 10
max_extended_radius: 200
minimum_groups: 3
minimum_sigclip_groups: 100
only_use_ints: True
picture_frame:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
mask_science_regions: True
n_sigma: 2.0
save_mask: False
save_correction: False
clean_flicker_noise:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
autoparam: False
fit_method: median
fit_by_channel: False
background_method: median
background_box_size: None
mask_science_regions: False
apply_flat_field: False
n_sigma: 2.0
fit_histogram: False
single_mask: True
user_mask: None
save_mask: False
save_background: False
save_noise: False
ramp_fit:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
algorithm: OLS_C
int_name: ''
save_opt: False
opt_name: ''
suppress_one_group: False
firstgroup: None
lastgroup: None
maximum_cores: '1'
gain_scale:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
2026-04-15 20:14:46,141 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01386001001_0310e_00009_nrcalong_uncal.fits' reftypes = ['gain', 'linearity', 'mask', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'sirskernel', 'superbias']
2026-04-15 20:14:46,144 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits'.
2026-04-15 20:14:46,145 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_linearity_0052.fits'.
2026-04-15 20:14:46,145 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_mask_0076.fits'.
2026-04-15 20:14:46,146 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_readnoise_0284.fits'.
2026-04-15 20:14:46,147 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-04-15 20:14:46,147 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-04-15 20:14:46,147 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-04-15 20:14:46,148 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_saturation_0097.fits'.
2026-04-15 20:14:46,149 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_sirskernel_0002.asdf'.
2026-04-15 20:14:46,149 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_superbias_0229.fits'.
2026-04-15 20:14:46,150 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-04-15 20:14:46,425 - stpipe.step - INFO - Step group_scale running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00009_nrcalong_uncal.fits>,).
2026-04-15 20:14:46,426 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-04-15 20:14:46,428 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-04-15 20:14:46,430 - stpipe.step - INFO - Step group_scale done
2026-04-15 20:14:46,586 - stpipe.step - INFO - Step dq_init running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00009_nrcalong_uncal.fits>,).
2026-04-15 20:14:46,588 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_mask_0076.fits
2026-04-15 20:14:46,676 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:46,793 - jwst.dq_init.dq_initialization - INFO - Extracting mask subarray to match science data
2026-04-15 20:14:46,819 - stpipe.step - INFO - Step dq_init done
2026-04-15 20:14:46,987 - stpipe.step - INFO - Step saturation running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00009_nrcalong_uncal.fits>,).
2026-04-15 20:14:46,991 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_saturation_0097.fits
2026-04-15 20:14:46,992 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_superbias_0229.fits
2026-04-15 20:14:47,086 - stdatamodels.dynamicdq - WARNING - Keyword RESERVED_4 does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:47,087 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:47,193 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_RESET does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:47,253 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:47,262 - jwst.saturation.saturation - INFO - Extracting reference file subarray to match science data
2026-04-15 20:14:47,280 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 8
2026-04-15 20:14:47,297 - stcal.saturation.saturation - INFO - Detected 9 saturated pixels
2026-04-15 20:14:47,298 - stcal.saturation.saturation - INFO - Detected 0 A/D floor pixels
2026-04-15 20:14:47,315 - stpipe.step - INFO - Step saturation done
2026-04-15 20:14:47,481 - stpipe.step - INFO - Step ipc running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00009_nrcalong_uncal.fits>,).
2026-04-15 20:14:47,482 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:47,650 - stpipe.step - INFO - Step superbias running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00009_nrcalong_uncal.fits>,).
2026-04-15 20:14:47,653 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_superbias_0229.fits
2026-04-15 20:14:47,689 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:47,716 - stpipe.step - INFO - Step superbias done
2026-04-15 20:14:47,879 - stpipe.step - INFO - Step refpix running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00009_nrcalong_uncal.fits>,).
2026-04-15 20:14:47,881 - jwst.refpix.reference_pixels - INFO - NIR subarray data
2026-04-15 20:14:47,884 - jwst.refpix.reference_pixels - INFO - Single readout amplifier used
2026-04-15 20:14:47,885 - jwst.refpix.reference_pixels - INFO - No valid reference pixels. This step will have no effect.
2026-04-15 20:14:47,906 - jwst.refpix.reference_pixels - INFO - Processing the zero frame
2026-04-15 20:14:47,962 - stpipe.step - INFO - Step refpix done
2026-04-15 20:14:48,125 - stpipe.step - INFO - Step linearity running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00009_nrcalong_uncal.fits>,).
2026-04-15 20:14:48,128 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_linearity_0052.fits
2026-04-15 20:14:48,216 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:48,217 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:48,217 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:48,218 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:48,219 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:48,220 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:48,221 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:48,273 - stpipe.step - INFO - Step linearity done
2026-04-15 20:14:48,441 - stpipe.step - INFO - Step persistence running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00009_nrcalong_uncal.fits>,).
2026-04-15 20:14:48,442 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:48,626 - stpipe.step - INFO - Step dark_current running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00009_nrcalong_uncal.fits>,).
2026-04-15 20:14:48,628 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:48,814 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00009_nrcalong_uncal.fits>,).
2026-04-15 20:14:48,815 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:49,000 - stpipe.step - INFO - Step jump running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00009_nrcalong_uncal.fits>,).
2026-04-15 20:14:49,001 - jwst.jump.jump_step - INFO - CR rejection threshold = 4 sigma
2026-04-15 20:14:49,001 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-04-15 20:14:49,004 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:14:49,007 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_readnoise_0284.fits
2026-04-15 20:14:49,039 - jwst.jump.jump_step - INFO - Extracting gain subarray to match science data
2026-04-15 20:14:49,057 - stcal.jump.jump - INFO - Executing two-point difference method
2026-04-15 20:14:49,058 - stcal.jump.jump - INFO - Creating 2 processes for jump detection
2026-04-15 20:14:49,525 - stcal.jump.jump - INFO - Flagging Snowballs
2026-04-15 20:14:49,583 - stcal.jump.jump - INFO - Total snowballs = 38
2026-04-15 20:14:49,584 - stcal.jump.jump - INFO - Total elapsed time = 0.525262 sec
2026-04-15 20:14:49,595 - jwst.jump.jump_step - INFO - The execution time in seconds: 0.594673
2026-04-15 20:14:49,598 - stpipe.step - INFO - Step jump done
2026-04-15 20:14:49,778 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00009_nrcalong_uncal.fits>,).
2026-04-15 20:14:49,779 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:49,955 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00009_nrcalong_uncal.fits>,).
2026-04-15 20:14:49,956 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:50,123 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(2, 4, 320, 320) from jw01386001001_0310e_00009_nrcalong_uncal.fits>,).
2026-04-15 20:14:50,129 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_readnoise_0284.fits
2026-04-15 20:14:50,130 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:14:50,161 - jwst.ramp_fitting.ramp_fit_step - INFO - Extracting gain subarray to match science data
2026-04-15 20:14:50,174 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-04-15 20:14:50,175 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-04-15 20:14:50,177 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-04-15 20:14:50,229 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 0.05139422416687012
2026-04-15 20:14:50,348 - stpipe.step - INFO - Step ramp_fit done
2026-04-15 20:14:50,510 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(320, 320) from jw01386001001_0310e_00009_nrcalong_uncal.fits>,).
2026-04-15 20:14:50,512 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:14:50,530 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:14:50,531 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:14:50,534 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:14:50,691 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(2, 320, 320) from jw01386001001_0310e_00009_nrcalong_uncal.fits>,).
2026-04-15 20:14:50,694 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:14:50,711 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:14:50,712 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:14:50,714 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:14:50,765 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00009_nrcalong_rateints.fits
2026-04-15 20:14:50,766 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-04-15 20:14:50,767 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:14:50,813 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00009_nrcalong_rate.fits
2026-04-15 20:14:50,814 - stpipe.step - INFO - Step Detector1Pipeline done
2026-04-15 20:14:50,815 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:14:50,845 - CRDS - ERROR - Error determining best reference for 'pars-darkcurrentstep' = No match found.
2026-04-15 20:14:50,849 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-jumpstep_0003.asdf
2026-04-15 20:14:50,863 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-detector1pipeline_0007.asdf
2026-04-15 20:14:50,879 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-04-15 20:14:50,880 - stpipe.step - INFO - GroupScaleStep instance created.
2026-04-15 20:14:50,881 - stpipe.step - INFO - DQInitStep instance created.
2026-04-15 20:14:50,883 - stpipe.step - INFO - EmiCorrStep instance created.
2026-04-15 20:14:50,883 - stpipe.step - INFO - SaturationStep instance created.
2026-04-15 20:14:50,884 - stpipe.step - INFO - IPCStep instance created.
2026-04-15 20:14:50,885 - stpipe.step - INFO - SuperBiasStep instance created.
2026-04-15 20:14:50,886 - stpipe.step - INFO - RefPixStep instance created.
2026-04-15 20:14:50,886 - stpipe.step - INFO - RscdStep instance created.
2026-04-15 20:14:50,887 - stpipe.step - INFO - FirstFrameStep instance created.
2026-04-15 20:14:50,888 - stpipe.step - INFO - LastFrameStep instance created.
2026-04-15 20:14:50,889 - stpipe.step - INFO - LinearityStep instance created.
2026-04-15 20:14:50,890 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-04-15 20:14:50,890 - stpipe.step - INFO - ResetStep instance created.
2026-04-15 20:14:50,891 - stpipe.step - INFO - PersistenceStep instance created.
2026-04-15 20:14:50,892 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-04-15 20:14:50,893 - stpipe.step - INFO - JumpStep instance created.
2026-04-15 20:14:50,894 - stpipe.step - INFO - PictureFrameStep instance created.
2026-04-15 20:14:50,895 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-04-15 20:14:50,896 - stpipe.step - INFO - RampFitStep instance created.
2026-04-15 20:14:50,897 - stpipe.step - INFO - GainScaleStep instance created.
2026-04-15 20:14:51,054 - stpipe.step - INFO - Step Detector1Pipeline running with args ('/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/uncal/jw01386002001_0310a_00001_nrcalong_uncal.fits',).
2026-04-15 20:14:51,073 - stpipe.step - INFO - Step Detector1Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_calibrated_ramp: False
steps:
group_scale:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
dq_init:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
user_supplied_dq: None
emicorr:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
algorithm: joint
nints_to_phase: None
nbins: None
scale_reference: True
onthefly_corr_freq: None
use_n_cycles: 3
fit_ints_separately: False
user_supplied_reffile: None
save_intermediate_results: False
saturation:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
n_pix_grow_sat: 1
use_readpatt: True
ipc:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
superbias:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
refpix:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
odd_even_columns: True
use_side_ref_pixels: True
side_smoothing_length: 11
side_gain: 1.0
odd_even_rows: True
ovr_corr_mitigation_ftr: 3.0
preserve_irs2_refpix: False
irs2_mean_subtraction: False
refpix_algorithm: median
sigreject: 4.0
gaussmooth: 1.0
halfwidth: 30
rscd:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
firstframe:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
bright_use_group1: True
lastframe:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
linearity:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
dark_current:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
dark_output: None
average_dark_current: None
reset:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
persistence:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
input_trapsfilled: ''
flag_pers_cutoff: 40.0
save_persistence: False
save_trapsfilled: True
modify_input: False
charge_migration:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
signal_threshold: 25000.0
jump:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
rejection_threshold: 4.0
three_group_rejection_threshold: 6.0
four_group_rejection_threshold: 5.0
maximum_cores: half
flag_4_neighbors: True
max_jump_to_flag_neighbors: 1000
min_jump_to_flag_neighbors: 30
after_jump_flag_dn1: 0
after_jump_flag_time1: 0
after_jump_flag_dn2: 0
after_jump_flag_time2: 0
expand_large_events: True
min_sat_area: 1
min_jump_area: 5
expand_factor: 2
use_ellipses: False
sat_required_snowball: True
min_sat_radius_extend: 2.5
sat_expand: 2
edge_size: 25
mask_snowball_core_next_int: True
snowball_time_masked_next_int: 4000
find_showers: False
max_shower_amplitude: 4.0
extend_snr_threshold: 0.0
extend_min_area: 0
extend_inner_radius: 0
extend_outer_radius: 0.0
extend_ellipse_expand_ratio: 0.0
time_masked_after_shower: 0
min_diffs_single_pass: 10
max_extended_radius: 200
minimum_groups: 3
minimum_sigclip_groups: 100
only_use_ints: True
picture_frame:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
mask_science_regions: True
n_sigma: 2.0
save_mask: False
save_correction: False
clean_flicker_noise:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
autoparam: False
fit_method: median
fit_by_channel: False
background_method: median
background_box_size: None
mask_science_regions: False
apply_flat_field: False
n_sigma: 2.0
fit_histogram: False
single_mask: True
user_mask: None
save_mask: False
save_background: False
save_noise: False
ramp_fit:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
algorithm: OLS_C
int_name: ''
save_opt: False
opt_name: ''
suppress_one_group: False
firstgroup: None
lastgroup: None
maximum_cores: '1'
gain_scale:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
2026-04-15 20:14:51,098 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01386002001_0310a_00001_nrcalong_uncal.fits' reftypes = ['gain', 'linearity', 'mask', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'sirskernel', 'superbias']
2026-04-15 20:14:51,101 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits'.
2026-04-15 20:14:51,101 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_linearity_0052.fits'.
2026-04-15 20:14:51,102 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_mask_0076.fits'.
2026-04-15 20:14:51,102 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_readnoise_0284.fits'.
2026-04-15 20:14:51,103 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-04-15 20:14:51,103 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-04-15 20:14:51,104 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-04-15 20:14:51,104 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_saturation_0097.fits'.
2026-04-15 20:14:51,105 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_sirskernel_0002.asdf'.
2026-04-15 20:14:51,106 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_superbias_0229.fits'.
2026-04-15 20:14:51,106 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-04-15 20:14:51,384 - stpipe.step - INFO - Step group_scale running with args (<RampModel(2, 15, 320, 320) from jw01386002001_0310a_00001_nrcalong_uncal.fits>,).
2026-04-15 20:14:51,384 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-04-15 20:14:51,385 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-04-15 20:14:51,387 - stpipe.step - INFO - Step group_scale done
2026-04-15 20:14:51,543 - stpipe.step - INFO - Step dq_init running with args (<RampModel(2, 15, 320, 320) from jw01386002001_0310a_00001_nrcalong_uncal.fits>,).
2026-04-15 20:14:51,546 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_mask_0076.fits
2026-04-15 20:14:51,638 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:51,776 - jwst.dq_init.dq_initialization - INFO - Extracting mask subarray to match science data
2026-04-15 20:14:51,802 - stpipe.step - INFO - Step dq_init done
2026-04-15 20:14:51,960 - stpipe.step - INFO - Step saturation running with args (<RampModel(2, 15, 320, 320) from jw01386002001_0310a_00001_nrcalong_uncal.fits>,).
2026-04-15 20:14:51,965 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_saturation_0097.fits
2026-04-15 20:14:51,965 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_superbias_0229.fits
2026-04-15 20:14:52,054 - stdatamodels.dynamicdq - WARNING - Keyword RESERVED_4 does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:52,054 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:52,155 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_RESET does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:52,213 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:52,221 - jwst.saturation.saturation - INFO - Extracting reference file subarray to match science data
2026-04-15 20:14:52,239 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 8
2026-04-15 20:14:52,287 - stcal.saturation.saturation - INFO - Detected 45 saturated pixels
2026-04-15 20:14:52,288 - stcal.saturation.saturation - INFO - Detected 0 A/D floor pixels
2026-04-15 20:14:52,306 - stpipe.step - INFO - Step saturation done
2026-04-15 20:14:52,464 - stpipe.step - INFO - Step ipc running with args (<RampModel(2, 15, 320, 320) from jw01386002001_0310a_00001_nrcalong_uncal.fits>,).
2026-04-15 20:14:52,464 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:52,620 - stpipe.step - INFO - Step superbias running with args (<RampModel(2, 15, 320, 320) from jw01386002001_0310a_00001_nrcalong_uncal.fits>,).
2026-04-15 20:14:52,623 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_superbias_0229.fits
2026-04-15 20:14:52,659 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:52,686 - stpipe.step - INFO - Step superbias done
2026-04-15 20:14:52,845 - stpipe.step - INFO - Step refpix running with args (<RampModel(2, 15, 320, 320) from jw01386002001_0310a_00001_nrcalong_uncal.fits>,).
2026-04-15 20:14:52,848 - jwst.refpix.reference_pixels - INFO - NIR subarray data
2026-04-15 20:14:52,852 - jwst.refpix.reference_pixels - INFO - Single readout amplifier used
2026-04-15 20:14:52,852 - jwst.refpix.reference_pixels - INFO - No valid reference pixels. This step will have no effect.
2026-04-15 20:14:52,872 - jwst.refpix.reference_pixels - INFO - Processing the zero frame
2026-04-15 20:14:52,926 - stpipe.step - INFO - Step refpix done
2026-04-15 20:14:53,087 - stpipe.step - INFO - Step linearity running with args (<RampModel(2, 15, 320, 320) from jw01386002001_0310a_00001_nrcalong_uncal.fits>,).
2026-04-15 20:14:53,090 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_linearity_0052.fits
2026-04-15 20:14:53,192 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:53,193 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:53,194 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:53,195 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:53,196 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:53,196 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:53,197 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:53,258 - stpipe.step - INFO - Step linearity done
2026-04-15 20:14:53,414 - stpipe.step - INFO - Step persistence running with args (<RampModel(2, 15, 320, 320) from jw01386002001_0310a_00001_nrcalong_uncal.fits>,).
2026-04-15 20:14:53,416 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:53,579 - stpipe.step - INFO - Step dark_current running with args (<RampModel(2, 15, 320, 320) from jw01386002001_0310a_00001_nrcalong_uncal.fits>,).
2026-04-15 20:14:53,580 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:53,744 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(2, 15, 320, 320) from jw01386002001_0310a_00001_nrcalong_uncal.fits>,).
2026-04-15 20:14:53,745 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:53,909 - stpipe.step - INFO - Step jump running with args (<RampModel(2, 15, 320, 320) from jw01386002001_0310a_00001_nrcalong_uncal.fits>,).
2026-04-15 20:14:53,910 - jwst.jump.jump_step - INFO - CR rejection threshold = 4 sigma
2026-04-15 20:14:53,910 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-04-15 20:14:53,913 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:14:53,916 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_readnoise_0284.fits
2026-04-15 20:14:53,950 - jwst.jump.jump_step - INFO - Extracting gain subarray to match science data
2026-04-15 20:14:53,971 - stcal.jump.jump - INFO - Executing two-point difference method
2026-04-15 20:14:53,972 - stcal.jump.jump - INFO - Creating 2 processes for jump detection
2026-04-15 20:14:54,415 - stcal.jump.jump - INFO - Flagging Snowballs
2026-04-15 20:14:54,824 - stcal.jump.jump - INFO - Total snowballs = 298
2026-04-15 20:14:54,825 - stcal.jump.jump - INFO - Total elapsed time = 0.852933 sec
2026-04-15 20:14:54,838 - jwst.jump.jump_step - INFO - The execution time in seconds: 0.928367
2026-04-15 20:14:54,841 - stpipe.step - INFO - Step jump done
2026-04-15 20:14:55,043 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(2, 15, 320, 320) from jw01386002001_0310a_00001_nrcalong_uncal.fits>,).
2026-04-15 20:14:55,044 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:55,272 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(2, 15, 320, 320) from jw01386002001_0310a_00001_nrcalong_uncal.fits>,).
2026-04-15 20:14:55,272 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:55,469 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(2, 15, 320, 320) from jw01386002001_0310a_00001_nrcalong_uncal.fits>,).
2026-04-15 20:14:55,476 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_readnoise_0284.fits
2026-04-15 20:14:55,476 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:14:55,509 - jwst.ramp_fitting.ramp_fit_step - INFO - Extracting gain subarray to match science data
2026-04-15 20:14:55,524 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-04-15 20:14:55,524 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-04-15 20:14:55,527 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-04-15 20:14:55,682 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 0.1542665958404541
2026-04-15 20:14:55,808 - stpipe.step - INFO - Step ramp_fit done
2026-04-15 20:14:56,001 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(320, 320) from jw01386002001_0310a_00001_nrcalong_uncal.fits>,).
2026-04-15 20:14:56,004 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:14:56,024 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:14:56,025 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:14:56,029 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:14:56,222 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(2, 320, 320) from jw01386002001_0310a_00001_nrcalong_uncal.fits>,).
2026-04-15 20:14:56,225 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:14:56,244 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:14:56,244 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:14:56,247 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:14:56,300 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386002001_0310a_00001_nrcalong_rateints.fits
2026-04-15 20:14:56,301 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-04-15 20:14:56,302 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:14:56,350 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386002001_0310a_00001_nrcalong_rate.fits
2026-04-15 20:14:56,350 - stpipe.step - INFO - Step Detector1Pipeline done
2026-04-15 20:14:56,351 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:14:56,383 - CRDS - ERROR - Error determining best reference for 'pars-darkcurrentstep' = No match found.
2026-04-15 20:14:56,388 - stpipe.step - INFO - PARS-JUMPSTEP parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-jumpstep_0003.asdf
2026-04-15 20:14:56,403 - stpipe.pipeline - INFO - PARS-DETECTOR1PIPELINE parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-detector1pipeline_0007.asdf
2026-04-15 20:14:56,420 - stpipe.step - INFO - Detector1Pipeline instance created.
2026-04-15 20:14:56,421 - stpipe.step - INFO - GroupScaleStep instance created.
2026-04-15 20:14:56,422 - stpipe.step - INFO - DQInitStep instance created.
2026-04-15 20:14:56,423 - stpipe.step - INFO - EmiCorrStep instance created.
2026-04-15 20:14:56,424 - stpipe.step - INFO - SaturationStep instance created.
2026-04-15 20:14:56,425 - stpipe.step - INFO - IPCStep instance created.
2026-04-15 20:14:56,426 - stpipe.step - INFO - SuperBiasStep instance created.
2026-04-15 20:14:56,427 - stpipe.step - INFO - RefPixStep instance created.
2026-04-15 20:14:56,428 - stpipe.step - INFO - RscdStep instance created.
2026-04-15 20:14:56,429 - stpipe.step - INFO - FirstFrameStep instance created.
2026-04-15 20:14:56,430 - stpipe.step - INFO - LastFrameStep instance created.
2026-04-15 20:14:56,430 - stpipe.step - INFO - LinearityStep instance created.
2026-04-15 20:14:56,431 - stpipe.step - INFO - DarkCurrentStep instance created.
2026-04-15 20:14:56,432 - stpipe.step - INFO - ResetStep instance created.
2026-04-15 20:14:56,433 - stpipe.step - INFO - PersistenceStep instance created.
2026-04-15 20:14:56,434 - stpipe.step - INFO - ChargeMigrationStep instance created.
2026-04-15 20:14:56,435 - stpipe.step - INFO - JumpStep instance created.
2026-04-15 20:14:56,436 - stpipe.step - INFO - PictureFrameStep instance created.
2026-04-15 20:14:56,437 - stpipe.step - INFO - CleanFlickerNoiseStep instance created.
2026-04-15 20:14:56,439 - stpipe.step - INFO - RampFitStep instance created.
2026-04-15 20:14:56,440 - stpipe.step - INFO - GainScaleStep instance created.
2026-04-15 20:14:56,622 - stpipe.step - INFO - Step Detector1Pipeline running with args ('/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/uncal/jw01386003001_0310a_00001_nrcalong_uncal.fits',).
2026-04-15 20:14:56,642 - stpipe.step - INFO - Step Detector1Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_calibrated_ramp: False
steps:
group_scale:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
dq_init:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
user_supplied_dq: None
emicorr:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
algorithm: joint
nints_to_phase: None
nbins: None
scale_reference: True
onthefly_corr_freq: None
use_n_cycles: 3
fit_ints_separately: False
user_supplied_reffile: None
save_intermediate_results: False
saturation:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
n_pix_grow_sat: 1
use_readpatt: True
ipc:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
superbias:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
refpix:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
odd_even_columns: True
use_side_ref_pixels: True
side_smoothing_length: 11
side_gain: 1.0
odd_even_rows: True
ovr_corr_mitigation_ftr: 3.0
preserve_irs2_refpix: False
irs2_mean_subtraction: False
refpix_algorithm: median
sigreject: 4.0
gaussmooth: 1.0
halfwidth: 30
rscd:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
firstframe:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
bright_use_group1: True
lastframe:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
linearity:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
dark_current:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
dark_output: None
average_dark_current: None
reset:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
persistence:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
input_trapsfilled: ''
flag_pers_cutoff: 40.0
save_persistence: False
save_trapsfilled: True
modify_input: False
charge_migration:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
signal_threshold: 25000.0
jump:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
rejection_threshold: 4.0
three_group_rejection_threshold: 6.0
four_group_rejection_threshold: 5.0
maximum_cores: half
flag_4_neighbors: True
max_jump_to_flag_neighbors: 1000
min_jump_to_flag_neighbors: 30
after_jump_flag_dn1: 0
after_jump_flag_time1: 0
after_jump_flag_dn2: 0
after_jump_flag_time2: 0
expand_large_events: True
min_sat_area: 1
min_jump_area: 5
expand_factor: 2
use_ellipses: False
sat_required_snowball: True
min_sat_radius_extend: 2.5
sat_expand: 2
edge_size: 25
mask_snowball_core_next_int: True
snowball_time_masked_next_int: 4000
find_showers: False
max_shower_amplitude: 4.0
extend_snr_threshold: 0.0
extend_min_area: 0
extend_inner_radius: 0
extend_outer_radius: 0.0
extend_ellipse_expand_ratio: 0.0
time_masked_after_shower: 0
min_diffs_single_pass: 10
max_extended_radius: 200
minimum_groups: 3
minimum_sigclip_groups: 100
only_use_ints: True
picture_frame:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
mask_science_regions: True
n_sigma: 2.0
save_mask: False
save_correction: False
clean_flicker_noise:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
autoparam: False
fit_method: median
fit_by_channel: False
background_method: median
background_box_size: None
mask_science_regions: False
apply_flat_field: False
n_sigma: 2.0
fit_histogram: False
single_mask: True
user_mask: None
save_mask: False
save_background: False
save_noise: False
ramp_fit:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
algorithm: OLS_C
int_name: ''
save_opt: False
opt_name: ''
suppress_one_group: False
firstgroup: None
lastgroup: None
maximum_cores: '1'
gain_scale:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
2026-04-15 20:14:56,668 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01386003001_0310a_00001_nrcalong_uncal.fits' reftypes = ['gain', 'linearity', 'mask', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'sirskernel', 'superbias']
2026-04-15 20:14:56,672 - stpipe.pipeline - INFO - Prefetch for GAIN reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits'.
2026-04-15 20:14:56,672 - stpipe.pipeline - INFO - Prefetch for LINEARITY reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_linearity_0052.fits'.
2026-04-15 20:14:56,673 - stpipe.pipeline - INFO - Prefetch for MASK reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_mask_0076.fits'.
2026-04-15 20:14:56,674 - stpipe.pipeline - INFO - Prefetch for READNOISE reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_readnoise_0284.fits'.
2026-04-15 20:14:56,674 - stpipe.pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'.
2026-04-15 20:14:56,675 - stpipe.pipeline - INFO - Prefetch for RESET reference file is 'N/A'.
2026-04-15 20:14:56,675 - stpipe.pipeline - INFO - Prefetch for RSCD reference file is 'N/A'.
2026-04-15 20:14:56,676 - stpipe.pipeline - INFO - Prefetch for SATURATION reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_saturation_0097.fits'.
2026-04-15 20:14:56,676 - stpipe.pipeline - INFO - Prefetch for SIRSKERNEL reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_sirskernel_0002.asdf'.
2026-04-15 20:14:56,677 - stpipe.pipeline - INFO - Prefetch for SUPERBIAS reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_superbias_0229.fits'.
2026-04-15 20:14:56,678 - jwst.pipeline.calwebb_detector1 - INFO - Starting calwebb_detector1 ...
2026-04-15 20:14:57,020 - stpipe.step - INFO - Step group_scale running with args (<RampModel(2, 15, 320, 320) from jw01386003001_0310a_00001_nrcalong_uncal.fits>,).
2026-04-15 20:14:57,021 - jwst.group_scale.group_scale_step - INFO - NFRAMES and FRMDIVSR are equal; correction not needed
2026-04-15 20:14:57,021 - jwst.group_scale.group_scale_step - INFO - Step will be skipped
2026-04-15 20:14:57,023 - stpipe.step - INFO - Step group_scale done
2026-04-15 20:14:57,222 - stpipe.step - INFO - Step dq_init running with args (<RampModel(2, 15, 320, 320) from jw01386003001_0310a_00001_nrcalong_uncal.fits>,).
2026-04-15 20:14:57,225 - jwst.dq_init.dq_init_step - INFO - Using MASK reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_mask_0076.fits
2026-04-15 20:14:57,330 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:57,493 - jwst.dq_init.dq_initialization - INFO - Extracting mask subarray to match science data
2026-04-15 20:14:57,521 - stpipe.step - INFO - Step dq_init done
2026-04-15 20:14:57,703 - stpipe.step - INFO - Step saturation running with args (<RampModel(2, 15, 320, 320) from jw01386003001_0310a_00001_nrcalong_uncal.fits>,).
2026-04-15 20:14:57,708 - jwst.saturation.saturation_step - INFO - Using SATURATION reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_saturation_0097.fits
2026-04-15 20:14:57,709 - jwst.saturation.saturation_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_superbias_0229.fits
2026-04-15 20:14:57,810 - stdatamodels.dynamicdq - WARNING - Keyword RESERVED_4 does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:57,811 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:57,933 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_RESET does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:58,003 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:58,015 - jwst.saturation.saturation - INFO - Extracting reference file subarray to match science data
2026-04-15 20:14:58,037 - jwst.saturation.saturation - INFO - Using read_pattern with nframes 8
2026-04-15 20:14:58,105 - stcal.saturation.saturation - INFO - Detected 48 saturated pixels
2026-04-15 20:14:58,107 - stcal.saturation.saturation - INFO - Detected 0 A/D floor pixels
2026-04-15 20:14:58,126 - stpipe.step - INFO - Step saturation done
2026-04-15 20:14:58,302 - stpipe.step - INFO - Step ipc running with args (<RampModel(2, 15, 320, 320) from jw01386003001_0310a_00001_nrcalong_uncal.fits>,).
2026-04-15 20:14:58,303 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:58,478 - stpipe.step - INFO - Step superbias running with args (<RampModel(2, 15, 320, 320) from jw01386003001_0310a_00001_nrcalong_uncal.fits>,).
2026-04-15 20:14:58,482 - jwst.superbias.superbias_step - INFO - Using SUPERBIAS reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_superbias_0229.fits
2026-04-15 20:14:58,519 - stdatamodels.dynamicdq - WARNING - Keyword UNRELIABLE_ERROR does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:58,549 - stpipe.step - INFO - Step superbias done
2026-04-15 20:14:58,723 - stpipe.step - INFO - Step refpix running with args (<RampModel(2, 15, 320, 320) from jw01386003001_0310a_00001_nrcalong_uncal.fits>,).
2026-04-15 20:14:58,727 - jwst.refpix.reference_pixels - INFO - NIR subarray data
2026-04-15 20:14:58,730 - jwst.refpix.reference_pixels - INFO - Single readout amplifier used
2026-04-15 20:14:58,731 - jwst.refpix.reference_pixels - INFO - No valid reference pixels. This step will have no effect.
2026-04-15 20:14:58,753 - jwst.refpix.reference_pixels - INFO - Processing the zero frame
2026-04-15 20:14:58,807 - stpipe.step - INFO - Step refpix done
2026-04-15 20:14:58,983 - stpipe.step - INFO - Step linearity running with args (<RampModel(2, 15, 320, 320) from jw01386003001_0310a_00001_nrcalong_uncal.fits>,).
2026-04-15 20:14:58,986 - jwst.linearity.linearity_step - INFO - Using Linearity reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_linearity_0052.fits
2026-04-15 20:14:59,097 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:59,099 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:59,099 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:59,100 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:59,101 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:59,102 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:59,103 - stdatamodels.dynamicdq - WARNING - Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored
2026-04-15 20:14:59,166 - stpipe.step - INFO - Step linearity done
2026-04-15 20:14:59,359 - stpipe.step - INFO - Step persistence running with args (<RampModel(2, 15, 320, 320) from jw01386003001_0310a_00001_nrcalong_uncal.fits>,).
2026-04-15 20:14:59,360 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:59,567 - stpipe.step - INFO - Step dark_current running with args (<RampModel(2, 15, 320, 320) from jw01386003001_0310a_00001_nrcalong_uncal.fits>,).
2026-04-15 20:14:59,568 - stpipe.step - INFO - Step skipped.
2026-04-15 20:14:59,793 - stpipe.step - INFO - Step charge_migration running with args (<RampModel(2, 15, 320, 320) from jw01386003001_0310a_00001_nrcalong_uncal.fits>,).
2026-04-15 20:14:59,794 - stpipe.step - INFO - Step skipped.
2026-04-15 20:15:00,001 - stpipe.step - INFO - Step jump running with args (<RampModel(2, 15, 320, 320) from jw01386003001_0310a_00001_nrcalong_uncal.fits>,).
2026-04-15 20:15:00,003 - jwst.jump.jump_step - INFO - CR rejection threshold = 4 sigma
2026-04-15 20:15:00,003 - jwst.jump.jump_step - INFO - Maximum cores to use = half
2026-04-15 20:15:00,007 - jwst.jump.jump_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:15:00,009 - jwst.jump.jump_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_readnoise_0284.fits
2026-04-15 20:15:00,045 - jwst.jump.jump_step - INFO - Extracting gain subarray to match science data
2026-04-15 20:15:00,067 - stcal.jump.jump - INFO - Executing two-point difference method
2026-04-15 20:15:00,068 - stcal.jump.jump - INFO - Creating 2 processes for jump detection
2026-04-15 20:15:00,559 - stcal.jump.jump - INFO - Flagging Snowballs
2026-04-15 20:15:00,935 - stcal.jump.jump - INFO - Total snowballs = 273
2026-04-15 20:15:00,936 - stcal.jump.jump - INFO - Total elapsed time = 0.868036 sec
2026-04-15 20:15:00,948 - jwst.jump.jump_step - INFO - The execution time in seconds: 0.945800
2026-04-15 20:15:00,951 - stpipe.step - INFO - Step jump done
2026-04-15 20:15:01,156 - stpipe.step - INFO - Step picture_frame running with args (<RampModel(2, 15, 320, 320) from jw01386003001_0310a_00001_nrcalong_uncal.fits>,).
2026-04-15 20:15:01,157 - stpipe.step - INFO - Step skipped.
2026-04-15 20:15:01,355 - stpipe.step - INFO - Step clean_flicker_noise running with args (<RampModel(2, 15, 320, 320) from jw01386003001_0310a_00001_nrcalong_uncal.fits>,).
2026-04-15 20:15:01,356 - stpipe.step - INFO - Step skipped.
2026-04-15 20:15:01,532 - stpipe.step - INFO - Step ramp_fit running with args (<RampModel(2, 15, 320, 320) from jw01386003001_0310a_00001_nrcalong_uncal.fits>,).
2026-04-15 20:15:01,538 - jwst.ramp_fitting.ramp_fit_step - INFO - Using READNOISE reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_readnoise_0284.fits
2026-04-15 20:15:01,538 - jwst.ramp_fitting.ramp_fit_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:15:01,571 - jwst.ramp_fitting.ramp_fit_step - INFO - Extracting gain subarray to match science data
2026-04-15 20:15:01,587 - jwst.ramp_fitting.ramp_fit_step - INFO - Using algorithm = OLS_C
2026-04-15 20:15:01,588 - jwst.ramp_fitting.ramp_fit_step - INFO - Using weighting = optimal
2026-04-15 20:15:01,591 - stcal.ramp_fitting.ols_fit - INFO - Number of multiprocessing slices: 1
2026-04-15 20:15:01,745 - stcal.ramp_fitting.ols_fit - INFO - Ramp Fitting C Time: 0.15318870544433594
2026-04-15 20:15:01,870 - stpipe.step - INFO - Step ramp_fit done
2026-04-15 20:15:02,065 - stpipe.step - INFO - Step gain_scale running with args (<ImageModel(320, 320) from jw01386003001_0310a_00001_nrcalong_uncal.fits>,).
2026-04-15 20:15:02,069 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:15:02,089 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:15:02,090 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:15:02,093 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:15:02,292 - stpipe.step - INFO - Step gain_scale running with args (<CubeModel(2, 320, 320) from jw01386003001_0310a_00001_nrcalong_uncal.fits>,).
2026-04-15 20:15:02,295 - jwst.gain_scale.gain_scale_step - INFO - Using GAIN reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_gain_0097.fits
2026-04-15 20:15:02,312 - jwst.gain_scale.gain_scale_step - INFO - GAINFACT not found in gain reference file
2026-04-15 20:15:02,313 - jwst.gain_scale.gain_scale_step - INFO - Step will be skipped
2026-04-15 20:15:02,316 - stpipe.step - INFO - Step gain_scale done
2026-04-15 20:15:02,369 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386003001_0310a_00001_nrcalong_rateints.fits
2026-04-15 20:15:02,370 - jwst.pipeline.calwebb_detector1 - INFO - ... ending calwebb_detector1
2026-04-15 20:15:02,371 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:15:02,425 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386003001_0310a_00001_nrcalong_rate.fits
2026-04-15 20:15:02,425 - stpipe.step - INFO - Step Detector1Pipeline done
2026-04-15 20:15:02,426 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
# Print out the time benchmark
time1 = time.perf_counter()
print(f"Runtime so far: {time1 - time0:0.0f} seconds")
print(f"Runtime for Detector1: {time1 - time_det1:0.0f} seconds")
Runtime so far: 88 seconds
Runtime for Detector1: 81 seconds
Exploring the data#
Identify *_rateints.fits files and verify which pipeline steps were run and
which calibration reference files were applied.
The header contains information about which calibration steps were completed and skipped and which reference files were used to process the data.
if dodet1:
# find rate files
rate_files = sorted(glob.glob(os.path.join(det1_dir, '*_rateints.fits')))
# Read in file as datamodel
rate_f = datamodels.open(rate_files[0])
# Check which steps were run
rate_f.meta.cal_step.instance
{'charge_migration': 'SKIPPED',
'clean_flicker_noise': 'SKIPPED',
'dq_init': 'COMPLETE',
'gain_scale': 'SKIPPED',
'group_scale': 'SKIPPED',
'ipc': 'SKIPPED',
'jump': 'COMPLETE',
'linearity': 'COMPLETE',
'persistence': 'SKIPPED',
'picture_frame': 'SKIPPED',
'ramp_fit': 'COMPLETE',
'refpix': 'COMPLETE',
'saturation': 'COMPLETE',
'superbias': 'COMPLETE'}
For this particular rate file, show which reference files were used to calibrate the dataset. Note that these files will be different for each NIRCam detector.
if dodet1:
rate_f.meta.ref_file.instance
{'crds': {'context_used': 'jwst_1535.pmap', 'sw_version': '13.1.13'},
'gain': {'name': 'crds://jwst_nircam_gain_0097.fits'},
'linearity': {'name': 'crds://jwst_nircam_linearity_0052.fits'},
'mask': {'name': 'crds://jwst_nircam_mask_0076.fits'},
'readnoise': {'name': 'crds://jwst_nircam_readnoise_0284.fits'},
'saturation': {'name': 'crds://jwst_nircam_saturation_0097.fits'},
'superbias': {'name': 'crds://jwst_nircam_superbias_0229.fits'}}
6. Image2 Pipeline#
In the Image2 stage of the science calibration pipeline,
calibrated unrectified data products are created (*_cal.fits or
*_calints.fits files, depending on whether the input files are
*_rate.fits or *_rateints.fits). For the coronagraphy pipeline, we use the _rateints.fits files as input.
In this pipeline processing stage, the world coordinate system (WCS) is assigned, the data are flat fielded, and a photometric calibration is applied to convert from units of countrate (ADU/s) to surface brightness (MJy/sr).
time_image2 = time.perf_counter()
# Set up a dictionary to define how the Image2 pipeline should be configured.
# Boilerplate dictionary setup
image2dict = {}
image2dict['assign_wcs'], image2dict['flat_field'] = {}, {}
image2dict['photom'], image2dict['resample'] = {}, {}
# Overrides for whether or not certain steps should be skipped (example)
#image2dict['resample']['skip'] = False
# Overrides for various reference files
# Files should be in the base local directory or provide full path
#image2dict['assign_wcs']['override_distortion'] = 'myfile.asdf' # Spatial distortion (ASDF file)
#image2dict['assign_wcs']['override_filteroffset'] = 'myfile.asdf' # Imager filter offsets (ASDF file)
#image2dict['assign_wcs']['override_specwcs'] = 'myfile.asdf' # Spectral distortion (ASDF file)
#image2dict['assign_wcs']['override_wavelengthrange'] = 'myfile.asdf' # Wavelength channel mapping (ASDF file)
#image2dict['flat_field']['override_flat'] = 'myfile.fits' # Pixel flatfield
#image2dict['photom']['override_photom'] = 'myfile.fits' # Photometric calibration array
Find and sort all of the input files, ensuring use of absolute paths.
sstring = os.path.join(det1_dir, 'jw*rateints.fits') # Use files from the detector1 output folder
rate_files = sorted(glob.glob(sstring))
rate_files = [os.path.abspath(fname) for fname in rate_files]
print(f"Found {len(rate_files)} science files")
Found 11 science files
# List rate files
rate_files
['/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00001_nrcalong_rateints.fits',
'/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00002_nrcalong_rateints.fits',
'/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00003_nrcalong_rateints.fits',
'/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00004_nrcalong_rateints.fits',
'/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00005_nrcalong_rateints.fits',
'/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00006_nrcalong_rateints.fits',
'/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00007_nrcalong_rateints.fits',
'/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00008_nrcalong_rateints.fits',
'/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00009_nrcalong_rateints.fits',
'/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386002001_0310a_00001_nrcalong_rateints.fits',
'/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386003001_0310a_00001_nrcalong_rateints.fits']
Run the Image2 pipeline on all of the rateints files.
# Run Image2 stage of pipeline, specifying:
# output directory to save *_calints.fits files
# save_results flag set to True so the calints files are saved
if doimage2:
for rate in rate_files:
cal_result = Image2Pipeline.call(rate, output_dir=image2_dir, steps=image2dict, save_results=True)
else:
print("Skipping Image2 processing.")
2026-04-15 20:15:02,571 - CRDS - INFO - Fetching /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-resamplestep_0001.asdf 1.1 K bytes (1 / 1 files) (0 / 1.1 K bytes)
2026-04-15 20:15:02,658 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-resamplestep_0001.asdf
2026-04-15 20:15:02,669 - CRDS - INFO - Fetching /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-image2pipeline_0003.asdf 1.7 K bytes (1 / 1 files) (0 / 1.7 K bytes)
2026-04-15 20:15:02,753 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-image2pipeline_0003.asdf
2026-04-15 20:15:02,764 - stpipe.step - INFO - Image2Pipeline instance created.
2026-04-15 20:15:02,765 - stpipe.step - INFO - BackgroundStep instance created.
2026-04-15 20:15:02,766 - stpipe.step - INFO - AssignWcsStep instance created.
2026-04-15 20:15:02,767 - stpipe.step - INFO - FlatFieldStep instance created.
2026-04-15 20:15:02,768 - stpipe.step - INFO - PhotomStep instance created.
2026-04-15 20:15:02,770 - stpipe.step - INFO - ResampleStep instance created.
2026-04-15 20:15:02,929 - stpipe.step - INFO - Step Image2Pipeline running with args ('/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00001_nrcalong_rateints.fits',).
2026-04-15 20:15:02,937 - stpipe.step - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
bkg_list: None
save_combined_background: False
sigma: 3.0
maxiters: None
soss_source_percentile: 35.0
soss_bkg_percentile: None
wfss_mmag_extract: None
wfss_mask: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
nrs_ifu_slice_wcs: False
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
apply_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: exptime
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
enable_ctx: True
enable_err: True
report_var: True
propagate_dq: False
pixmap_stepsize: 1.0
pixmap_order: 1
2026-04-15 20:15:02,957 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01386001001_0310e_00001_nrcalong_rateints.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2026-04-15 20:15:02,961 - CRDS - INFO - Fetching /home/runner/crds/references/jwst/nircam/jwst_nircam_area_0042.fits 16.8 M bytes (1 / 5 files) (0 / 67.2 M bytes)
2026-04-15 20:15:03,405 - CRDS - INFO - Fetching /home/runner/crds/references/jwst/nircam/jwst_nircam_distortion_0325.asdf 16.0 K bytes (2 / 5 files) (16.8 M / 67.2 M bytes)
2026-04-15 20:15:03,505 - CRDS - INFO - Fetching /home/runner/crds/references/jwst/nircam/jwst_nircam_filteroffset_0007.asdf 11.4 K bytes (3 / 5 files) (16.8 M / 67.2 M bytes)
2026-04-15 20:15:03,586 - CRDS - INFO - Fetching /home/runner/crds/references/jwst/nircam/jwst_nircam_flat_0465.fits 50.4 M bytes (4 / 5 files) (16.8 M / 67.2 M bytes)
2026-04-15 20:15:04,411 - CRDS - INFO - Fetching /home/runner/crds/references/jwst/nircam/jwst_nircam_photom_0168.fits 40.3 K bytes (5 / 5 files) (67.2 M / 67.2 M bytes)
2026-04-15 20:15:04,536 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_area_0042.fits'.
2026-04-15 20:15:04,537 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-04-15 20:15:04,538 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-04-15 20:15:04,538 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-04-15 20:15:04,538 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-04-15 20:15:04,539 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_distortion_0325.asdf'.
2026-04-15 20:15:04,540 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-04-15 20:15:04,540 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_filteroffset_0007.asdf'.
2026-04-15 20:15:04,541 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_flat_0465.fits'.
2026-04-15 20:15:04,542 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-04-15 20:15:04,542 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-04-15 20:15:04,543 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-04-15 20:15:04,543 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-04-15 20:15:04,544 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-04-15 20:15:04,544 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-04-15 20:15:04,545 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-04-15 20:15:04,545 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_photom_0168.fits'.
2026-04-15 20:15:04,546 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-04-15 20:15:04,546 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-04-15 20:15:04,547 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-04-15 20:15:04,547 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-04-15 20:15:04,548 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-04-15 20:15:04,549 - jwst.pipeline.calwebb_image2 - INFO - Processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00001_nrcalong
2026-04-15 20:15:04,549 - jwst.pipeline.calwebb_image2 - INFO - Working on input /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00001_nrcalong_rateints.fits ...
2026-04-15 20:15:04,800 - stpipe.step - INFO - Step assign_wcs running with args (<CubeModel(2, 320, 320) from /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00001_nrcalong_image2pipeline.fits>,).
2026-04-15 20:15:04,918 - stcal.alignment.util - INFO - Update S_REGION to POLYGON ICRS 209.562561117 -42.102276941 209.569633886 -42.104183188 209.572145314 -42.099000305 209.565073487 -42.097082446
2026-04-15 20:15:04,919 - jwst.assign_wcs.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 209.562561117 -42.102276941 209.569633886 -42.104183188 209.572145314 -42.099000305 209.565073487 -42.097082446
2026-04-15 20:15:04,920 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-04-15 20:15:04,955 - stpipe.step - INFO - Step assign_wcs done
2026-04-15 20:15:05,132 - stpipe.step - INFO - Step flat_field running with args (<CubeModel(2, 320, 320) from /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00001_nrcalong_image2pipeline.fits>,).
2026-04-15 20:15:05,247 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_flat_0465.fits
2026-04-15 20:15:05,248 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-04-15 20:15:05,249 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-04-15 20:15:05,250 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-04-15 20:15:05,251 - jwst.flatfield.flat_field - INFO - Extracting matching subarray from flat
2026-04-15 20:15:05,313 - stpipe.step - INFO - Step flat_field done
2026-04-15 20:15:05,475 - stpipe.step - INFO - Step photom running with args (<CubeModel(2, 320, 320) from /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00001_nrcalong_image2pipeline.fits>,).
2026-04-15 20:15:05,484 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_photom_0168.fits
2026-04-15 20:15:05,484 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_area_0042.fits
2026-04-15 20:15:05,485 - jwst.photom.photom - INFO - Using instrument: NIRCAM
2026-04-15 20:15:05,485 - jwst.photom.photom - INFO - detector: NRCALONG
2026-04-15 20:15:05,486 - jwst.photom.photom - INFO - exp_type: NRC_CORON
2026-04-15 20:15:05,487 - jwst.photom.photom - INFO - filter: F444W
2026-04-15 20:15:05,487 - jwst.photom.photom - INFO - pupil: MASKRND
2026-04-15 20:15:05,536 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-04-15 20:15:05,536 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-04-15 20:15:05,537 - jwst.photom.photom - INFO - Matching to subarray: SUB320A335R
2026-04-15 20:15:05,539 - jwst.photom.photom - INFO - PHOTMJSR value: 2.486
2026-04-15 20:15:05,568 - stpipe.step - INFO - Step photom done
2026-04-15 20:15:05,568 - jwst.pipeline.calwebb_image2 - INFO - Finished processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00001_nrcalong
2026-04-15 20:15:05,569 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-04-15 20:15:05,570 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:15:05,658 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00001_nrcalong_calints.fits
2026-04-15 20:15:05,659 - stpipe.step - INFO - Step Image2Pipeline done
2026-04-15 20:15:05,659 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:15:05,683 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-resamplestep_0001.asdf
2026-04-15 20:15:05,692 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-image2pipeline_0003.asdf
2026-04-15 20:15:05,702 - stpipe.step - INFO - Image2Pipeline instance created.
2026-04-15 20:15:05,704 - stpipe.step - INFO - BackgroundStep instance created.
2026-04-15 20:15:05,705 - stpipe.step - INFO - AssignWcsStep instance created.
2026-04-15 20:15:05,706 - stpipe.step - INFO - FlatFieldStep instance created.
2026-04-15 20:15:05,706 - stpipe.step - INFO - PhotomStep instance created.
2026-04-15 20:15:05,707 - stpipe.step - INFO - ResampleStep instance created.
2026-04-15 20:15:05,870 - stpipe.step - INFO - Step Image2Pipeline running with args ('/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00002_nrcalong_rateints.fits',).
2026-04-15 20:15:05,877 - stpipe.step - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
bkg_list: None
save_combined_background: False
sigma: 3.0
maxiters: None
soss_source_percentile: 35.0
soss_bkg_percentile: None
wfss_mmag_extract: None
wfss_mask: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
nrs_ifu_slice_wcs: False
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
apply_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: exptime
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
enable_ctx: True
enable_err: True
report_var: True
propagate_dq: False
pixmap_stepsize: 1.0
pixmap_order: 1
2026-04-15 20:15:05,898 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01386001001_0310e_00002_nrcalong_rateints.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2026-04-15 20:15:05,901 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_area_0042.fits'.
2026-04-15 20:15:05,902 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-04-15 20:15:05,903 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-04-15 20:15:05,903 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-04-15 20:15:05,903 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-04-15 20:15:05,904 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_distortion_0325.asdf'.
2026-04-15 20:15:05,905 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-04-15 20:15:05,905 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_filteroffset_0007.asdf'.
2026-04-15 20:15:05,906 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_flat_0465.fits'.
2026-04-15 20:15:05,907 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-04-15 20:15:05,907 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-04-15 20:15:05,907 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-04-15 20:15:05,908 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-04-15 20:15:05,908 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-04-15 20:15:05,909 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-04-15 20:15:05,909 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-04-15 20:15:05,910 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_photom_0168.fits'.
2026-04-15 20:15:05,910 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-04-15 20:15:05,911 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-04-15 20:15:05,912 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-04-15 20:15:05,912 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-04-15 20:15:05,913 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-04-15 20:15:05,913 - jwst.pipeline.calwebb_image2 - INFO - Processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00002_nrcalong
2026-04-15 20:15:05,914 - jwst.pipeline.calwebb_image2 - INFO - Working on input /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00002_nrcalong_rateints.fits ...
2026-04-15 20:15:06,138 - stpipe.step - INFO - Step assign_wcs running with args (<CubeModel(2, 320, 320) from /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00002_nrcalong_image2pipeline.fits>,).
2026-04-15 20:15:06,240 - stcal.alignment.util - INFO - Update S_REGION to POLYGON ICRS 209.562554217 -42.102275101 209.569626986 -42.104181351 209.572138417 -42.098998468 209.565066592 -42.097080608
2026-04-15 20:15:06,242 - jwst.assign_wcs.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 209.562554217 -42.102275101 209.569626986 -42.104181351 209.572138417 -42.098998468 209.565066592 -42.097080608
2026-04-15 20:15:06,243 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-04-15 20:15:06,272 - stpipe.step - INFO - Step assign_wcs done
2026-04-15 20:15:06,438 - stpipe.step - INFO - Step flat_field running with args (<CubeModel(2, 320, 320) from /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00002_nrcalong_image2pipeline.fits>,).
2026-04-15 20:15:06,524 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_flat_0465.fits
2026-04-15 20:15:06,525 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-04-15 20:15:06,526 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-04-15 20:15:06,526 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-04-15 20:15:06,527 - jwst.flatfield.flat_field - INFO - Extracting matching subarray from flat
2026-04-15 20:15:06,587 - stpipe.step - INFO - Step flat_field done
2026-04-15 20:15:06,771 - stpipe.step - INFO - Step photom running with args (<CubeModel(2, 320, 320) from /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00002_nrcalong_image2pipeline.fits>,).
2026-04-15 20:15:06,778 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_photom_0168.fits
2026-04-15 20:15:06,779 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_area_0042.fits
2026-04-15 20:15:06,780 - jwst.photom.photom - INFO - Using instrument: NIRCAM
2026-04-15 20:15:06,780 - jwst.photom.photom - INFO - detector: NRCALONG
2026-04-15 20:15:06,781 - jwst.photom.photom - INFO - exp_type: NRC_CORON
2026-04-15 20:15:06,781 - jwst.photom.photom - INFO - filter: F444W
2026-04-15 20:15:06,782 - jwst.photom.photom - INFO - pupil: MASKRND
2026-04-15 20:15:06,830 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-04-15 20:15:06,831 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-04-15 20:15:06,833 - jwst.photom.photom - INFO - Matching to subarray: SUB320A335R
2026-04-15 20:15:06,834 - jwst.photom.photom - INFO - PHOTMJSR value: 2.486
2026-04-15 20:15:06,865 - stpipe.step - INFO - Step photom done
2026-04-15 20:15:06,866 - jwst.pipeline.calwebb_image2 - INFO - Finished processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00002_nrcalong
2026-04-15 20:15:06,867 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-04-15 20:15:06,868 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:15:06,961 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00002_nrcalong_calints.fits
2026-04-15 20:15:06,962 - stpipe.step - INFO - Step Image2Pipeline done
2026-04-15 20:15:06,962 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:15:06,989 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-resamplestep_0001.asdf
2026-04-15 20:15:06,999 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-image2pipeline_0003.asdf
2026-04-15 20:15:07,013 - stpipe.step - INFO - Image2Pipeline instance created.
2026-04-15 20:15:07,015 - stpipe.step - INFO - BackgroundStep instance created.
2026-04-15 20:15:07,017 - stpipe.step - INFO - AssignWcsStep instance created.
2026-04-15 20:15:07,018 - stpipe.step - INFO - FlatFieldStep instance created.
2026-04-15 20:15:07,019 - stpipe.step - INFO - PhotomStep instance created.
2026-04-15 20:15:07,020 - stpipe.step - INFO - ResampleStep instance created.
2026-04-15 20:15:07,232 - stpipe.step - INFO - Step Image2Pipeline running with args ('/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00003_nrcalong_rateints.fits',).
2026-04-15 20:15:07,239 - stpipe.step - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
bkg_list: None
save_combined_background: False
sigma: 3.0
maxiters: None
soss_source_percentile: 35.0
soss_bkg_percentile: None
wfss_mmag_extract: None
wfss_mask: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
nrs_ifu_slice_wcs: False
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
apply_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: exptime
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
enable_ctx: True
enable_err: True
report_var: True
propagate_dq: False
pixmap_stepsize: 1.0
pixmap_order: 1
2026-04-15 20:15:07,263 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01386001001_0310e_00003_nrcalong_rateints.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2026-04-15 20:15:07,268 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_area_0042.fits'.
2026-04-15 20:15:07,269 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-04-15 20:15:07,269 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-04-15 20:15:07,269 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-04-15 20:15:07,270 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-04-15 20:15:07,270 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_distortion_0325.asdf'.
2026-04-15 20:15:07,272 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-04-15 20:15:07,272 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_filteroffset_0007.asdf'.
2026-04-15 20:15:07,272 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_flat_0465.fits'.
2026-04-15 20:15:07,273 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-04-15 20:15:07,274 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-04-15 20:15:07,274 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-04-15 20:15:07,275 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-04-15 20:15:07,275 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-04-15 20:15:07,276 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-04-15 20:15:07,276 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-04-15 20:15:07,276 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_photom_0168.fits'.
2026-04-15 20:15:07,277 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-04-15 20:15:07,278 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-04-15 20:15:07,278 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-04-15 20:15:07,279 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-04-15 20:15:07,279 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-04-15 20:15:07,280 - jwst.pipeline.calwebb_image2 - INFO - Processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00003_nrcalong
2026-04-15 20:15:07,281 - jwst.pipeline.calwebb_image2 - INFO - Working on input /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00003_nrcalong_rateints.fits ...
2026-04-15 20:15:07,589 - stpipe.step - INFO - Step assign_wcs running with args (<CubeModel(2, 320, 320) from /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00003_nrcalong_image2pipeline.fits>,).
2026-04-15 20:15:07,709 - stcal.alignment.util - INFO - Update S_REGION to POLYGON ICRS 209.562557777 -42.102271682 209.569630544 -42.104177934 209.572141977 -42.098995052 209.565070154 -42.097077189
2026-04-15 20:15:07,711 - jwst.assign_wcs.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 209.562557777 -42.102271682 209.569630544 -42.104177934 209.572141977 -42.098995052 209.565070154 -42.097077189
2026-04-15 20:15:07,712 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-04-15 20:15:07,745 - stpipe.step - INFO - Step assign_wcs done
2026-04-15 20:15:07,964 - stpipe.step - INFO - Step flat_field running with args (<CubeModel(2, 320, 320) from /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00003_nrcalong_image2pipeline.fits>,).
2026-04-15 20:15:08,072 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_flat_0465.fits
2026-04-15 20:15:08,073 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-04-15 20:15:08,074 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-04-15 20:15:08,075 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-04-15 20:15:08,076 - jwst.flatfield.flat_field - INFO - Extracting matching subarray from flat
2026-04-15 20:15:08,144 - stpipe.step - INFO - Step flat_field done
2026-04-15 20:15:08,350 - stpipe.step - INFO - Step photom running with args (<CubeModel(2, 320, 320) from /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00003_nrcalong_image2pipeline.fits>,).
2026-04-15 20:15:08,357 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_photom_0168.fits
2026-04-15 20:15:08,358 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_area_0042.fits
2026-04-15 20:15:08,359 - jwst.photom.photom - INFO - Using instrument: NIRCAM
2026-04-15 20:15:08,359 - jwst.photom.photom - INFO - detector: NRCALONG
2026-04-15 20:15:08,360 - jwst.photom.photom - INFO - exp_type: NRC_CORON
2026-04-15 20:15:08,360 - jwst.photom.photom - INFO - filter: F444W
2026-04-15 20:15:08,361 - jwst.photom.photom - INFO - pupil: MASKRND
2026-04-15 20:15:08,412 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-04-15 20:15:08,413 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-04-15 20:15:08,414 - jwst.photom.photom - INFO - Matching to subarray: SUB320A335R
2026-04-15 20:15:08,416 - jwst.photom.photom - INFO - PHOTMJSR value: 2.486
2026-04-15 20:15:08,464 - stpipe.step - INFO - Step photom done
2026-04-15 20:15:08,464 - jwst.pipeline.calwebb_image2 - INFO - Finished processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00003_nrcalong
2026-04-15 20:15:08,465 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-04-15 20:15:08,466 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:15:08,561 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00003_nrcalong_calints.fits
2026-04-15 20:15:08,562 - stpipe.step - INFO - Step Image2Pipeline done
2026-04-15 20:15:08,562 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:15:08,589 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-resamplestep_0001.asdf
2026-04-15 20:15:08,600 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-image2pipeline_0003.asdf
2026-04-15 20:15:08,613 - stpipe.step - INFO - Image2Pipeline instance created.
2026-04-15 20:15:08,615 - stpipe.step - INFO - BackgroundStep instance created.
2026-04-15 20:15:08,616 - stpipe.step - INFO - AssignWcsStep instance created.
2026-04-15 20:15:08,617 - stpipe.step - INFO - FlatFieldStep instance created.
2026-04-15 20:15:08,619 - stpipe.step - INFO - PhotomStep instance created.
2026-04-15 20:15:08,620 - stpipe.step - INFO - ResampleStep instance created.
2026-04-15 20:15:08,827 - stpipe.step - INFO - Step Image2Pipeline running with args ('/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00004_nrcalong_rateints.fits',).
2026-04-15 20:15:08,835 - stpipe.step - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
bkg_list: None
save_combined_background: False
sigma: 3.0
maxiters: None
soss_source_percentile: 35.0
soss_bkg_percentile: None
wfss_mmag_extract: None
wfss_mask: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
nrs_ifu_slice_wcs: False
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
apply_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: exptime
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
enable_ctx: True
enable_err: True
report_var: True
propagate_dq: False
pixmap_stepsize: 1.0
pixmap_order: 1
2026-04-15 20:15:08,858 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01386001001_0310e_00004_nrcalong_rateints.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2026-04-15 20:15:08,862 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_area_0042.fits'.
2026-04-15 20:15:08,863 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-04-15 20:15:08,864 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-04-15 20:15:08,864 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-04-15 20:15:08,865 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-04-15 20:15:08,865 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_distortion_0325.asdf'.
2026-04-15 20:15:08,866 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-04-15 20:15:08,867 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_filteroffset_0007.asdf'.
2026-04-15 20:15:08,867 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_flat_0465.fits'.
2026-04-15 20:15:08,868 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-04-15 20:15:08,868 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-04-15 20:15:08,869 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-04-15 20:15:08,869 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-04-15 20:15:08,869 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-04-15 20:15:08,870 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-04-15 20:15:08,870 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-04-15 20:15:08,871 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_photom_0168.fits'.
2026-04-15 20:15:08,872 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-04-15 20:15:08,873 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-04-15 20:15:08,873 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-04-15 20:15:08,874 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-04-15 20:15:08,874 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-04-15 20:15:08,875 - jwst.pipeline.calwebb_image2 - INFO - Processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00004_nrcalong
2026-04-15 20:15:08,875 - jwst.pipeline.calwebb_image2 - INFO - Working on input /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00004_nrcalong_rateints.fits ...
2026-04-15 20:15:09,173 - stpipe.step - INFO - Step assign_wcs running with args (<CubeModel(2, 320, 320) from /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00004_nrcalong_image2pipeline.fits>,).
2026-04-15 20:15:09,309 - stcal.alignment.util - INFO - Update S_REGION to POLYGON ICRS 209.562563720 -42.102271829 209.569636488 -42.104178080 209.572147920 -42.098995198 209.565076096 -42.097077336
2026-04-15 20:15:09,311 - jwst.assign_wcs.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 209.562563720 -42.102271829 209.569636488 -42.104178080 209.572147920 -42.098995198 209.565076096 -42.097077336
2026-04-15 20:15:09,312 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-04-15 20:15:09,349 - stpipe.step - INFO - Step assign_wcs done
2026-04-15 20:15:09,578 - stpipe.step - INFO - Step flat_field running with args (<CubeModel(2, 320, 320) from /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00004_nrcalong_image2pipeline.fits>,).
2026-04-15 20:15:09,684 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_flat_0465.fits
2026-04-15 20:15:09,684 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-04-15 20:15:09,685 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-04-15 20:15:09,686 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-04-15 20:15:09,687 - jwst.flatfield.flat_field - INFO - Extracting matching subarray from flat
2026-04-15 20:15:09,757 - stpipe.step - INFO - Step flat_field done
2026-04-15 20:15:09,987 - stpipe.step - INFO - Step photom running with args (<CubeModel(2, 320, 320) from /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00004_nrcalong_image2pipeline.fits>,).
2026-04-15 20:15:09,994 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_photom_0168.fits
2026-04-15 20:15:09,995 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_area_0042.fits
2026-04-15 20:15:09,996 - jwst.photom.photom - INFO - Using instrument: NIRCAM
2026-04-15 20:15:09,996 - jwst.photom.photom - INFO - detector: NRCALONG
2026-04-15 20:15:09,997 - jwst.photom.photom - INFO - exp_type: NRC_CORON
2026-04-15 20:15:09,997 - jwst.photom.photom - INFO - filter: F444W
2026-04-15 20:15:09,998 - jwst.photom.photom - INFO - pupil: MASKRND
2026-04-15 20:15:10,048 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-04-15 20:15:10,049 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-04-15 20:15:10,050 - jwst.photom.photom - INFO - Matching to subarray: SUB320A335R
2026-04-15 20:15:10,052 - jwst.photom.photom - INFO - PHOTMJSR value: 2.486
2026-04-15 20:15:10,085 - stpipe.step - INFO - Step photom done
2026-04-15 20:15:10,086 - jwst.pipeline.calwebb_image2 - INFO - Finished processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00004_nrcalong
2026-04-15 20:15:10,087 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-04-15 20:15:10,088 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:15:10,186 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00004_nrcalong_calints.fits
2026-04-15 20:15:10,187 - stpipe.step - INFO - Step Image2Pipeline done
2026-04-15 20:15:10,188 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:15:10,215 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-resamplestep_0001.asdf
2026-04-15 20:15:10,225 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-image2pipeline_0003.asdf
2026-04-15 20:15:10,237 - stpipe.step - INFO - Image2Pipeline instance created.
2026-04-15 20:15:10,238 - stpipe.step - INFO - BackgroundStep instance created.
2026-04-15 20:15:10,239 - stpipe.step - INFO - AssignWcsStep instance created.
2026-04-15 20:15:10,240 - stpipe.step - INFO - FlatFieldStep instance created.
2026-04-15 20:15:10,241 - stpipe.step - INFO - PhotomStep instance created.
2026-04-15 20:15:10,242 - stpipe.step - INFO - ResampleStep instance created.
2026-04-15 20:15:10,460 - stpipe.step - INFO - Step Image2Pipeline running with args ('/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00005_nrcalong_rateints.fits',).
2026-04-15 20:15:10,468 - stpipe.step - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
bkg_list: None
save_combined_background: False
sigma: 3.0
maxiters: None
soss_source_percentile: 35.0
soss_bkg_percentile: None
wfss_mmag_extract: None
wfss_mask: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
nrs_ifu_slice_wcs: False
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
apply_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: exptime
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
enable_ctx: True
enable_err: True
report_var: True
propagate_dq: False
pixmap_stepsize: 1.0
pixmap_order: 1
2026-04-15 20:15:10,491 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01386001001_0310e_00005_nrcalong_rateints.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2026-04-15 20:15:10,495 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_area_0042.fits'.
2026-04-15 20:15:10,496 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-04-15 20:15:10,497 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-04-15 20:15:10,497 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-04-15 20:15:10,498 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-04-15 20:15:10,498 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_distortion_0325.asdf'.
2026-04-15 20:15:10,499 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-04-15 20:15:10,500 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_filteroffset_0007.asdf'.
2026-04-15 20:15:10,500 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_flat_0465.fits'.
2026-04-15 20:15:10,501 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-04-15 20:15:10,502 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-04-15 20:15:10,502 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-04-15 20:15:10,503 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-04-15 20:15:10,503 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-04-15 20:15:10,503 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-04-15 20:15:10,504 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-04-15 20:15:10,504 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_photom_0168.fits'.
2026-04-15 20:15:10,506 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-04-15 20:15:10,506 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-04-15 20:15:10,507 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-04-15 20:15:10,507 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-04-15 20:15:10,509 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-04-15 20:15:10,509 - jwst.pipeline.calwebb_image2 - INFO - Processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00005_nrcalong
2026-04-15 20:15:10,510 - jwst.pipeline.calwebb_image2 - INFO - Working on input /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00005_nrcalong_rateints.fits ...
2026-04-15 20:15:10,811 - stpipe.step - INFO - Step assign_wcs running with args (<CubeModel(2, 320, 320) from /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00005_nrcalong_image2pipeline.fits>,).
2026-04-15 20:15:10,919 - stcal.alignment.util - INFO - Update S_REGION to POLYGON ICRS 209.562568373 -42.102274529 209.569641141 -42.104180779 209.572152572 -42.098997897 209.565080747 -42.097080035
2026-04-15 20:15:10,921 - jwst.assign_wcs.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 209.562568373 -42.102274529 209.569641141 -42.104180779 209.572152572 -42.098997897 209.565080747 -42.097080035
2026-04-15 20:15:10,922 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-04-15 20:15:10,956 - stpipe.step - INFO - Step assign_wcs done
2026-04-15 20:15:11,154 - stpipe.step - INFO - Step flat_field running with args (<CubeModel(2, 320, 320) from /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00005_nrcalong_image2pipeline.fits>,).
2026-04-15 20:15:11,242 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_flat_0465.fits
2026-04-15 20:15:11,242 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-04-15 20:15:11,243 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-04-15 20:15:11,243 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-04-15 20:15:11,244 - jwst.flatfield.flat_field - INFO - Extracting matching subarray from flat
2026-04-15 20:15:11,306 - stpipe.step - INFO - Step flat_field done
2026-04-15 20:15:11,488 - stpipe.step - INFO - Step photom running with args (<CubeModel(2, 320, 320) from /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00005_nrcalong_image2pipeline.fits>,).
2026-04-15 20:15:11,495 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_photom_0168.fits
2026-04-15 20:15:11,495 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_area_0042.fits
2026-04-15 20:15:11,496 - jwst.photom.photom - INFO - Using instrument: NIRCAM
2026-04-15 20:15:11,497 - jwst.photom.photom - INFO - detector: NRCALONG
2026-04-15 20:15:11,498 - jwst.photom.photom - INFO - exp_type: NRC_CORON
2026-04-15 20:15:11,498 - jwst.photom.photom - INFO - filter: F444W
2026-04-15 20:15:11,499 - jwst.photom.photom - INFO - pupil: MASKRND
2026-04-15 20:15:11,547 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-04-15 20:15:11,548 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-04-15 20:15:11,549 - jwst.photom.photom - INFO - Matching to subarray: SUB320A335R
2026-04-15 20:15:11,551 - jwst.photom.photom - INFO - PHOTMJSR value: 2.486
2026-04-15 20:15:11,581 - stpipe.step - INFO - Step photom done
2026-04-15 20:15:11,582 - jwst.pipeline.calwebb_image2 - INFO - Finished processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00005_nrcalong
2026-04-15 20:15:11,583 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-04-15 20:15:11,583 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:15:11,675 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00005_nrcalong_calints.fits
2026-04-15 20:15:11,676 - stpipe.step - INFO - Step Image2Pipeline done
2026-04-15 20:15:11,676 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:15:11,703 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-resamplestep_0001.asdf
2026-04-15 20:15:11,714 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-image2pipeline_0003.asdf
2026-04-15 20:15:11,726 - stpipe.step - INFO - Image2Pipeline instance created.
2026-04-15 20:15:11,728 - stpipe.step - INFO - BackgroundStep instance created.
2026-04-15 20:15:11,729 - stpipe.step - INFO - AssignWcsStep instance created.
2026-04-15 20:15:11,730 - stpipe.step - INFO - FlatFieldStep instance created.
2026-04-15 20:15:11,731 - stpipe.step - INFO - PhotomStep instance created.
2026-04-15 20:15:11,732 - stpipe.step - INFO - ResampleStep instance created.
2026-04-15 20:15:11,954 - stpipe.step - INFO - Step Image2Pipeline running with args ('/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00006_nrcalong_rateints.fits',).
2026-04-15 20:15:11,961 - stpipe.step - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
bkg_list: None
save_combined_background: False
sigma: 3.0
maxiters: None
soss_source_percentile: 35.0
soss_bkg_percentile: None
wfss_mmag_extract: None
wfss_mask: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
nrs_ifu_slice_wcs: False
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
apply_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: exptime
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
enable_ctx: True
enable_err: True
report_var: True
propagate_dq: False
pixmap_stepsize: 1.0
pixmap_order: 1
2026-04-15 20:15:11,984 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01386001001_0310e_00006_nrcalong_rateints.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2026-04-15 20:15:11,988 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_area_0042.fits'.
2026-04-15 20:15:11,988 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-04-15 20:15:11,989 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-04-15 20:15:11,989 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-04-15 20:15:11,990 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-04-15 20:15:11,990 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_distortion_0325.asdf'.
2026-04-15 20:15:11,991 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-04-15 20:15:11,992 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_filteroffset_0007.asdf'.
2026-04-15 20:15:11,992 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_flat_0465.fits'.
2026-04-15 20:15:11,993 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-04-15 20:15:11,993 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-04-15 20:15:11,994 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-04-15 20:15:11,994 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-04-15 20:15:11,995 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-04-15 20:15:11,995 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-04-15 20:15:11,996 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-04-15 20:15:11,996 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_photom_0168.fits'.
2026-04-15 20:15:11,997 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-04-15 20:15:11,997 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-04-15 20:15:11,998 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-04-15 20:15:11,998 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-04-15 20:15:12,008 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-04-15 20:15:12,009 - jwst.pipeline.calwebb_image2 - INFO - Processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00006_nrcalong
2026-04-15 20:15:12,018 - jwst.pipeline.calwebb_image2 - INFO - Working on input /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00006_nrcalong_rateints.fits ...
2026-04-15 20:15:12,304 - stpipe.step - INFO - Step assign_wcs running with args (<CubeModel(2, 320, 320) from /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00006_nrcalong_image2pipeline.fits>,).
2026-04-15 20:15:12,410 - stcal.alignment.util - INFO - Update S_REGION to POLYGON ICRS 209.562568211 -42.102278876 209.569640980 -42.104185126 209.572152410 -42.099002243 209.565080585 -42.097084382
2026-04-15 20:15:12,411 - jwst.assign_wcs.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 209.562568211 -42.102278876 209.569640980 -42.104185126 209.572152410 -42.099002243 209.565080585 -42.097084382
2026-04-15 20:15:12,412 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-04-15 20:15:12,444 - stpipe.step - INFO - Step assign_wcs done
2026-04-15 20:15:12,627 - stpipe.step - INFO - Step flat_field running with args (<CubeModel(2, 320, 320) from /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00006_nrcalong_image2pipeline.fits>,).
2026-04-15 20:15:12,732 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_flat_0465.fits
2026-04-15 20:15:12,733 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-04-15 20:15:12,733 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-04-15 20:15:12,734 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-04-15 20:15:12,734 - jwst.flatfield.flat_field - INFO - Extracting matching subarray from flat
2026-04-15 20:15:12,797 - stpipe.step - INFO - Step flat_field done
2026-04-15 20:15:12,988 - stpipe.step - INFO - Step photom running with args (<CubeModel(2, 320, 320) from /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00006_nrcalong_image2pipeline.fits>,).
2026-04-15 20:15:12,995 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_photom_0168.fits
2026-04-15 20:15:12,995 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_area_0042.fits
2026-04-15 20:15:12,996 - jwst.photom.photom - INFO - Using instrument: NIRCAM
2026-04-15 20:15:12,997 - jwst.photom.photom - INFO - detector: NRCALONG
2026-04-15 20:15:12,997 - jwst.photom.photom - INFO - exp_type: NRC_CORON
2026-04-15 20:15:12,998 - jwst.photom.photom - INFO - filter: F444W
2026-04-15 20:15:12,998 - jwst.photom.photom - INFO - pupil: MASKRND
2026-04-15 20:15:13,051 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-04-15 20:15:13,052 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-04-15 20:15:13,053 - jwst.photom.photom - INFO - Matching to subarray: SUB320A335R
2026-04-15 20:15:13,055 - jwst.photom.photom - INFO - PHOTMJSR value: 2.486
2026-04-15 20:15:13,087 - stpipe.step - INFO - Step photom done
2026-04-15 20:15:13,087 - jwst.pipeline.calwebb_image2 - INFO - Finished processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00006_nrcalong
2026-04-15 20:15:13,088 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-04-15 20:15:13,089 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:15:13,182 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00006_nrcalong_calints.fits
2026-04-15 20:15:13,183 - stpipe.step - INFO - Step Image2Pipeline done
2026-04-15 20:15:13,184 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:15:13,210 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-resamplestep_0001.asdf
2026-04-15 20:15:13,221 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-image2pipeline_0003.asdf
2026-04-15 20:15:13,233 - stpipe.step - INFO - Image2Pipeline instance created.
2026-04-15 20:15:13,235 - stpipe.step - INFO - BackgroundStep instance created.
2026-04-15 20:15:13,236 - stpipe.step - INFO - AssignWcsStep instance created.
2026-04-15 20:15:13,237 - stpipe.step - INFO - FlatFieldStep instance created.
2026-04-15 20:15:13,238 - stpipe.step - INFO - PhotomStep instance created.
2026-04-15 20:15:13,239 - stpipe.step - INFO - ResampleStep instance created.
2026-04-15 20:15:13,428 - stpipe.step - INFO - Step Image2Pipeline running with args ('/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00007_nrcalong_rateints.fits',).
2026-04-15 20:15:13,436 - stpipe.step - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
bkg_list: None
save_combined_background: False
sigma: 3.0
maxiters: None
soss_source_percentile: 35.0
soss_bkg_percentile: None
wfss_mmag_extract: None
wfss_mask: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
nrs_ifu_slice_wcs: False
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
apply_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: exptime
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
enable_ctx: True
enable_err: True
report_var: True
propagate_dq: False
pixmap_stepsize: 1.0
pixmap_order: 1
2026-04-15 20:15:13,458 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01386001001_0310e_00007_nrcalong_rateints.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2026-04-15 20:15:13,461 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_area_0042.fits'.
2026-04-15 20:15:13,462 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-04-15 20:15:13,463 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-04-15 20:15:13,463 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-04-15 20:15:13,464 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-04-15 20:15:13,464 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_distortion_0325.asdf'.
2026-04-15 20:15:13,465 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-04-15 20:15:13,466 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_filteroffset_0007.asdf'.
2026-04-15 20:15:13,466 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_flat_0465.fits'.
2026-04-15 20:15:13,467 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-04-15 20:15:13,467 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-04-15 20:15:13,467 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-04-15 20:15:13,468 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-04-15 20:15:13,469 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-04-15 20:15:13,469 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-04-15 20:15:13,469 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-04-15 20:15:13,470 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_photom_0168.fits'.
2026-04-15 20:15:13,471 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-04-15 20:15:13,472 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-04-15 20:15:13,472 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-04-15 20:15:13,473 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-04-15 20:15:13,473 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-04-15 20:15:13,474 - jwst.pipeline.calwebb_image2 - INFO - Processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00007_nrcalong
2026-04-15 20:15:13,475 - jwst.pipeline.calwebb_image2 - INFO - Working on input /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00007_nrcalong_rateints.fits ...
2026-04-15 20:15:13,733 - stpipe.step - INFO - Step assign_wcs running with args (<CubeModel(2, 320, 320) from /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00007_nrcalong_image2pipeline.fits>,).
2026-04-15 20:15:13,840 - stcal.alignment.util - INFO - Update S_REGION to POLYGON ICRS 209.562564583 -42.102282296 209.569637353 -42.104188543 209.572148781 -42.099005660 209.565076954 -42.097087801
2026-04-15 20:15:13,842 - jwst.assign_wcs.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 209.562564583 -42.102282296 209.569637353 -42.104188543 209.572148781 -42.099005660 209.565076954 -42.097087801
2026-04-15 20:15:13,843 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-04-15 20:15:13,874 - stpipe.step - INFO - Step assign_wcs done
2026-04-15 20:15:14,054 - stpipe.step - INFO - Step flat_field running with args (<CubeModel(2, 320, 320) from /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00007_nrcalong_image2pipeline.fits>,).
2026-04-15 20:15:14,139 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_flat_0465.fits
2026-04-15 20:15:14,140 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-04-15 20:15:14,141 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-04-15 20:15:14,141 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-04-15 20:15:14,142 - jwst.flatfield.flat_field - INFO - Extracting matching subarray from flat
2026-04-15 20:15:14,202 - stpipe.step - INFO - Step flat_field done
2026-04-15 20:15:14,381 - stpipe.step - INFO - Step photom running with args (<CubeModel(2, 320, 320) from /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00007_nrcalong_image2pipeline.fits>,).
2026-04-15 20:15:14,388 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_photom_0168.fits
2026-04-15 20:15:14,388 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_area_0042.fits
2026-04-15 20:15:14,389 - jwst.photom.photom - INFO - Using instrument: NIRCAM
2026-04-15 20:15:14,390 - jwst.photom.photom - INFO - detector: NRCALONG
2026-04-15 20:15:14,390 - jwst.photom.photom - INFO - exp_type: NRC_CORON
2026-04-15 20:15:14,391 - jwst.photom.photom - INFO - filter: F444W
2026-04-15 20:15:14,391 - jwst.photom.photom - INFO - pupil: MASKRND
2026-04-15 20:15:14,444 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-04-15 20:15:14,444 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-04-15 20:15:14,446 - jwst.photom.photom - INFO - Matching to subarray: SUB320A335R
2026-04-15 20:15:14,447 - jwst.photom.photom - INFO - PHOTMJSR value: 2.486
2026-04-15 20:15:14,485 - stpipe.step - INFO - Step photom done
2026-04-15 20:15:14,485 - jwst.pipeline.calwebb_image2 - INFO - Finished processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00007_nrcalong
2026-04-15 20:15:14,486 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-04-15 20:15:14,487 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:15:14,580 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00007_nrcalong_calints.fits
2026-04-15 20:15:14,580 - stpipe.step - INFO - Step Image2Pipeline done
2026-04-15 20:15:14,581 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:15:14,607 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-resamplestep_0001.asdf
2026-04-15 20:15:14,617 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-image2pipeline_0003.asdf
2026-04-15 20:15:14,629 - stpipe.step - INFO - Image2Pipeline instance created.
2026-04-15 20:15:14,630 - stpipe.step - INFO - BackgroundStep instance created.
2026-04-15 20:15:14,631 - stpipe.step - INFO - AssignWcsStep instance created.
2026-04-15 20:15:14,632 - stpipe.step - INFO - FlatFieldStep instance created.
2026-04-15 20:15:14,633 - stpipe.step - INFO - PhotomStep instance created.
2026-04-15 20:15:14,634 - stpipe.step - INFO - ResampleStep instance created.
2026-04-15 20:15:14,818 - stpipe.step - INFO - Step Image2Pipeline running with args ('/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00008_nrcalong_rateints.fits',).
2026-04-15 20:15:14,825 - stpipe.step - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
bkg_list: None
save_combined_background: False
sigma: 3.0
maxiters: None
soss_source_percentile: 35.0
soss_bkg_percentile: None
wfss_mmag_extract: None
wfss_mask: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
nrs_ifu_slice_wcs: False
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
apply_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: exptime
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
enable_ctx: True
enable_err: True
report_var: True
propagate_dq: False
pixmap_stepsize: 1.0
pixmap_order: 1
2026-04-15 20:15:14,848 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01386001001_0310e_00008_nrcalong_rateints.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2026-04-15 20:15:14,852 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_area_0042.fits'.
2026-04-15 20:15:14,853 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-04-15 20:15:14,853 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-04-15 20:15:14,854 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-04-15 20:15:14,854 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-04-15 20:15:14,855 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_distortion_0325.asdf'.
2026-04-15 20:15:14,856 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-04-15 20:15:14,856 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_filteroffset_0007.asdf'.
2026-04-15 20:15:14,857 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_flat_0465.fits'.
2026-04-15 20:15:14,857 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-04-15 20:15:14,858 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-04-15 20:15:14,858 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-04-15 20:15:14,859 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-04-15 20:15:14,859 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-04-15 20:15:14,860 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-04-15 20:15:14,860 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-04-15 20:15:14,861 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_photom_0168.fits'.
2026-04-15 20:15:14,861 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-04-15 20:15:14,861 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-04-15 20:15:14,862 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-04-15 20:15:14,862 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-04-15 20:15:14,863 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-04-15 20:15:14,863 - jwst.pipeline.calwebb_image2 - INFO - Processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00008_nrcalong
2026-04-15 20:15:14,864 - jwst.pipeline.calwebb_image2 - INFO - Working on input /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00008_nrcalong_rateints.fits ...
2026-04-15 20:15:15,112 - stpipe.step - INFO - Step assign_wcs running with args (<CubeModel(2, 320, 320) from /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00008_nrcalong_image2pipeline.fits>,).
2026-04-15 20:15:15,217 - stcal.alignment.util - INFO - Update S_REGION to POLYGON ICRS 209.562558706 -42.102282191 209.569631475 -42.104188441 209.572142906 -42.099005558 209.565071080 -42.097087697
2026-04-15 20:15:15,218 - jwst.assign_wcs.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 209.562558706 -42.102282191 209.569631475 -42.104188441 209.572142906 -42.099005558 209.565071080 -42.097087697
2026-04-15 20:15:15,219 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-04-15 20:15:15,251 - stpipe.step - INFO - Step assign_wcs done
2026-04-15 20:15:15,433 - stpipe.step - INFO - Step flat_field running with args (<CubeModel(2, 320, 320) from /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00008_nrcalong_image2pipeline.fits>,).
2026-04-15 20:15:15,523 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_flat_0465.fits
2026-04-15 20:15:15,523 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-04-15 20:15:15,524 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-04-15 20:15:15,525 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-04-15 20:15:15,525 - jwst.flatfield.flat_field - INFO - Extracting matching subarray from flat
2026-04-15 20:15:15,584 - stpipe.step - INFO - Step flat_field done
2026-04-15 20:15:15,766 - stpipe.step - INFO - Step photom running with args (<CubeModel(2, 320, 320) from /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00008_nrcalong_image2pipeline.fits>,).
2026-04-15 20:15:15,773 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_photom_0168.fits
2026-04-15 20:15:15,773 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_area_0042.fits
2026-04-15 20:15:15,774 - jwst.photom.photom - INFO - Using instrument: NIRCAM
2026-04-15 20:15:15,775 - jwst.photom.photom - INFO - detector: NRCALONG
2026-04-15 20:15:15,775 - jwst.photom.photom - INFO - exp_type: NRC_CORON
2026-04-15 20:15:15,776 - jwst.photom.photom - INFO - filter: F444W
2026-04-15 20:15:15,776 - jwst.photom.photom - INFO - pupil: MASKRND
2026-04-15 20:15:15,823 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-04-15 20:15:15,824 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-04-15 20:15:15,825 - jwst.photom.photom - INFO - Matching to subarray: SUB320A335R
2026-04-15 20:15:15,826 - jwst.photom.photom - INFO - PHOTMJSR value: 2.486
2026-04-15 20:15:15,856 - stpipe.step - INFO - Step photom done
2026-04-15 20:15:15,857 - jwst.pipeline.calwebb_image2 - INFO - Finished processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00008_nrcalong
2026-04-15 20:15:15,858 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-04-15 20:15:15,858 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:15:15,947 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00008_nrcalong_calints.fits
2026-04-15 20:15:15,948 - stpipe.step - INFO - Step Image2Pipeline done
2026-04-15 20:15:15,949 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:15:15,974 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-resamplestep_0001.asdf
2026-04-15 20:15:15,984 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-image2pipeline_0003.asdf
2026-04-15 20:15:15,994 - stpipe.step - INFO - Image2Pipeline instance created.
2026-04-15 20:15:15,996 - stpipe.step - INFO - BackgroundStep instance created.
2026-04-15 20:15:15,998 - stpipe.step - INFO - AssignWcsStep instance created.
2026-04-15 20:15:15,999 - stpipe.step - INFO - FlatFieldStep instance created.
2026-04-15 20:15:15,999 - stpipe.step - INFO - PhotomStep instance created.
2026-04-15 20:15:16,000 - stpipe.step - INFO - ResampleStep instance created.
2026-04-15 20:15:16,167 - stpipe.step - INFO - Step Image2Pipeline running with args ('/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00009_nrcalong_rateints.fits',).
2026-04-15 20:15:16,174 - stpipe.step - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
bkg_list: None
save_combined_background: False
sigma: 3.0
maxiters: None
soss_source_percentile: 35.0
soss_bkg_percentile: None
wfss_mmag_extract: None
wfss_mask: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
nrs_ifu_slice_wcs: False
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
apply_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: exptime
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
enable_ctx: True
enable_err: True
report_var: True
propagate_dq: False
pixmap_stepsize: 1.0
pixmap_order: 1
2026-04-15 20:15:16,196 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01386001001_0310e_00009_nrcalong_rateints.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2026-04-15 20:15:16,200 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_area_0042.fits'.
2026-04-15 20:15:16,200 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-04-15 20:15:16,201 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-04-15 20:15:16,201 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-04-15 20:15:16,202 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-04-15 20:15:16,202 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_distortion_0325.asdf'.
2026-04-15 20:15:16,203 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-04-15 20:15:16,203 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_filteroffset_0007.asdf'.
2026-04-15 20:15:16,204 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_flat_0465.fits'.
2026-04-15 20:15:16,204 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-04-15 20:15:16,205 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-04-15 20:15:16,206 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-04-15 20:15:16,206 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-04-15 20:15:16,207 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-04-15 20:15:16,207 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-04-15 20:15:16,207 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-04-15 20:15:16,208 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_photom_0168.fits'.
2026-04-15 20:15:16,209 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-04-15 20:15:16,209 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-04-15 20:15:16,210 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-04-15 20:15:16,210 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-04-15 20:15:16,211 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-04-15 20:15:16,211 - jwst.pipeline.calwebb_image2 - INFO - Processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00009_nrcalong
2026-04-15 20:15:16,212 - jwst.pipeline.calwebb_image2 - INFO - Working on input /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00009_nrcalong_rateints.fits ...
2026-04-15 20:15:16,443 - stpipe.step - INFO - Step assign_wcs running with args (<CubeModel(2, 320, 320) from /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00009_nrcalong_image2pipeline.fits>,).
2026-04-15 20:15:16,544 - stcal.alignment.util - INFO - Update S_REGION to POLYGON ICRS 209.562553966 -42.102279496 209.569626735 -42.104185747 209.572138167 -42.099002864 209.565066342 -42.097085002
2026-04-15 20:15:16,546 - jwst.assign_wcs.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 209.562553966 -42.102279496 209.569626735 -42.104185747 209.572138167 -42.099002864 209.565066342 -42.097085002
2026-04-15 20:15:16,547 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-04-15 20:15:16,577 - stpipe.step - INFO - Step assign_wcs done
2026-04-15 20:15:16,744 - stpipe.step - INFO - Step flat_field running with args (<CubeModel(2, 320, 320) from /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00009_nrcalong_image2pipeline.fits>,).
2026-04-15 20:15:16,825 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_flat_0465.fits
2026-04-15 20:15:16,826 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-04-15 20:15:16,827 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-04-15 20:15:16,827 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-04-15 20:15:16,828 - jwst.flatfield.flat_field - INFO - Extracting matching subarray from flat
2026-04-15 20:15:16,887 - stpipe.step - INFO - Step flat_field done
2026-04-15 20:15:17,055 - stpipe.step - INFO - Step photom running with args (<CubeModel(2, 320, 320) from /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00009_nrcalong_image2pipeline.fits>,).
2026-04-15 20:15:17,061 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_photom_0168.fits
2026-04-15 20:15:17,061 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_area_0042.fits
2026-04-15 20:15:17,062 - jwst.photom.photom - INFO - Using instrument: NIRCAM
2026-04-15 20:15:17,062 - jwst.photom.photom - INFO - detector: NRCALONG
2026-04-15 20:15:17,063 - jwst.photom.photom - INFO - exp_type: NRC_CORON
2026-04-15 20:15:17,064 - jwst.photom.photom - INFO - filter: F444W
2026-04-15 20:15:17,064 - jwst.photom.photom - INFO - pupil: MASKRND
2026-04-15 20:15:17,112 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-04-15 20:15:17,112 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-04-15 20:15:17,114 - jwst.photom.photom - INFO - Matching to subarray: SUB320A335R
2026-04-15 20:15:17,115 - jwst.photom.photom - INFO - PHOTMJSR value: 2.486
2026-04-15 20:15:17,145 - stpipe.step - INFO - Step photom done
2026-04-15 20:15:17,145 - jwst.pipeline.calwebb_image2 - INFO - Finished processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386001001_0310e_00009_nrcalong
2026-04-15 20:15:17,146 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-04-15 20:15:17,147 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:15:17,237 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00009_nrcalong_calints.fits
2026-04-15 20:15:17,238 - stpipe.step - INFO - Step Image2Pipeline done
2026-04-15 20:15:17,238 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:15:17,264 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-resamplestep_0001.asdf
2026-04-15 20:15:17,273 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-image2pipeline_0003.asdf
2026-04-15 20:15:17,284 - stpipe.step - INFO - Image2Pipeline instance created.
2026-04-15 20:15:17,286 - stpipe.step - INFO - BackgroundStep instance created.
2026-04-15 20:15:17,287 - stpipe.step - INFO - AssignWcsStep instance created.
2026-04-15 20:15:17,288 - stpipe.step - INFO - FlatFieldStep instance created.
2026-04-15 20:15:17,289 - stpipe.step - INFO - PhotomStep instance created.
2026-04-15 20:15:17,291 - stpipe.step - INFO - ResampleStep instance created.
2026-04-15 20:15:17,456 - stpipe.step - INFO - Step Image2Pipeline running with args ('/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386002001_0310a_00001_nrcalong_rateints.fits',).
2026-04-15 20:15:17,463 - stpipe.step - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
bkg_list: None
save_combined_background: False
sigma: 3.0
maxiters: None
soss_source_percentile: 35.0
soss_bkg_percentile: None
wfss_mmag_extract: None
wfss_mask: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
nrs_ifu_slice_wcs: False
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
apply_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: exptime
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
enable_ctx: True
enable_err: True
report_var: True
propagate_dq: False
pixmap_stepsize: 1.0
pixmap_order: 1
2026-04-15 20:15:17,484 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01386002001_0310a_00001_nrcalong_rateints.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2026-04-15 20:15:17,487 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_area_0042.fits'.
2026-04-15 20:15:17,488 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-04-15 20:15:17,489 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-04-15 20:15:17,489 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-04-15 20:15:17,489 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-04-15 20:15:17,490 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_distortion_0325.asdf'.
2026-04-15 20:15:17,490 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-04-15 20:15:17,491 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_filteroffset_0007.asdf'.
2026-04-15 20:15:17,491 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_flat_0465.fits'.
2026-04-15 20:15:17,492 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-04-15 20:15:17,493 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-04-15 20:15:17,493 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-04-15 20:15:17,494 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-04-15 20:15:17,494 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-04-15 20:15:17,494 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-04-15 20:15:17,495 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-04-15 20:15:17,496 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_photom_0168.fits'.
2026-04-15 20:15:17,496 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-04-15 20:15:17,497 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-04-15 20:15:17,497 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-04-15 20:15:17,497 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-04-15 20:15:17,498 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-04-15 20:15:17,499 - jwst.pipeline.calwebb_image2 - INFO - Processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386002001_0310a_00001_nrcalong
2026-04-15 20:15:17,499 - jwst.pipeline.calwebb_image2 - INFO - Working on input /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386002001_0310a_00001_nrcalong_rateints.fits ...
2026-04-15 20:15:17,726 - stpipe.step - INFO - Step assign_wcs running with args (<CubeModel(2, 320, 320) from /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386002001_0310a_00001_nrcalong_image2pipeline.fits>,).
2026-04-15 20:15:17,828 - stcal.alignment.util - INFO - Update S_REGION to POLYGON ICRS 201.144088025 -51.505952662 201.152504439 -51.507883699 201.155537236 -51.502709582 201.147122265 -51.500766999
2026-04-15 20:15:17,829 - jwst.assign_wcs.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 201.144088025 -51.505952662 201.152504439 -51.507883699 201.155537236 -51.502709582 201.147122265 -51.500766999
2026-04-15 20:15:17,830 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-04-15 20:15:17,861 - stpipe.step - INFO - Step assign_wcs done
2026-04-15 20:15:18,025 - stpipe.step - INFO - Step flat_field running with args (<CubeModel(2, 320, 320) from /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386002001_0310a_00001_nrcalong_image2pipeline.fits>,).
2026-04-15 20:15:18,104 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_flat_0465.fits
2026-04-15 20:15:18,105 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-04-15 20:15:18,106 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-04-15 20:15:18,106 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-04-15 20:15:18,107 - jwst.flatfield.flat_field - INFO - Extracting matching subarray from flat
2026-04-15 20:15:18,172 - stpipe.step - INFO - Step flat_field done
2026-04-15 20:15:18,340 - stpipe.step - INFO - Step photom running with args (<CubeModel(2, 320, 320) from /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386002001_0310a_00001_nrcalong_image2pipeline.fits>,).
2026-04-15 20:15:18,346 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_photom_0168.fits
2026-04-15 20:15:18,347 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_area_0042.fits
2026-04-15 20:15:18,348 - jwst.photom.photom - INFO - Using instrument: NIRCAM
2026-04-15 20:15:18,348 - jwst.photom.photom - INFO - detector: NRCALONG
2026-04-15 20:15:18,348 - jwst.photom.photom - INFO - exp_type: NRC_CORON
2026-04-15 20:15:18,349 - jwst.photom.photom - INFO - filter: F444W
2026-04-15 20:15:18,349 - jwst.photom.photom - INFO - pupil: MASKRND
2026-04-15 20:15:18,396 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-04-15 20:15:18,397 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-04-15 20:15:18,398 - jwst.photom.photom - INFO - Matching to subarray: SUB320A335R
2026-04-15 20:15:18,400 - jwst.photom.photom - INFO - PHOTMJSR value: 2.486
2026-04-15 20:15:18,429 - stpipe.step - INFO - Step photom done
2026-04-15 20:15:18,430 - jwst.pipeline.calwebb_image2 - INFO - Finished processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386002001_0310a_00001_nrcalong
2026-04-15 20:15:18,431 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-04-15 20:15:18,432 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:15:18,520 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386002001_0310a_00001_nrcalong_calints.fits
2026-04-15 20:15:18,521 - stpipe.step - INFO - Step Image2Pipeline done
2026-04-15 20:15:18,522 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
2026-04-15 20:15:18,546 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-resamplestep_0001.asdf
2026-04-15 20:15:18,556 - stpipe.pipeline - INFO - PARS-IMAGE2PIPELINE parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-image2pipeline_0003.asdf
2026-04-15 20:15:18,566 - stpipe.step - INFO - Image2Pipeline instance created.
2026-04-15 20:15:18,568 - stpipe.step - INFO - BackgroundStep instance created.
2026-04-15 20:15:18,569 - stpipe.step - INFO - AssignWcsStep instance created.
2026-04-15 20:15:18,570 - stpipe.step - INFO - FlatFieldStep instance created.
2026-04-15 20:15:18,571 - stpipe.step - INFO - PhotomStep instance created.
2026-04-15 20:15:18,572 - stpipe.step - INFO - ResampleStep instance created.
2026-04-15 20:15:18,735 - stpipe.step - INFO - Step Image2Pipeline running with args ('/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386003001_0310a_00001_nrcalong_rateints.fits',).
2026-04-15 20:15:18,742 - stpipe.step - INFO - Step Image2Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_bsub: False
steps:
bkg_subtract:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: True
suffix: None
search_output_file: True
input_dir: ''
bkg_list: None
save_combined_background: False
sigma: 3.0
maxiters: None
soss_source_percentile: 35.0
soss_bkg_percentile: None
wfss_mmag_extract: None
wfss_mask: None
wfss_maxiter: 5
wfss_rms_stop: 0.0
wfss_outlier_percent: 1.0
assign_wcs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
sip_approx: True
sip_max_pix_error: 0.01
sip_degree: None
sip_max_inv_pix_error: 0.01
sip_inv_degree: None
sip_npoints: 12
slit_y_low: -0.55
slit_y_high: 0.55
nrs_ifu_slice_wcs: False
flat_field:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
save_interpolated_flat: False
user_supplied_flat: None
inverse: False
photom:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
inverse: False
source_type: None
apply_time_correction: True
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: exptime
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
enable_ctx: True
enable_err: True
report_var: True
propagate_dq: False
pixmap_stepsize: 1.0
pixmap_order: 1
2026-04-15 20:15:18,763 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01386003001_0310a_00001_nrcalong_rateints.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange']
2026-04-15 20:15:18,766 - stpipe.pipeline - INFO - Prefetch for AREA reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_area_0042.fits'.
2026-04-15 20:15:18,767 - stpipe.pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'.
2026-04-15 20:15:18,768 - stpipe.pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'.
2026-04-15 20:15:18,768 - stpipe.pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'.
2026-04-15 20:15:18,768 - stpipe.pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'.
2026-04-15 20:15:18,769 - stpipe.pipeline - INFO - Prefetch for DISTORTION reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_distortion_0325.asdf'.
2026-04-15 20:15:18,770 - stpipe.pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'.
2026-04-15 20:15:18,770 - stpipe.pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_filteroffset_0007.asdf'.
2026-04-15 20:15:18,771 - stpipe.pipeline - INFO - Prefetch for FLAT reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_flat_0465.fits'.
2026-04-15 20:15:18,771 - stpipe.pipeline - INFO - Prefetch for FORE reference file is 'N/A'.
2026-04-15 20:15:18,772 - stpipe.pipeline - INFO - Prefetch for FPA reference file is 'N/A'.
2026-04-15 20:15:18,772 - stpipe.pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'.
2026-04-15 20:15:18,773 - stpipe.pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'.
2026-04-15 20:15:18,773 - stpipe.pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'.
2026-04-15 20:15:18,774 - stpipe.pipeline - INFO - Prefetch for MSA reference file is 'N/A'.
2026-04-15 20:15:18,774 - stpipe.pipeline - INFO - Prefetch for OTE reference file is 'N/A'.
2026-04-15 20:15:18,775 - stpipe.pipeline - INFO - Prefetch for PHOTOM reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_photom_0168.fits'.
2026-04-15 20:15:18,776 - stpipe.pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'.
2026-04-15 20:15:18,776 - stpipe.pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'.
2026-04-15 20:15:18,777 - stpipe.pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'.
2026-04-15 20:15:18,777 - stpipe.pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'.
2026-04-15 20:15:18,778 - jwst.pipeline.calwebb_image2 - INFO - Starting calwebb_image2 ...
2026-04-15 20:15:18,778 - jwst.pipeline.calwebb_image2 - INFO - Processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386003001_0310a_00001_nrcalong
2026-04-15 20:15:18,779 - jwst.pipeline.calwebb_image2 - INFO - Working on input /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386003001_0310a_00001_nrcalong_rateints.fits ...
2026-04-15 20:15:19,008 - stpipe.step - INFO - Step assign_wcs running with args (<CubeModel(2, 320, 320) from /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386003001_0310a_00001_nrcalong_image2pipeline.fits>,).
2026-04-15 20:15:19,112 - stcal.alignment.util - INFO - Update S_REGION to POLYGON ICRS 201.143789784 -51.505284453 201.151533175 -51.508102622 201.155974175 -51.503338798 201.148235232 -51.500509406
2026-04-15 20:15:19,113 - jwst.assign_wcs.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 201.143789784 -51.505284453 201.151533175 -51.508102622 201.155974175 -51.503338798 201.148235232 -51.500509406
2026-04-15 20:15:19,114 - jwst.assign_wcs.assign_wcs - INFO - COMPLETED assign_wcs
2026-04-15 20:15:19,145 - stpipe.step - INFO - Step assign_wcs done
2026-04-15 20:15:19,309 - stpipe.step - INFO - Step flat_field running with args (<CubeModel(2, 320, 320) from /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386003001_0310a_00001_nrcalong_image2pipeline.fits>,).
2026-04-15 20:15:19,397 - jwst.flatfield.flat_field_step - INFO - Using FLAT reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_flat_0465.fits
2026-04-15 20:15:19,397 - jwst.flatfield.flat_field_step - INFO - No reference found for type FFLAT
2026-04-15 20:15:19,398 - jwst.flatfield.flat_field_step - INFO - No reference found for type SFLAT
2026-04-15 20:15:19,398 - jwst.flatfield.flat_field_step - INFO - No reference found for type DFLAT
2026-04-15 20:15:19,399 - jwst.flatfield.flat_field - INFO - Extracting matching subarray from flat
2026-04-15 20:15:19,457 - stpipe.step - INFO - Step flat_field done
2026-04-15 20:15:19,619 - stpipe.step - INFO - Step photom running with args (<CubeModel(2, 320, 320) from /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386003001_0310a_00001_nrcalong_image2pipeline.fits>,).
2026-04-15 20:15:19,625 - jwst.photom.photom_step - INFO - Using photom reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_photom_0168.fits
2026-04-15 20:15:19,626 - jwst.photom.photom_step - INFO - Using area reference file: /home/runner/crds/references/jwst/nircam/jwst_nircam_area_0042.fits
2026-04-15 20:15:19,627 - jwst.photom.photom - INFO - Using instrument: NIRCAM
2026-04-15 20:15:19,627 - jwst.photom.photom - INFO - detector: NRCALONG
2026-04-15 20:15:19,628 - jwst.photom.photom - INFO - exp_type: NRC_CORON
2026-04-15 20:15:19,628 - jwst.photom.photom - INFO - filter: F444W
2026-04-15 20:15:19,629 - jwst.photom.photom - INFO - pupil: MASKRND
2026-04-15 20:15:19,675 - jwst.photom.photom - INFO - Pixel area map copied to output.
2026-04-15 20:15:19,676 - jwst.photom.photom - INFO - Values for PIXAR_SR and PIXAR_A2 obtained from AREA reference file.
2026-04-15 20:15:19,677 - jwst.photom.photom - INFO - Matching to subarray: SUB320A335R
2026-04-15 20:15:19,678 - jwst.photom.photom - INFO - PHOTMJSR value: 2.486
2026-04-15 20:15:19,707 - stpipe.step - INFO - Step photom done
2026-04-15 20:15:19,708 - jwst.pipeline.calwebb_image2 - INFO - Finished processing product /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage1/jw01386003001_0310a_00001_nrcalong
2026-04-15 20:15:19,709 - jwst.pipeline.calwebb_image2 - INFO - ... ending calwebb_image2
2026-04-15 20:15:19,709 - jwst.stpipe.core - INFO - Results used CRDS context: jwst_1535.pmap
2026-04-15 20:15:19,797 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386003001_0310a_00001_nrcalong_calints.fits
2026-04-15 20:15:19,798 - stpipe.step - INFO - Step Image2Pipeline done
2026-04-15 20:15:19,798 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
# Print out the time benchmark
time1 = time.perf_counter()
print(f"Runtime so far: {time1 - time0:0.0f} seconds")
print(f"Runtime for Image2: {time1 - time_image2:0.0f} seconds")
Runtime so far: 106 seconds
Runtime for Image2: 17 seconds
Verify which pipeline steps were run#
if doimage2:
# Identify *_cal.fits file products
cal_files = sorted(glob.glob(os.path.join(image2_dir, '*_calints.fits')))
# Select first file to gather information
cal_f = datamodels.open(cal_files[0])
# Check which steps were run:
cal_f.meta.cal_step.instance
{'assign_wcs': 'COMPLETE',
'charge_migration': 'SKIPPED',
'clean_flicker_noise': 'SKIPPED',
'dq_init': 'COMPLETE',
'flat_field': 'COMPLETE',
'gain_scale': 'SKIPPED',
'group_scale': 'SKIPPED',
'ipc': 'SKIPPED',
'jump': 'COMPLETE',
'linearity': 'COMPLETE',
'persistence': 'SKIPPED',
'photom': 'COMPLETE',
'picture_frame': 'SKIPPED',
'ramp_fit': 'COMPLETE',
'refpix': 'COMPLETE',
'saturation': 'COMPLETE',
'superbias': 'COMPLETE'}
Check which reference files were used to calibrate the first file. Some of these will be detector-dependent.
if doimage2:
cal_f.meta.ref_file.instance
{'area': {'name': 'crds://jwst_nircam_area_0042.fits'},
'camera': {'name': 'N/A'},
'collimator': {'name': 'N/A'},
'crds': {'context_used': 'jwst_1535.pmap', 'sw_version': '13.1.13'},
'dflat': {'name': 'N/A'},
'disperser': {'name': 'N/A'},
'distortion': {'name': 'crds://jwst_nircam_distortion_0325.asdf'},
'fflat': {'name': 'N/A'},
'filteroffset': {'name': 'crds://jwst_nircam_filteroffset_0007.asdf'},
'flat': {'name': 'crds://jwst_nircam_flat_0465.fits'},
'fore': {'name': 'N/A'},
'fpa': {'name': 'N/A'},
'gain': {'name': 'crds://jwst_nircam_gain_0097.fits'},
'ifufore': {'name': 'N/A'},
'ifupost': {'name': 'N/A'},
'ifuslicer': {'name': 'N/A'},
'linearity': {'name': 'crds://jwst_nircam_linearity_0052.fits'},
'mask': {'name': 'crds://jwst_nircam_mask_0076.fits'},
'msa': {'name': 'N/A'},
'ote': {'name': 'N/A'},
'photom': {'name': 'crds://jwst_nircam_photom_0168.fits'},
'readnoise': {'name': 'crds://jwst_nircam_readnoise_0284.fits'},
'regions': {'name': 'N/A'},
'saturation': {'name': 'crds://jwst_nircam_saturation_0097.fits'},
'sflat': {'name': 'N/A'},
'specwcs': {'name': 'N/A'},
'superbias': {'name': 'crds://jwst_nircam_superbias_0229.fits'},
'wavelengthrange': {'name': 'N/A'}}
7. Coron3 Pipeline#
In the Coron3 stage of the calibration pipeline, the *_calints.fits files from the reference PSF images are aligned and subtracted from the science PSF images, and the PSF-subtracted science images are combined into a single undistorted product.
First, we need to create Associations, to inform the pipeline which files are the reference and science PSFs.
By default, the Coron3 stage of the pipeline performs the following steps on NIRCam data:
outlier_detection - flags outlier pixels in all input images.
stack_refs - stacks all of the reference PSF images together into a single product.
align_refs - aligns all of the reference PSF images to the science target images.
klip - fits and subtracts a PSF from each science target image.
resample - combines all of the PSF-subtracted science images into a single undistorted product.
time_coron3 = time.perf_counter()
# Set up a dictionary to define how the Coron3 pipeline should be configured
# Boilerplate dictionary setup
coron3dict = {}
coron3dict['outlier_detection'], coron3dict['stack_refs'], coron3dict['align_refs'] = {}, {}, {}
coron3dict['klip'], coron3dict['resample'] = {}, {}
# Overrides for whether or not certain steps should be skipped (example)
#coron3dict['outlier_detection']['skip'] = True
# Reduce the SNR required for a pixel to be flagged as an outlier
#coron3dict['outlier_detection']['snr'] = '4.5 3.5'
# Define which pixels types are bad based on the images' data quality arrays
# (only DO_NOT_USE by default). New bad pixels can be flagged in the images' data
# quality arrays to avoid issues with the psf alignment or subtraction steps.
#coron3dict['align_refs']['bad_bits'] = 'DO_NOT_USE, OTHER_BAD_PIXEL'
Find and sort all of the input files, ensuring use of absolute paths.
# Science Files need the calints.fits files
sstring = os.path.join(image2_dir, '*_calints.fits')
# Identify calints files
cal_files = sorted(glob.glob(os.path.join(image2_dir, '*_calints.fits')))
# Expand the relative paths into absolute paths
cal_files = [os.path.abspath(fname) for fname in cal_files]
print(f'Found {len(cal_files)} science files to process')
Found 11 science files to process
Create Association File#
An association file lists the files to calibrate together in Stage3 of the pipeline. For the Coron3 pipeline, the reference and science psfs must be specified in the association file. Note that association files are available for download from MAST, with filenames of *_asn.json. Here we show how to create an association file to point to the data products created in the steps above. This is useful in cases where you want to work with a set of data that is different than that in the association files from MAST.
Using the associations.asn_from_list command and Asn_lv3NRCCoron helps identify the PSF reference from the science PSF using the header information in the files.
# List of data to use
print('\nList of calints files to use:')
cal_files
List of calints files to use:
['/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00001_nrcalong_calints.fits',
'/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00002_nrcalong_calints.fits',
'/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00003_nrcalong_calints.fits',
'/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00004_nrcalong_calints.fits',
'/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00005_nrcalong_calints.fits',
'/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00006_nrcalong_calints.fits',
'/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00007_nrcalong_calints.fits',
'/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00008_nrcalong_calints.fits',
'/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386001001_0310e_00009_nrcalong_calints.fits',
'/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386002001_0310a_00001_nrcalong_calints.fits',
'/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage2/jw01386003001_0310a_00001_nrcalong_calints.fits']
#Create a function creates the association file we need for the coron3pipeline.
def create_coron3_asn(cal_files, coron3_dir, forced_ref_files=None):
"""
Create an association file for the Coron3 pipeline.
Parameters
----------
cal_files : list
List of calibrated input files to be processed in the Coron3 pipeline. These should be the
*_calints.fits files created by the Image2 pipeline.
coron3_dir : str
Directory where the association file will be saved.
forced_ref_files : list, optional
List of reference PSF files to be included in the association file. If not provided,
the function will attempt to identify reference PSF files from the input cal_files based on header
information.
Returns
-------
asn_filename : str
The filename of the created association file.
asn : jwst.associations.Association
The created association object.
"""
# Add catch for if no forced reference files are provided
if forced_ref_files is None:
forced_ref_files = []
# Look through the input files for exptype SCIENCE to set default output names
product_name = 'L3product'
for file in cal_files:
hdr = fits.getheader(file)
if not hdr['IS_PSF']:
product_name = hdr['TARGNAME'].replace(" ", "") + "-" + hdr['FILTER']
# Combine cal_files with any forced PSF files
all_files = list(cal_files) + forced_ref_files
asn_filename = os.path.join(coron3_dir, product_name + '.json')
asn = asn_from_list.asn_from_list(all_files, rule=Asn_Lv3NRCCoron,
product_name=product_name)
# Assign exptype based on header, but force forced_psf_files to 'psf'
forced_ref_set = set(os.path.abspath(f) for f in forced_ref_files)
for member in asn['products'][0]['members']:
if os.path.abspath(member['expname']) in forced_ref_set:
member['exptype'] = 'psf'
elif fits.getheader(member['expname'])['IS_PSF']:
member['exptype'] = 'psf'
else:
member['exptype'] = 'science'
# Level 3 coronagraphic associations require at least one PSF
# Validates the association for this case.
asn.validity['has_psf']['validated'] = True # set to True since psfs were added to the asn above
asn['asn_type'] = 'coron3'
with open(asn_filename, 'w') as outfile:
outfile.write(asn.dump()[1])
return asn_filename, asn
asn_filename, asn = create_coron3_asn(cal_files, coron3_dir)
/home/runner/micromamba/envs/ci-env/lib/python3.13/site-packages/jwst/associations/association.py:232: UserWarning: Input association file contains path information; note that this can complicate usage and/or sharing of such files.
warnings.warn(err_str, UserWarning, stacklevel=1)
Run Coron3 stage of the pipeline#
The Coron3 stage of the pipeline will produce the following outputs:
a
_crf.fitsfile produced by theoutlier_detectionstep for each input image, where theDQarray marks the pixels flagged as outliers.a
_psfstackimage containing a stack of all of the reference PSF images.a
_psfalignimage for each science PSF, where the reference PSFs have been aligned to the science PSF.a
_psfsubimage for each science PSF, where the aligned reference PSFs have been subtracted from the science PSF.a final combined, undistorted PSF-subtracted image with suffix
_i2d.fits.
# Run Coron3 stage of pipeline, specifying:
# output directory to save output files
# save_results flag set to True so the files are saved
if docoron3:
result = Coron3Pipeline.call(asn_filename,
output_dir=coron3_dir,
steps=coron3dict,
save_results=True)
else:
print("Skipping Coron3 processing.")
2026-04-15 20:15:20,065 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-resamplestep_0001.asdf
2026-04-15 20:15:20,077 - stpipe.step - INFO - Coron3Pipeline instance created.
2026-04-15 20:15:20,078 - stpipe.step - INFO - StackRefsStep instance created.
2026-04-15 20:15:20,079 - stpipe.step - INFO - AlignRefsStep instance created.
2026-04-15 20:15:20,080 - stpipe.step - INFO - KlipStep instance created.
2026-04-15 20:15:20,081 - stpipe.step - INFO - OutlierDetectionStep instance created.
2026-04-15 20:15:20,083 - stpipe.step - INFO - ResampleStep instance created.
2026-04-15 20:15:20,252 - stpipe.step - INFO - Step Coron3Pipeline running with args ('/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage3/HD116434-F444W.json',).
2026-04-15 20:15:20,260 - stpipe.step - INFO - Step Coron3Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage3
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: i2d
search_output_file: True
input_dir: ''
steps:
stack_refs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
align_refs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
median_box_length: 3
bad_bits: DO_NOT_USE
klip:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
truncate: 50
outlier_detection:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: False
input_dir: ''
weight_type: ivm
pixfrac: 1.0
kernel: square
fillval: NAN
maskpt: 0.7
snr: 5.0 4.0
scale: 1.2 0.7
backg: 0.0
kernel_size: 7 7
threshold_percent: 99.8
rolling_window_width: 25
ifu_second_check: False
save_intermediate_results: False
resample_data: True
good_bits: ~DO_NOT_USE
in_memory: True
pixmap_stepsize: 1.0
pixmap_order: 1
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: exptime
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
enable_ctx: True
enable_err: True
report_var: True
propagate_dq: False
pixmap_stepsize: 1.0
pixmap_order: 1
2026-04-15 20:15:20,262 - jwst.pipeline.calwebb_coron3 - INFO - Starting calwebb_coron3 ...
2026-04-15 20:15:21,534 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01386001001_0310e_00001_nrcalong_calints.fits' reftypes = ['psfmask']
2026-04-15 20:15:21,544 - CRDS - INFO - Fetching /home/runner/crds/references/jwst/nircam/jwst_nircam_psfmask_0211.fits 420.5 K bytes (1 / 1 files) (0 / 420.5 K bytes)
2026-04-15 20:15:21,749 - stpipe.pipeline - INFO - Prefetch for PSFMASK reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_psfmask_0211.fits'.
2026-04-15 20:15:21,751 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01386001001_0310e_00002_nrcalong_calints.fits' reftypes = ['psfmask']
2026-04-15 20:15:21,753 - stpipe.pipeline - INFO - Prefetch for PSFMASK reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_psfmask_0211.fits'.
2026-04-15 20:15:21,754 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01386001001_0310e_00003_nrcalong_calints.fits' reftypes = ['psfmask']
2026-04-15 20:15:21,757 - stpipe.pipeline - INFO - Prefetch for PSFMASK reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_psfmask_0211.fits'.
2026-04-15 20:15:21,759 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01386001001_0310e_00004_nrcalong_calints.fits' reftypes = ['psfmask']
2026-04-15 20:15:21,761 - stpipe.pipeline - INFO - Prefetch for PSFMASK reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_psfmask_0211.fits'.
2026-04-15 20:15:21,763 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01386001001_0310e_00005_nrcalong_calints.fits' reftypes = ['psfmask']
2026-04-15 20:15:21,765 - stpipe.pipeline - INFO - Prefetch for PSFMASK reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_psfmask_0211.fits'.
2026-04-15 20:15:21,767 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01386001001_0310e_00006_nrcalong_calints.fits' reftypes = ['psfmask']
2026-04-15 20:15:21,769 - stpipe.pipeline - INFO - Prefetch for PSFMASK reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_psfmask_0211.fits'.
2026-04-15 20:15:21,771 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01386001001_0310e_00007_nrcalong_calints.fits' reftypes = ['psfmask']
2026-04-15 20:15:21,773 - stpipe.pipeline - INFO - Prefetch for PSFMASK reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_psfmask_0211.fits'.
2026-04-15 20:15:21,774 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01386001001_0310e_00008_nrcalong_calints.fits' reftypes = ['psfmask']
2026-04-15 20:15:21,777 - stpipe.pipeline - INFO - Prefetch for PSFMASK reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_psfmask_0211.fits'.
2026-04-15 20:15:21,778 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01386001001_0310e_00009_nrcalong_calints.fits' reftypes = ['psfmask']
2026-04-15 20:15:21,780 - stpipe.pipeline - INFO - Prefetch for PSFMASK reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_psfmask_0211.fits'.
2026-04-15 20:15:21,782 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01386002001_0310a_00001_nrcalong_calints.fits' reftypes = ['psfmask']
2026-04-15 20:15:21,784 - stpipe.pipeline - INFO - Prefetch for PSFMASK reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_psfmask_0211.fits'.
2026-04-15 20:15:21,786 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01386003001_0310a_00001_nrcalong_calints.fits' reftypes = ['psfmask']
2026-04-15 20:15:21,788 - stpipe.pipeline - INFO - Prefetch for PSFMASK reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_psfmask_0211.fits'.
2026-04-15 20:15:22,005 - stpipe.step - INFO - Step outlier_detection running with args (<CubeModel(2, 320, 320) from jw01386001001_0310e_00001_nrcalong_calints.fits>,).
2026-04-15 20:15:22,007 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection mode: coron
2026-04-15 20:15:22,007 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection asn_id: a3001
2026-04-15 20:15:22,013 - jwst.outlier_detection.utils - INFO - Computing median
2026-04-15 20:15:22,098 - jwst.outlier_detection.utils - INFO - 2 pixels marked as outliers
2026-04-15 20:15:22,190 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage3/jw01386001001_0310e_00001_nrcalong_a3001_crfints.fits
2026-04-15 20:15:22,191 - stpipe.step - INFO - Step outlier_detection done
2026-04-15 20:15:22,366 - stpipe.step - INFO - Step outlier_detection running with args (<CubeModel(2, 320, 320) from jw01386001001_0310e_00002_nrcalong_calints.fits>,).
2026-04-15 20:15:22,367 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection mode: coron
2026-04-15 20:15:22,367 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection asn_id: a3001
2026-04-15 20:15:22,373 - jwst.outlier_detection.utils - INFO - Computing median
2026-04-15 20:15:22,458 - jwst.outlier_detection.utils - INFO - 0 pixels marked as outliers
2026-04-15 20:15:22,550 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage3/jw01386001001_0310e_00002_nrcalong_a3001_crfints.fits
2026-04-15 20:15:22,551 - stpipe.step - INFO - Step outlier_detection done
2026-04-15 20:15:22,726 - stpipe.step - INFO - Step outlier_detection running with args (<CubeModel(2, 320, 320) from jw01386001001_0310e_00003_nrcalong_calints.fits>,).
2026-04-15 20:15:22,727 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection mode: coron
2026-04-15 20:15:22,727 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection asn_id: a3001
2026-04-15 20:15:22,734 - jwst.outlier_detection.utils - INFO - Computing median
2026-04-15 20:15:22,820 - jwst.outlier_detection.utils - INFO - 0 pixels marked as outliers
2026-04-15 20:15:22,913 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage3/jw01386001001_0310e_00003_nrcalong_a3001_crfints.fits
2026-04-15 20:15:22,914 - stpipe.step - INFO - Step outlier_detection done
2026-04-15 20:15:23,090 - stpipe.step - INFO - Step outlier_detection running with args (<CubeModel(2, 320, 320) from jw01386001001_0310e_00004_nrcalong_calints.fits>,).
2026-04-15 20:15:23,090 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection mode: coron
2026-04-15 20:15:23,091 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection asn_id: a3001
2026-04-15 20:15:23,097 - jwst.outlier_detection.utils - INFO - Computing median
2026-04-15 20:15:23,189 - jwst.outlier_detection.utils - INFO - 5 pixels marked as outliers
2026-04-15 20:15:23,282 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage3/jw01386001001_0310e_00004_nrcalong_a3001_crfints.fits
2026-04-15 20:15:23,283 - stpipe.step - INFO - Step outlier_detection done
2026-04-15 20:15:23,460 - stpipe.step - INFO - Step outlier_detection running with args (<CubeModel(2, 320, 320) from jw01386001001_0310e_00005_nrcalong_calints.fits>,).
2026-04-15 20:15:23,461 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection mode: coron
2026-04-15 20:15:23,462 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection asn_id: a3001
2026-04-15 20:15:23,468 - jwst.outlier_detection.utils - INFO - Computing median
2026-04-15 20:15:23,556 - jwst.outlier_detection.utils - INFO - 0 pixels marked as outliers
2026-04-15 20:15:23,648 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage3/jw01386001001_0310e_00005_nrcalong_a3001_crfints.fits
2026-04-15 20:15:23,649 - stpipe.step - INFO - Step outlier_detection done
2026-04-15 20:15:23,829 - stpipe.step - INFO - Step outlier_detection running with args (<CubeModel(2, 320, 320) from jw01386001001_0310e_00006_nrcalong_calints.fits>,).
2026-04-15 20:15:23,830 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection mode: coron
2026-04-15 20:15:23,830 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection asn_id: a3001
2026-04-15 20:15:23,837 - jwst.outlier_detection.utils - INFO - Computing median
2026-04-15 20:15:23,921 - jwst.outlier_detection.utils - INFO - 2 pixels marked as outliers
2026-04-15 20:15:24,016 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage3/jw01386001001_0310e_00006_nrcalong_a3001_crfints.fits
2026-04-15 20:15:24,017 - stpipe.step - INFO - Step outlier_detection done
2026-04-15 20:15:24,200 - stpipe.step - INFO - Step outlier_detection running with args (<CubeModel(2, 320, 320) from jw01386001001_0310e_00007_nrcalong_calints.fits>,).
2026-04-15 20:15:24,200 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection mode: coron
2026-04-15 20:15:24,201 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection asn_id: a3001
2026-04-15 20:15:24,208 - jwst.outlier_detection.utils - INFO - Computing median
2026-04-15 20:15:24,292 - jwst.outlier_detection.utils - INFO - 2 pixels marked as outliers
2026-04-15 20:15:24,387 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage3/jw01386001001_0310e_00007_nrcalong_a3001_crfints.fits
2026-04-15 20:15:24,388 - stpipe.step - INFO - Step outlier_detection done
2026-04-15 20:15:24,588 - stpipe.step - INFO - Step outlier_detection running with args (<CubeModel(2, 320, 320) from jw01386001001_0310e_00008_nrcalong_calints.fits>,).
2026-04-15 20:15:24,589 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection mode: coron
2026-04-15 20:15:24,589 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection asn_id: a3001
2026-04-15 20:15:24,595 - jwst.outlier_detection.utils - INFO - Computing median
2026-04-15 20:15:24,680 - jwst.outlier_detection.utils - INFO - 2 pixels marked as outliers
2026-04-15 20:15:24,778 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage3/jw01386001001_0310e_00008_nrcalong_a3001_crfints.fits
2026-04-15 20:15:24,779 - stpipe.step - INFO - Step outlier_detection done
2026-04-15 20:15:24,977 - stpipe.step - INFO - Step outlier_detection running with args (<CubeModel(2, 320, 320) from jw01386001001_0310e_00009_nrcalong_calints.fits>,).
2026-04-15 20:15:24,978 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection mode: coron
2026-04-15 20:15:24,979 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection asn_id: a3001
2026-04-15 20:15:24,986 - jwst.outlier_detection.utils - INFO - Computing median
2026-04-15 20:15:25,073 - jwst.outlier_detection.utils - INFO - 7 pixels marked as outliers
2026-04-15 20:15:25,168 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage3/jw01386001001_0310e_00009_nrcalong_a3001_crfints.fits
2026-04-15 20:15:25,169 - stpipe.step - INFO - Step outlier_detection done
2026-04-15 20:15:25,356 - stpipe.step - INFO - Step stack_refs running with args (<jwst.datamodels.container.ModelContainer object at 0x7f325ce35e50>,).
2026-04-15 20:15:25,362 - jwst.coron.stack_refs - INFO - Adding psf member 1 to output stack
2026-04-15 20:15:25,364 - jwst.coron.stack_refs - INFO - Adding psf member 2 to output stack
2026-04-15 20:15:25,365 - jwst.coron.stack_refs - INFO - Adding psf member 3 to output stack
2026-04-15 20:15:25,367 - jwst.coron.stack_refs - INFO - Adding psf member 4 to output stack
2026-04-15 20:15:25,368 - jwst.coron.stack_refs - INFO - Adding psf member 5 to output stack
2026-04-15 20:15:25,371 - jwst.coron.stack_refs - INFO - Adding psf member 6 to output stack
2026-04-15 20:15:25,373 - jwst.coron.stack_refs - INFO - Adding psf member 7 to output stack
2026-04-15 20:15:25,374 - jwst.coron.stack_refs - INFO - Adding psf member 8 to output stack
2026-04-15 20:15:25,375 - jwst.coron.stack_refs - INFO - Adding psf member 9 to output stack
2026-04-15 20:15:25,425 - stpipe.step - INFO - Step stack_refs done
2026-04-15 20:15:25,489 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage3/HD116434-F444W_psfstack.fits
2026-04-15 20:15:25,682 - stpipe.step - INFO - Step outlier_detection running with args (<CubeModel(2, 320, 320) from jw01386002001_0310a_00001_nrcalong_calints.fits>,).
2026-04-15 20:15:25,683 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection mode: coron
2026-04-15 20:15:25,683 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection asn_id: a3001
2026-04-15 20:15:25,690 - jwst.outlier_detection.utils - INFO - Computing median
2026-04-15 20:15:25,773 - jwst.outlier_detection.utils - INFO - 60 pixels marked as outliers
2026-04-15 20:15:25,870 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage3/jw01386002001_0310a_00001_nrcalong_a3001_crfints.fits
2026-04-15 20:15:25,871 - stpipe.step - INFO - Step outlier_detection done
2026-04-15 20:15:26,069 - stpipe.step - INFO - Step align_refs running with args (<CubeModel(2, 320, 320) from jw01386002001_0310a_00001_nrcalong_a3001_crfints.fits>, <CubeModel(18, 320, 320) from HD116434-F444W_psfstack.fits>).
2026-04-15 20:15:26,115 - jwst.coron.align_refs_step - INFO - Using PSFMASK reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_psfmask_0211.fits
2026-04-15 20:15:33,138 - stpipe.step - INFO - Step align_refs done
2026-04-15 20:15:33,205 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage3/jw01386002001_0310a_00001_nrcalong_a3001_psfalign.fits
2026-04-15 20:15:33,402 - stpipe.step - INFO - Step klip running with args (<CubeModel(2, 320, 320) from jw01386002001_0310a_00001_nrcalong_a3001_crfints.fits>, <CubeModel(18, 320, 320) from jw01386002001_0310a_00001_nrcalong_a3001_psfalign.fits>).
2026-04-15 20:15:33,403 - jwst.coron.klip_step - INFO - KL transform truncation = 50
2026-04-15 20:15:33,497 - stpipe.step - INFO - Step klip done
2026-04-15 20:15:33,619 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage3/jw01386002001_0310a_00001_nrcalong_a3001_psfsub.fits
2026-04-15 20:15:33,986 - stpipe.step - INFO - Step outlier_detection running with args (<CubeModel(2, 320, 320) from jw01386003001_0310a_00001_nrcalong_calints.fits>,).
2026-04-15 20:15:33,987 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection mode: coron
2026-04-15 20:15:33,988 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection asn_id: a3001
2026-04-15 20:15:33,994 - jwst.outlier_detection.utils - INFO - Computing median
2026-04-15 20:15:34,077 - jwst.outlier_detection.utils - INFO - 8 pixels marked as outliers
2026-04-15 20:15:34,173 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage3/jw01386003001_0310a_00001_nrcalong_a3001_crfints.fits
2026-04-15 20:15:34,174 - stpipe.step - INFO - Step outlier_detection done
2026-04-15 20:15:34,366 - stpipe.step - INFO - Step align_refs running with args (<CubeModel(2, 320, 320) from jw01386003001_0310a_00001_nrcalong_a3001_crfints.fits>, <CubeModel(18, 320, 320) from HD116434-F444W_psfstack.fits>).
2026-04-15 20:15:34,377 - jwst.coron.align_refs_step - INFO - Using PSFMASK reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_psfmask_0211.fits
2026-04-15 20:15:43,031 - stpipe.step - INFO - Step align_refs done
2026-04-15 20:15:43,099 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage3/jw01386003001_0310a_00001_nrcalong_a3001_psfalign.fits
2026-04-15 20:15:43,307 - stpipe.step - INFO - Step klip running with args (<CubeModel(2, 320, 320) from jw01386003001_0310a_00001_nrcalong_a3001_crfints.fits>, <CubeModel(18, 320, 320) from jw01386003001_0310a_00001_nrcalong_a3001_psfalign.fits>).
2026-04-15 20:15:43,308 - jwst.coron.klip_step - INFO - KL transform truncation = 50
2026-04-15 20:15:43,403 - stpipe.step - INFO - Step klip done
2026-04-15 20:15:43,528 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage3/jw01386003001_0310a_00001_nrcalong_a3001_psfsub.fits
2026-04-15 20:15:43,940 - stpipe.step - INFO - Step resample running with args (<jwst.datamodels.library.ModelLibrary object at 0x7f326086bd90>,).
2026-04-15 20:15:43,971 - jwst.resample.resample_utils - INFO - Pixel scale ratio (pscale_out/pscale_in): 1.0
2026-04-15 20:15:43,972 - jwst.resample.resample_utils - INFO - Computed output pixel scale: 0.06241843102424811 arcsec.
2026-04-15 20:15:43,982 - stcal.resample.resample - INFO - Output pixel scale: 0.06241843102424811 arcsec.
2026-04-15 20:15:43,983 - stcal.resample.resample - INFO - Driz parameter kernel: square
2026-04-15 20:15:43,983 - stcal.resample.resample - INFO - Driz parameter pixfrac: 1.0
2026-04-15 20:15:43,984 - stcal.resample.resample - INFO - Driz parameter fillval: NAN
2026-04-15 20:15:43,985 - stcal.resample.resample - INFO - Driz parameter weight_type: exptime
2026-04-15 20:15:43,987 - jwst.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:15:44,026 - stcal.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:15:44,041 - stcal.resample.resample - INFO - Drizzling (320, 320) --> (371, 370)
2026-04-15 20:15:44,055 - stcal.resample.resample - INFO - Drizzling (320, 320) --> (371, 370)
2026-04-15 20:15:44,070 - stcal.resample.resample - INFO - Drizzling (320, 320) --> (371, 370)
2026-04-15 20:15:44,166 - stcal.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:15:44,181 - stcal.resample.resample - INFO - Drizzling (320, 320) --> (371, 370)
2026-04-15 20:15:44,196 - stcal.resample.resample - INFO - Drizzling (320, 320) --> (371, 370)
2026-04-15 20:15:44,210 - stcal.resample.resample - INFO - Drizzling (320, 320) --> (371, 370)
2026-04-15 20:15:44,266 - stcal.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:15:44,284 - stcal.resample.resample - INFO - Drizzling (320, 320) --> (371, 370)
2026-04-15 20:15:44,300 - stcal.resample.resample - INFO - Drizzling (320, 320) --> (371, 370)
2026-04-15 20:15:44,316 - stcal.resample.resample - INFO - Drizzling (320, 320) --> (371, 370)
2026-04-15 20:15:44,375 - stcal.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:15:44,395 - stcal.resample.resample - INFO - Drizzling (320, 320) --> (371, 370)
2026-04-15 20:15:44,411 - stcal.resample.resample - INFO - Drizzling (320, 320) --> (371, 370)
2026-04-15 20:15:44,428 - stcal.resample.resample - INFO - Drizzling (320, 320) --> (371, 370)
2026-04-15 20:15:44,512 - jwst.resample.resample - INFO - Assigning output S_REGION: POLYGON ICRS 201.155907488 -51.503410342 201.155954311 -51.503331537 201.155310626 -51.503096235 201.155537236 -51.502709582 201.152053283 -51.501905410 201.148256380 -51.500517139 201.148233038 -51.500511763 201.147840975 -51.500932942 201.147122265 -51.500766999 201.145645072 -51.503291750 201.143789784 -51.505284453 201.144358015 -51.505491287 201.144088025 -51.505952662 201.148248791 -51.506907392 201.151533175 -51.508102622 201.151872451 -51.507738724 201.152504439 -51.507883699 201.153803776 -51.505667112
2026-04-15 20:15:44,517 - stpipe.step - INFO - Step resample done
2026-04-15 20:15:44,874 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage3/HD116434-F444W_i2d.fits
2026-04-15 20:15:44,875 - jwst.pipeline.calwebb_coron3 - INFO - ...ending calwebb_coron3
2026-04-15 20:15:44,885 - stpipe.step - INFO - Step Coron3Pipeline done
2026-04-15 20:15:44,885 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
# Print out the time benchmark
time1 = time.perf_counter()
print(f"Runtime so far: {time1 - time0:0.0f} seconds")
print(f"Runtime for Coron3: {time1 - time_coron3:0.0f} seconds")
Runtime so far: 131 seconds
Runtime for Coron3: 25 seconds
Verify which pipeline steps were run#
# Identify *_i2d file and open as datamodel
if docoron3:
i2d_file = os.path.join(coron3_dir, asn_filename.replace('.json', '_i2d.fits'))
i2d_model = datamodels.open(i2d_file)
step_check_model = i2d_model
# Check which steps were run.
step_check_model.meta.cal_step.instance
{'assign_wcs': 'COMPLETE',
'charge_migration': 'SKIPPED',
'clean_flicker_noise': 'SKIPPED',
'dq_init': 'COMPLETE',
'flat_field': 'COMPLETE',
'gain_scale': 'SKIPPED',
'group_scale': 'SKIPPED',
'ipc': 'SKIPPED',
'jump': 'COMPLETE',
'klip': 'COMPLETE',
'linearity': 'COMPLETE',
'outlier_detection': 'COMPLETE',
'persistence': 'SKIPPED',
'photom': 'COMPLETE',
'picture_frame': 'SKIPPED',
'ramp_fit': 'COMPLETE',
'refpix': 'COMPLETE',
'resample': 'COMPLETE',
'saturation': 'COMPLETE',
'superbias': 'COMPLETE'}
Check which reference files were used to calibrate the dataset
if docoron3:
step_check_model.meta.ref_file.instance
{'area': {'name': 'crds://jwst_nircam_area_0042.fits'},
'camera': {'name': 'N/A'},
'collimator': {'name': 'N/A'},
'crds': {'context_used': 'jwst_1535.pmap', 'sw_version': '13.1.13'},
'dflat': {'name': 'N/A'},
'disperser': {'name': 'N/A'},
'distortion': {'name': 'crds://jwst_nircam_distortion_0325.asdf'},
'fflat': {'name': 'N/A'},
'filteroffset': {'name': 'crds://jwst_nircam_filteroffset_0007.asdf'},
'flat': {'name': 'crds://jwst_nircam_flat_0465.fits'},
'fore': {'name': 'N/A'},
'fpa': {'name': 'N/A'},
'gain': {'name': 'crds://jwst_nircam_gain_0097.fits'},
'ifufore': {'name': 'N/A'},
'ifupost': {'name': 'N/A'},
'ifuslicer': {'name': 'N/A'},
'linearity': {'name': 'crds://jwst_nircam_linearity_0052.fits'},
'mask': {'name': 'crds://jwst_nircam_mask_0076.fits'},
'msa': {'name': 'N/A'},
'ote': {'name': 'N/A'},
'photom': {'name': 'crds://jwst_nircam_photom_0168.fits'},
'readnoise': {'name': 'crds://jwst_nircam_readnoise_0284.fits'},
'regions': {'name': 'N/A'},
'saturation': {'name': 'crds://jwst_nircam_saturation_0097.fits'},
'sflat': {'name': 'N/A'},
'specwcs': {'name': 'N/A'},
'superbias': {'name': 'crds://jwst_nircam_superbias_0229.fits'},
'wavelengthrange': {'name': 'N/A'}}
8. Visualize the final PSF subtracted images#
Below we show each individual psf-subtracted science roll and integration, as well as the final combined PSF-subtracted image from the Coron3 pipeline run:
# Inspect the psf-subtracted images generated in the coron3 pipeline run
if docoron3:
files = sorted(glob.glob(os.path.join(coron3_dir, '*_psfsub.fits')))
grid = plt.GridSpec(2, 4, hspace=0.3, wspace=0.3)
fig = plt.figure(figsize=(14, 7))
# Plot the psf-subtracted science images for each roll and integration
for roll in range(len(files)):
data = fits.getdata(files[roll])
for integ in range(data.shape[0]):
data_int = data[integ]
ax = fig.add_subplot(grid[roll, integ])
ax.imshow(data_int, vmin=-1, vmax=5, origin='lower', cmap='coolwarm')
ax.set_title('Roll {} Int {}'.format(roll + 1, integ + 1))
# Plot the final combined psf-subtracted science image
i2d_file = os.path.join(coron3_dir, asn_filename.replace('.json', '_i2d.fits'))
ax = fig.add_subplot(grid[0:2, 2:4])
data = fits.getdata(i2d_file)
ax.imshow(data, vmin=-1, vmax=5, origin='lower', cmap='coolwarm')
ax.set_title('Combined')
<matplotlib.image.AxesImage at 0x7f325fda6270>
Text(0.5, 1.0, 'Roll 1 Int 1')
<matplotlib.image.AxesImage at 0x7f326069de50>
Text(0.5, 1.0, 'Roll 1 Int 2')
<matplotlib.image.AxesImage at 0x7f325f8bd6d0>
Text(0.5, 1.0, 'Roll 2 Int 1')
<matplotlib.image.AxesImage at 0x7f3283598b90>
Text(0.5, 1.0, 'Roll 2 Int 2')
<matplotlib.image.AxesImage at 0x7f328359bed0>
Text(0.5, 1.0, 'Combined')
9.-Advanced Usage- PSF Reference Library#
In the above sections, we processed a single observation of a science target and its associated PSF reference target. However, the JWST archive contains many observations of NIRCam coronagraphic PSF reference targets that could be used to construct a larger library of reference PSFs for improved PSF subtraction, or in some cases, a formal PSF reference may not have been assigned.. In this section, we’ll show how to assemble multiple observations of different PSF reference targets into a single association that can be used for PSF subtraction, without any of the original PSF references being used.
First we need to query the MAST database for potential references, and to do so we will make use of functions held within TBD.
download_coron_references=None
# Check PSF library functions code is available to import
if importlib.util.find_spec("coron_psflib_functions") is None:
print("Could not find `coron_psflib_functions.py` on the Python path or in the current project. Please ensure you have the latest pipeline notebook installation, or download `coron_psflib_functions.py` from the notebook repository directly.")
else:
from coron_psflib_functions import download_coron_references
print("Imported `coron_psflib_functions.py` successfully")
Imported `coron_psflib_functions.py` successfully
# If the relevant psflib functions were found and docoron3_psflib is True, proceed with PSF reference library
if download_coron_references and docoron3_psflib:
# In this case we'll skip to the stage 2 products to avoid manual reprocessing.
additional_ref_dir = os.path.join(data_dir, 'ObsRef/stage2/')
# We also need to provide the current calibrated science and reference files we're using so that we can match an appropriate reference and avoid duplicates.
# If necessary, additional lists of files can be included in the concatentation.
current_files = np.concatenate([cal_files])
# Run function to download the files
calhdr = fits.getheader(cal_files[0])
download_coron_references(cal_files, download_dir=additional_ref_dir, num_refs=2, subarray=calhdr['SUBARRAY'], verbose=True)
MAST query parameters:
{'columns': 'filename, productLevel, filter, coronmsk, targname, duration, effexptm, effinttm, exp_type, bkgdtarg, bstrtime, is_psf, nexposur, nframes, nints, numdthpt, obs_id, observtn, obslabel, pi_name, program, subarray, template, title, visit_id, visitsta, vststart_mjd, isRestricted, publicReleaseDate_mjd', 'filters': [{'paramName': 'template', 'values': ['NIRCam Coronagraphic Imaging']}, {'paramName': 'productLevel', 'values': ['2b']}, {'paramName': 'filter', 'values': ['F444W']}, {'paramName': 'coronmsk', 'values': ['MASKA335R']}, {'paramName': 'category', 'values': ['ERS', 'GTO', 'GO', 'DD']}, {'paramName': 'exp_type', 'values': ['NRC_CORON', 'MIR_LYOT', 'MIR_4QPM']}, {'paramName': 'is_psf', 'values': ['t']}, {'paramName': 'bkgdtarg', 'values': ['f']}, {'paramName': 'subarray', 'values': ['SUB320A335R']}]}
Filtered out 9 rows matching provided science files from MAST results
DOWNLOAD SUCCESSFUL: /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/ObsRef/stage2/jw01194003001_03105_00001_nrcalong_calints.fits
DOWNLOAD SUCCESSFUL: /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/ObsRef/stage2/jw01194003001_03105_00002_nrcalong_calints.fits
DOWNLOAD SUCCESSFUL: /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/ObsRef/stage2/jw01194003001_03105_00003_nrcalong_calints.fits
DOWNLOAD SUCCESSFUL: /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/ObsRef/stage2/jw01194003001_03105_00004_nrcalong_calints.fits
DOWNLOAD SUCCESSFUL: /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/ObsRef/stage2/jw01194003001_03105_00005_nrcalong_calints.fits
DOWNLOAD SUCCESSFUL: /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/ObsRef/stage2/jw01411026001_03109_00001_nrcalong_calints.fits
DOWNLOAD SUCCESSFUL: /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/ObsRef/stage2/jw01411026001_03109_00002_nrcalong_calints.fits
DOWNLOAD SUCCESSFUL: /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/ObsRef/stage2/jw01411026001_03109_00003_nrcalong_calints.fits
DOWNLOAD SUCCESSFUL: /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/ObsRef/stage2/jw01411026001_03109_00004_nrcalong_calints.fits
DOWNLOAD SUCCESSFUL: /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/ObsRef/stage2/jw01411026001_03109_00005_nrcalong_calints.fits
Now that we have some files downloaded, we can simply add them to the reference target files list.
# Gather the filenames of the downloaded additional reference files.
if download_coron_references and docoron3_psflib:
sstring = os.path.join(additional_ref_dir, 'jw*calints.fits')
additional_ref_targ_files = sorted(glob.glob(sstring))
And run the Coron3 pipeline using the same settings as before using the call method.
if download_coron_references and docoron3_psflib:
# We want to remove the dedicated reference from our cal files/association to explore how well a non-contemporaneous library can perform.
# We can do this by filtering the association that was generated for the standard Coron3 calculation for 'science' files only
# Get filenames from asn where exp_type = 'science'
sci_files = [member['expname'] for member in asn['products'][0]['members'] if member['exptype'] == 'science']
# Create association file and run the pipeline
psflib_asn_filename, psflib_asn = create_coron3_asn(sci_files, coron3_psflib_dir, forced_ref_files=additional_ref_targ_files)
Coron3Pipeline.call(psflib_asn_filename, steps=coron3dict, save_results=True, output_dir=coron3_psflib_dir)
else:
print('Skipping coron3 processing')
/home/runner/micromamba/envs/ci-env/lib/python3.13/site-packages/jwst/associations/association.py:232: UserWarning: Input association file contains path information; note that this can complicate usage and/or sharing of such files.
warnings.warn(err_str, UserWarning, stacklevel=1)
2026-04-15 20:15:51,203 - stpipe.step - INFO - PARS-RESAMPLESTEP parameters found: /home/runner/crds/references/jwst/nircam/jwst_nircam_pars-resamplestep_0001.asdf
2026-04-15 20:15:51,216 - stpipe.step - INFO - Coron3Pipeline instance created.
2026-04-15 20:15:51,218 - stpipe.step - INFO - StackRefsStep instance created.
2026-04-15 20:15:51,218 - stpipe.step - INFO - AlignRefsStep instance created.
2026-04-15 20:15:51,219 - stpipe.step - INFO - KlipStep instance created.
2026-04-15 20:15:51,221 - stpipe.step - INFO - OutlierDetectionStep instance created.
2026-04-15 20:15:51,223 - stpipe.step - INFO - ResampleStep instance created.
2026-04-15 20:15:51,442 - stpipe.step - INFO - Step Coron3Pipeline running with args ('/home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage3_psflib/HD116434-F444W.json',).
2026-04-15 20:15:51,450 - stpipe.step - INFO - Step Coron3Pipeline parameters are:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage3_psflib/
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: True
skip: False
suffix: i2d
search_output_file: True
input_dir: ''
steps:
stack_refs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
align_refs:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
median_box_length: 3
bad_bits: DO_NOT_USE
klip:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
truncate: 50
outlier_detection:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: False
input_dir: ''
weight_type: ivm
pixfrac: 1.0
kernel: square
fillval: NAN
maskpt: 0.7
snr: 5.0 4.0
scale: 1.2 0.7
backg: 0.0
kernel_size: 7 7
threshold_percent: 99.8
rolling_window_width: 25
ifu_second_check: False
save_intermediate_results: False
resample_data: True
good_bits: ~DO_NOT_USE
in_memory: True
pixmap_stepsize: 1.0
pixmap_order: 1
resample:
pre_hooks: []
post_hooks: []
output_file: None
output_dir: None
output_ext: .fits
output_use_model: False
output_use_index: True
save_results: False
skip: False
suffix: None
search_output_file: True
input_dir: ''
pixfrac: 1.0
kernel: square
fillval: NAN
weight_type: exptime
output_shape: None
crpix: None
crval: None
rotation: None
pixel_scale_ratio: 1.0
pixel_scale: None
output_wcs: ''
single: False
blendheaders: True
in_memory: True
enable_ctx: True
enable_err: True
report_var: True
propagate_dq: False
pixmap_stepsize: 1.0
pixmap_order: 1
2026-04-15 20:15:51,452 - jwst.pipeline.calwebb_coron3 - INFO - Starting calwebb_coron3 ...
2026-04-15 20:15:52,914 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01194003001_03105_00001_nrcalong_calints.fits' reftypes = ['psfmask']
2026-04-15 20:15:52,948 - stpipe.pipeline - INFO - Prefetch for PSFMASK reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_psfmask_0211.fits'.
2026-04-15 20:15:52,950 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01194003001_03105_00002_nrcalong_calints.fits' reftypes = ['psfmask']
2026-04-15 20:15:52,953 - stpipe.pipeline - INFO - Prefetch for PSFMASK reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_psfmask_0211.fits'.
2026-04-15 20:15:52,954 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01194003001_03105_00003_nrcalong_calints.fits' reftypes = ['psfmask']
2026-04-15 20:15:52,957 - stpipe.pipeline - INFO - Prefetch for PSFMASK reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_psfmask_0211.fits'.
2026-04-15 20:15:52,958 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01194003001_03105_00004_nrcalong_calints.fits' reftypes = ['psfmask']
2026-04-15 20:15:52,961 - stpipe.pipeline - INFO - Prefetch for PSFMASK reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_psfmask_0211.fits'.
2026-04-15 20:15:52,962 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01194003001_03105_00005_nrcalong_calints.fits' reftypes = ['psfmask']
2026-04-15 20:15:52,965 - stpipe.pipeline - INFO - Prefetch for PSFMASK reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_psfmask_0211.fits'.
2026-04-15 20:15:52,967 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01411026001_03109_00001_nrcalong_calints.fits' reftypes = ['psfmask']
2026-04-15 20:15:52,969 - stpipe.pipeline - INFO - Prefetch for PSFMASK reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_psfmask_0211.fits'.
2026-04-15 20:15:52,970 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01411026001_03109_00002_nrcalong_calints.fits' reftypes = ['psfmask']
2026-04-15 20:15:52,973 - stpipe.pipeline - INFO - Prefetch for PSFMASK reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_psfmask_0211.fits'.
2026-04-15 20:15:52,974 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01411026001_03109_00003_nrcalong_calints.fits' reftypes = ['psfmask']
2026-04-15 20:15:52,977 - stpipe.pipeline - INFO - Prefetch for PSFMASK reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_psfmask_0211.fits'.
2026-04-15 20:15:52,978 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01411026001_03109_00004_nrcalong_calints.fits' reftypes = ['psfmask']
2026-04-15 20:15:52,981 - stpipe.pipeline - INFO - Prefetch for PSFMASK reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_psfmask_0211.fits'.
2026-04-15 20:15:52,982 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01411026001_03109_00005_nrcalong_calints.fits' reftypes = ['psfmask']
2026-04-15 20:15:52,985 - stpipe.pipeline - INFO - Prefetch for PSFMASK reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_psfmask_0211.fits'.
2026-04-15 20:15:52,987 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01386002001_0310a_00001_nrcalong_calints.fits' reftypes = ['psfmask']
2026-04-15 20:15:52,989 - stpipe.pipeline - INFO - Prefetch for PSFMASK reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_psfmask_0211.fits'.
2026-04-15 20:15:52,991 - stpipe.pipeline - INFO - Prefetching reference files for dataset: 'jw01386003001_0310a_00001_nrcalong_calints.fits' reftypes = ['psfmask']
2026-04-15 20:15:52,993 - stpipe.pipeline - INFO - Prefetch for PSFMASK reference file is '/home/runner/crds/references/jwst/nircam/jwst_nircam_psfmask_0211.fits'.
2026-04-15 20:15:53,260 - stpipe.step - INFO - Step outlier_detection running with args (<CubeModel(5, 320, 320) from jw01194003001_03105_00001_nrcalong_calints.fits>,).
2026-04-15 20:15:53,261 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection mode: coron
2026-04-15 20:15:53,262 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection asn_id: a3001
2026-04-15 20:15:53,269 - jwst.outlier_detection.utils - INFO - Computing median
2026-04-15 20:15:53,370 - jwst.outlier_detection.utils - INFO - 17 pixels marked as outliers
2026-04-15 20:15:53,471 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage3_psflib/jw01194003001_03105_00001_nrcalong_a3001_crfints.fits
2026-04-15 20:15:53,472 - stpipe.step - INFO - Step outlier_detection done
2026-04-15 20:15:53,671 - stpipe.step - INFO - Step outlier_detection running with args (<CubeModel(5, 320, 320) from jw01194003001_03105_00002_nrcalong_calints.fits>,).
2026-04-15 20:15:53,672 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection mode: coron
2026-04-15 20:15:53,672 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection asn_id: a3001
2026-04-15 20:15:53,679 - jwst.outlier_detection.utils - INFO - Computing median
2026-04-15 20:15:53,776 - jwst.outlier_detection.utils - INFO - 7 pixels marked as outliers
2026-04-15 20:15:53,874 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage3_psflib/jw01194003001_03105_00002_nrcalong_a3001_crfints.fits
2026-04-15 20:15:53,875 - stpipe.step - INFO - Step outlier_detection done
2026-04-15 20:15:54,067 - stpipe.step - INFO - Step outlier_detection running with args (<CubeModel(5, 320, 320) from jw01194003001_03105_00003_nrcalong_calints.fits>,).
2026-04-15 20:15:54,068 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection mode: coron
2026-04-15 20:15:54,069 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection asn_id: a3001
2026-04-15 20:15:54,075 - jwst.outlier_detection.utils - INFO - Computing median
2026-04-15 20:15:54,173 - jwst.outlier_detection.utils - INFO - 16 pixels marked as outliers
2026-04-15 20:15:54,271 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage3_psflib/jw01194003001_03105_00003_nrcalong_a3001_crfints.fits
2026-04-15 20:15:54,272 - stpipe.step - INFO - Step outlier_detection done
2026-04-15 20:15:54,473 - stpipe.step - INFO - Step outlier_detection running with args (<CubeModel(5, 320, 320) from jw01194003001_03105_00004_nrcalong_calints.fits>,).
2026-04-15 20:15:54,474 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection mode: coron
2026-04-15 20:15:54,475 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection asn_id: a3001
2026-04-15 20:15:54,481 - jwst.outlier_detection.utils - INFO - Computing median
2026-04-15 20:15:54,580 - jwst.outlier_detection.utils - INFO - 18 pixels marked as outliers
2026-04-15 20:15:54,686 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage3_psflib/jw01194003001_03105_00004_nrcalong_a3001_crfints.fits
2026-04-15 20:15:54,687 - stpipe.step - INFO - Step outlier_detection done
2026-04-15 20:15:54,898 - stpipe.step - INFO - Step outlier_detection running with args (<CubeModel(5, 320, 320) from jw01194003001_03105_00005_nrcalong_calints.fits>,).
2026-04-15 20:15:54,899 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection mode: coron
2026-04-15 20:15:54,899 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection asn_id: a3001
2026-04-15 20:15:54,906 - jwst.outlier_detection.utils - INFO - Computing median
2026-04-15 20:15:55,005 - jwst.outlier_detection.utils - INFO - 15 pixels marked as outliers
2026-04-15 20:15:55,106 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage3_psflib/jw01194003001_03105_00005_nrcalong_a3001_crfints.fits
2026-04-15 20:15:55,107 - stpipe.step - INFO - Step outlier_detection done
2026-04-15 20:15:55,319 - stpipe.step - INFO - Step outlier_detection running with args (<CubeModel(4, 320, 320) from jw01411026001_03109_00001_nrcalong_calints.fits>,).
2026-04-15 20:15:55,320 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection mode: coron
2026-04-15 20:15:55,321 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection asn_id: a3001
2026-04-15 20:15:55,327 - jwst.outlier_detection.utils - INFO - Computing median
2026-04-15 20:15:55,423 - jwst.outlier_detection.utils - INFO - 27 pixels marked as outliers
2026-04-15 20:15:55,521 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage3_psflib/jw01411026001_03109_00001_nrcalong_a3001_crfints.fits
2026-04-15 20:15:55,522 - stpipe.step - INFO - Step outlier_detection done
2026-04-15 20:15:55,712 - stpipe.step - INFO - Step outlier_detection running with args (<CubeModel(4, 320, 320) from jw01411026001_03109_00002_nrcalong_calints.fits>,).
2026-04-15 20:15:55,713 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection mode: coron
2026-04-15 20:15:55,713 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection asn_id: a3001
2026-04-15 20:15:55,719 - jwst.outlier_detection.utils - INFO - Computing median
2026-04-15 20:15:55,813 - jwst.outlier_detection.utils - INFO - 29 pixels marked as outliers
2026-04-15 20:15:55,910 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage3_psflib/jw01411026001_03109_00002_nrcalong_a3001_crfints.fits
2026-04-15 20:15:55,910 - stpipe.step - INFO - Step outlier_detection done
2026-04-15 20:15:56,101 - stpipe.step - INFO - Step outlier_detection running with args (<CubeModel(4, 320, 320) from jw01411026001_03109_00003_nrcalong_calints.fits>,).
2026-04-15 20:15:56,102 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection mode: coron
2026-04-15 20:15:56,103 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection asn_id: a3001
2026-04-15 20:15:56,110 - jwst.outlier_detection.utils - INFO - Computing median
2026-04-15 20:15:56,204 - jwst.outlier_detection.utils - INFO - 39 pixels marked as outliers
2026-04-15 20:15:56,300 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage3_psflib/jw01411026001_03109_00003_nrcalong_a3001_crfints.fits
2026-04-15 20:15:56,301 - stpipe.step - INFO - Step outlier_detection done
2026-04-15 20:15:56,491 - stpipe.step - INFO - Step outlier_detection running with args (<CubeModel(4, 320, 320) from jw01411026001_03109_00004_nrcalong_calints.fits>,).
2026-04-15 20:15:56,492 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection mode: coron
2026-04-15 20:15:56,493 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection asn_id: a3001
2026-04-15 20:15:56,499 - jwst.outlier_detection.utils - INFO - Computing median
2026-04-15 20:15:56,593 - jwst.outlier_detection.utils - INFO - 31 pixels marked as outliers
2026-04-15 20:15:56,691 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage3_psflib/jw01411026001_03109_00004_nrcalong_a3001_crfints.fits
2026-04-15 20:15:56,692 - stpipe.step - INFO - Step outlier_detection done
2026-04-15 20:15:56,883 - stpipe.step - INFO - Step outlier_detection running with args (<CubeModel(4, 320, 320) from jw01411026001_03109_00005_nrcalong_calints.fits>,).
2026-04-15 20:15:56,884 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection mode: coron
2026-04-15 20:15:56,884 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection asn_id: a3001
2026-04-15 20:15:56,891 - jwst.outlier_detection.utils - INFO - Computing median
2026-04-15 20:15:56,986 - jwst.outlier_detection.utils - INFO - 16 pixels marked as outliers
2026-04-15 20:15:57,084 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage3_psflib/jw01411026001_03109_00005_nrcalong_a3001_crfints.fits
2026-04-15 20:15:57,085 - stpipe.step - INFO - Step outlier_detection done
2026-04-15 20:15:57,282 - stpipe.step - INFO - Step stack_refs running with args (<jwst.datamodels.container.ModelContainer object at 0x7f325c1386b0>,).
2026-04-15 20:15:57,292 - jwst.coron.stack_refs - INFO - Adding psf member 1 to output stack
2026-04-15 20:15:57,295 - jwst.coron.stack_refs - INFO - Adding psf member 2 to output stack
2026-04-15 20:15:57,298 - jwst.coron.stack_refs - INFO - Adding psf member 3 to output stack
2026-04-15 20:15:57,300 - jwst.coron.stack_refs - INFO - Adding psf member 4 to output stack
2026-04-15 20:15:57,303 - jwst.coron.stack_refs - INFO - Adding psf member 5 to output stack
2026-04-15 20:15:57,305 - jwst.coron.stack_refs - INFO - Adding psf member 6 to output stack
2026-04-15 20:15:57,308 - jwst.coron.stack_refs - INFO - Adding psf member 7 to output stack
2026-04-15 20:15:57,309 - jwst.coron.stack_refs - INFO - Adding psf member 8 to output stack
2026-04-15 20:15:57,312 - jwst.coron.stack_refs - INFO - Adding psf member 9 to output stack
2026-04-15 20:15:57,314 - jwst.coron.stack_refs - INFO - Adding psf member 10 to output stack
2026-04-15 20:15:57,368 - stpipe.step - INFO - Step stack_refs done
2026-04-15 20:15:57,454 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage3_psflib/HD116434-F444W_psfstack.fits
2026-04-15 20:15:57,651 - stpipe.step - INFO - Step outlier_detection running with args (<CubeModel(2, 320, 320) from jw01386002001_0310a_00001_nrcalong_calints.fits>,).
2026-04-15 20:15:57,652 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection mode: coron
2026-04-15 20:15:57,652 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection asn_id: a3001
2026-04-15 20:15:57,659 - jwst.outlier_detection.utils - INFO - Computing median
2026-04-15 20:15:57,742 - jwst.outlier_detection.utils - INFO - 60 pixels marked as outliers
2026-04-15 20:15:57,836 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage3_psflib/jw01386002001_0310a_00001_nrcalong_a3001_crfints.fits
2026-04-15 20:15:57,837 - stpipe.step - INFO - Step outlier_detection done
2026-04-15 20:15:58,025 - stpipe.step - INFO - Step align_refs running with args (<CubeModel(2, 320, 320) from jw01386002001_0310a_00001_nrcalong_a3001_crfints.fits>, <CubeModel(45, 320, 320) from HD116434-F444W_psfstack.fits>).
2026-04-15 20:15:58,030 - jwst.coron.align_refs_step - INFO - Using PSFMASK reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_psfmask_0211.fits
2026-04-15 20:16:16,047 - stpipe.step - INFO - Step align_refs done
2026-04-15 20:16:16,144 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage3_psflib/jw01386002001_0310a_00001_nrcalong_a3001_psfalign.fits
2026-04-15 20:16:16,377 - stpipe.step - INFO - Step klip running with args (<CubeModel(2, 320, 320) from jw01386002001_0310a_00001_nrcalong_a3001_crfints.fits>, <CubeModel(45, 320, 320) from jw01386002001_0310a_00001_nrcalong_a3001_psfalign.fits>).
2026-04-15 20:16:16,378 - jwst.coron.klip_step - INFO - KL transform truncation = 50
2026-04-15 20:16:16,791 - stpipe.step - INFO - Step klip done
2026-04-15 20:16:16,912 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage3_psflib/jw01386002001_0310a_00001_nrcalong_a3001_psfsub.fits
2026-04-15 20:16:17,323 - stpipe.step - INFO - Step outlier_detection running with args (<CubeModel(2, 320, 320) from jw01386003001_0310a_00001_nrcalong_calints.fits>,).
2026-04-15 20:16:17,324 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection mode: coron
2026-04-15 20:16:17,325 - jwst.outlier_detection.outlier_detection_step - INFO - Outlier Detection asn_id: a3001
2026-04-15 20:16:17,331 - jwst.outlier_detection.utils - INFO - Computing median
2026-04-15 20:16:17,418 - jwst.outlier_detection.utils - INFO - 8 pixels marked as outliers
2026-04-15 20:16:17,524 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage3_psflib/jw01386003001_0310a_00001_nrcalong_a3001_crfints.fits
2026-04-15 20:16:17,525 - stpipe.step - INFO - Step outlier_detection done
2026-04-15 20:16:17,790 - stpipe.step - INFO - Step align_refs running with args (<CubeModel(2, 320, 320) from jw01386003001_0310a_00001_nrcalong_a3001_crfints.fits>, <CubeModel(45, 320, 320) from HD116434-F444W_psfstack.fits>).
2026-04-15 20:16:17,800 - jwst.coron.align_refs_step - INFO - Using PSFMASK reference file /home/runner/crds/references/jwst/nircam/jwst_nircam_psfmask_0211.fits
2026-04-15 20:16:36,740 - stpipe.step - INFO - Step align_refs done
2026-04-15 20:16:36,828 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage3_psflib/jw01386003001_0310a_00001_nrcalong_a3001_psfalign.fits
2026-04-15 20:16:37,026 - stpipe.step - INFO - Step klip running with args (<CubeModel(2, 320, 320) from jw01386003001_0310a_00001_nrcalong_a3001_crfints.fits>, <CubeModel(45, 320, 320) from jw01386003001_0310a_00001_nrcalong_a3001_psfalign.fits>).
2026-04-15 20:16:37,027 - jwst.coron.klip_step - INFO - KL transform truncation = 50
2026-04-15 20:16:37,382 - stpipe.step - INFO - Step klip done
2026-04-15 20:16:37,498 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage3_psflib/jw01386003001_0310a_00001_nrcalong_a3001_psfsub.fits
2026-04-15 20:16:37,873 - stpipe.step - INFO - Step resample running with args (<jwst.datamodels.library.ModelLibrary object at 0x7f3283754d60>,).
2026-04-15 20:16:37,903 - jwst.resample.resample_utils - INFO - Pixel scale ratio (pscale_out/pscale_in): 1.0
2026-04-15 20:16:37,904 - jwst.resample.resample_utils - INFO - Computed output pixel scale: 0.06241843102424811 arcsec.
2026-04-15 20:16:37,913 - stcal.resample.resample - INFO - Output pixel scale: 0.06241843102424811 arcsec.
2026-04-15 20:16:37,914 - stcal.resample.resample - INFO - Driz parameter kernel: square
2026-04-15 20:16:37,915 - stcal.resample.resample - INFO - Driz parameter pixfrac: 1.0
2026-04-15 20:16:37,916 - stcal.resample.resample - INFO - Driz parameter fillval: NAN
2026-04-15 20:16:37,916 - stcal.resample.resample - INFO - Driz parameter weight_type: exptime
2026-04-15 20:16:37,917 - jwst.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:16:37,952 - stcal.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:16:37,967 - stcal.resample.resample - INFO - Drizzling (320, 320) --> (371, 370)
2026-04-15 20:16:37,981 - stcal.resample.resample - INFO - Drizzling (320, 320) --> (371, 370)
2026-04-15 20:16:37,995 - stcal.resample.resample - INFO - Drizzling (320, 320) --> (371, 370)
2026-04-15 20:16:38,080 - stcal.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:16:38,095 - stcal.resample.resample - INFO - Drizzling (320, 320) --> (371, 370)
2026-04-15 20:16:38,109 - stcal.resample.resample - INFO - Drizzling (320, 320) --> (371, 370)
2026-04-15 20:16:38,123 - stcal.resample.resample - INFO - Drizzling (320, 320) --> (371, 370)
2026-04-15 20:16:38,177 - stcal.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:16:38,194 - stcal.resample.resample - INFO - Drizzling (320, 320) --> (371, 370)
2026-04-15 20:16:38,210 - stcal.resample.resample - INFO - Drizzling (320, 320) --> (371, 370)
2026-04-15 20:16:38,226 - stcal.resample.resample - INFO - Drizzling (320, 320) --> (371, 370)
2026-04-15 20:16:38,280 - stcal.resample.resample - INFO - Resampling science and variance data
2026-04-15 20:16:38,297 - stcal.resample.resample - INFO - Drizzling (320, 320) --> (371, 370)
2026-04-15 20:16:38,313 - stcal.resample.resample - INFO - Drizzling (320, 320) --> (371, 370)
2026-04-15 20:16:38,328 - stcal.resample.resample - INFO - Drizzling (320, 320) --> (371, 370)
2026-04-15 20:16:38,409 - jwst.resample.resample - INFO - Assigning output S_REGION: POLYGON ICRS 201.155907488 -51.503410342 201.155954311 -51.503331537 201.155310626 -51.503096235 201.155537236 -51.502709582 201.152053283 -51.501905410 201.148256380 -51.500517139 201.148233038 -51.500511763 201.147840975 -51.500932942 201.147122265 -51.500766999 201.145645072 -51.503291750 201.143789784 -51.505284453 201.144358015 -51.505491287 201.144088025 -51.505952662 201.148248791 -51.506907392 201.151533175 -51.508102622 201.151872451 -51.507738724 201.152504439 -51.507883699 201.153803776 -51.505667112
2026-04-15 20:16:38,413 - stpipe.step - INFO - Step resample done
2026-04-15 20:16:38,769 - stpipe.step - INFO - Saved model in /home/runner/work/jwst-pipeline-notebooks/jwst-pipeline-notebooks/notebooks/NIRCAM/Coronagraphy/nrc_coron_demo_data/stage3_psflib/HD116434-F444W_i2d.fits
2026-04-15 20:16:38,769 - jwst.pipeline.calwebb_coron3 - INFO - ...ending calwebb_coron3
2026-04-15 20:16:38,785 - stpipe.step - INFO - Step Coron3Pipeline done
2026-04-15 20:16:38,785 - jwst.stpipe.core - INFO - Results used jwst version: 2.0.0
10.-Advanced Usage- Examine the output#
Here we’ll plot the data from the larger library to see what our source looks like and whether the subtraction improved.
# Inspect the psf-subtracted images generated in the coron3 pipeline run
if download_coron_references and docoron3_psflib:
files = sorted(glob.glob(os.path.join(coron3_psflib_dir, '*_psfsub.fits')))
grid = plt.GridSpec(2, 4, hspace=0.3, wspace=0.3)
fig = plt.figure(figsize=(14, 7))
# Plot the psf-subtracted science images for each roll and integration
for roll in range(len(files)):
data = fits.getdata(files[roll])
for integ in range(data.shape[0]):
data_int = data[integ]
ax = fig.add_subplot(grid[roll, integ])
ax.imshow(data_int, vmin=-1, vmax=5, origin='lower', cmap='coolwarm')
ax.set_title('Roll {} Int {}'.format(roll + 1, integ + 1))
# Plot the final combined psf-subtracted science image
i2d_file = os.path.join(coron3_psflib_dir, psflib_asn_filename.replace('.json', '_i2d.fits'))
ax = fig.add_subplot(grid[0:2, 2:4])
data = fits.getdata(i2d_file)
ax.imshow(data, vmin=-1, vmax=5, origin='lower', cmap='coolwarm')
ax.set_title('Combined')
<matplotlib.image.AxesImage at 0x7f325ca97c50>
Text(0.5, 1.0, 'Roll 1 Int 1')
<matplotlib.image.AxesImage at 0x7f326194b750>
Text(0.5, 1.0, 'Roll 1 Int 2')
<matplotlib.image.AxesImage at 0x7f32837d5450>
Text(0.5, 1.0, 'Roll 2 Int 1')
<matplotlib.image.AxesImage at 0x7f32601eda90>
Text(0.5, 1.0, 'Roll 2 Int 2')
<matplotlib.image.AxesImage at 0x7f325c015310>
Text(0.5, 1.0, 'Combined')
This looks excellent already, we’ve achieved a broadly similar subtraction without using the dedicated reference at all. We can get a quick quantitative estimate of the comparison between the dedicated reference versus the library by plotting the profiles of the annular standard deviation as a function of separation from the coronagraph center. This is analogous to a contrast curve, but without the normalization for the stellar peak flux. As our science target hasn’t changed, this is a suitable proxy for the improvement in contrast.
def compute_stdev_curves(i2d_file_orig, i2d_file_psflib, mask_circle=None):
"""
Compute 5-sigma standard deviation curves for two i2d FITS files using CRPIX as center.
Parameters
----------
i2d_file_orig : str
Path to the original i2d FITS file.
i2d_file_psflib : str
Path to the large-library i2d FITS file.
mask_circle : tuple, optional
A tuple of (x, y, radius) in pixels defining a circular region to set
to NaN before computing the stdev curves. x and y are the center
of the circle in pixel coordinates (0-indexed).
Returns
-------
radii_arcsec : np.ndarray
Radii in arcseconds for the stdev curve.
stdev_orig : np.ndarray
5-sigma stdev curve for the original library.
stdev_psflib : np.ndarray
5-sigma stdev curve for the larger library.
"""
def load_i2d(filepath):
with fits.open(filepath) as hdul:
data = hdul['SCI'].data.astype(float)
hdr = hdul['SCI'].header
# CRPIX is 1-indexed, convert to 0-indexed
cx = hdr.get('CRPIX1', data.shape[1] / 2) - 1
cy = hdr.get('CRPIX2', data.shape[0] / 2) - 1
pixelscale = np.sqrt(hdr.get('PIXAR_A2'))
return data, cx, cy, pixelscale
def apply_circle_mask(data, mask_circle):
if mask_circle is not None:
mx, my, mr = mask_circle
y, x = np.indices(data.shape)
dist = np.sqrt((x - mx)**2 + (y - my)**2)
data = data.copy()
data[dist <= mr] = np.nan
return data
def radial_5sigma_stdev(data, cx, cy):
y, x = np.indices(data.shape)
r = np.sqrt((x - cx)**2 + (y - cy)**2).astype(int)
max_r = int(np.min([cx, cy, data.shape[1] - cx, data.shape[0] - cy]))
radii = np.arange(1, max_r)
stdev = np.full(len(radii), np.nan)
for i, radius in enumerate(radii):
annulus_mask = r == radius
annulus_values = data[annulus_mask]
# Remove NaNs
annulus_values = annulus_values[np.isfinite(annulus_values)]
if len(annulus_values) > 2:
stdev[i] = 5.0 * np.nanstd(annulus_values)
return radii, stdev
# Load data
data_orig, cx_orig, cy_orig, pixelscale_orig = load_i2d(i2d_file_orig)
data_psflib, cx_psflib, cy_psflib, pixelscale_psflib = load_i2d(i2d_file_psflib)
if pixelscale_orig != pixelscale_psflib:
raise ValueError("Pixel scales of the two i2d files do not match.")
else:
pixelscale = pixelscale_orig
# Apply circular mask if provided
data_orig = apply_circle_mask(data_orig, mask_circle)
data_psflib = apply_circle_mask(data_psflib, mask_circle)
# Compute stdev curves
radii_orig, stdev_orig = radial_5sigma_stdev(data_orig, cx_orig, cy_orig)
radii_psflib, stdev_psflib = radial_5sigma_stdev(data_psflib, cx_psflib, cy_psflib)
# Use the shorter of the two radius arrays for comparison
min_len = min(len(radii_orig), len(radii_psflib))
radii_arcsec = radii_orig[:min_len] * pixelscale
return radii_arcsec, stdev_orig[:min_len], stdev_psflib[:min_len]
if download_coron_references and docoron3_psflib:
# Look for *i2d file in the original coron3 output directory
i2d_file_orig = sorted(glob.glob(os.path.join(coron3_dir, '*_i2d.fits')))[0]
i2d_file_psflib = sorted(glob.glob(os.path.join(coron3_psflib_dir, '*_i2d.fits')))[0]
# Run the stdev calculation, applying a circular mask to reduce the impact of the bright inner planet, HIP 65426 b
radii_arcsec, stdev_orig, stdev_psflib = compute_stdev_curves(i2d_file_orig, i2d_file_psflib, mask_circle=(165, 207, 15))
# Make plot of the stdev curves and relative residuals in second panel
fig, ax = plt.subplots(2, 1, figsize=(8, 6), sharex=True, gridspec_kw={'height_ratios': [3,1]})
ax[0].plot(radii_arcsec, stdev_orig, label='Dedicated Reference')
ax[0].plot(radii_arcsec, stdev_psflib, label='PSF Library')
ax[0].set_yscale('log')
ax[0].set_ylabel('5$\\sigma$ Annular Standard Deviation')
ax[0].set_xlim(0, 5)
ax[0].legend()
ax[1].plot(radii_arcsec, stdev_orig/stdev_psflib, label='Dedicated / Library')
ax[1].axhline(1, color='gray', linestyle='--')
ax[1].set_xlabel('Separation (arcsec)')
ax[1].set_ylabel('Noise Reduction Factor')
ax[1].set_xlim(0, 5)
ax[1].legend()
plt.tight_layout()
[<matplotlib.lines.Line2D at 0x7f325d124b90>]
[<matplotlib.lines.Line2D at 0x7f325d124cd0>]
Text(0, 0.5, '5$\\sigma$ Annular Standard Deviation')
(0.0, 5.0)
<matplotlib.legend.Legend at 0x7f32607b6120>
[<matplotlib.lines.Line2D at 0x7f325d125e50>]
<matplotlib.lines.Line2D at 0x7f325d125f90>
Text(0.5, 0, 'Separation (arcsec)')
Text(0, 0.5, 'Noise Reduction Factor')
(0.0, 5.0)
<matplotlib.legend.Legend at 0x7f325d1260d0>
The subtracted images and curves show that the dedicated reference provides a better subtraction at most separations compared to the library, but the library still performs very well and is still able to recover the central planet, HIP 65426 b. The most significant differences occur at the closest separations, where the dedicated reference has a better subtraction, likely owing to it being a better match for the PSF of the science target. In some cases, where the contemporaneous reference is a less ideal match, a library may offer significant advantages in capturing the full scope of PSF diversity, and improve the overall contrast sensitivity. Furthermore, while the contemporaneous reference was excluded from the library for this example, this is not truly necessary, and overall contrast improvements may be obtained by combining both contemporaneous and library references.