
HST Exception Report - Investigate your ACS Data#
Learning Goals#
In this notebook, we will walk through steps to check your ACS data and observing logs for possible data quality problems indicated by an HST Exception Report and determine if a HOPR or Help Desk ticket needs to be filed.
By the end of this notebook, you will learn to:
Download your data
Display the data
Check data quality and any anomalies
Inspect JIF header keywords for problems
Run hst1pass on your data and evaluate the results
Determine if a HOPR or help desk ticket is warranted
Table of Contents#
Introduction
Imports
Download the Data
1. View data
2. Inspect JIF header keywords
3. Check jitter
4. Check PSF quality with hst1pass (Optional)
5. Summary & Additional Resources
About this Notebook
Citations
Introduction#
HST exception reports are sent via email to the PIs of programs that encounter observing problems during a given visit. Often times these are due to guide star acquisition failures, but there can be other causes, including unexpected safings of the telescope. Sometimes a report is sent out of an abundance of caution, in that the observing problem in question did not affect the data in the exception report. If you receive one of these reports, it is highly recommended that you inspect your data and the observing logs immediately in order to determine if your data quality is affected in any way.
If you determine your data are compromised by an observing problem, you can file a Hubble Observation Problem Report (HOPR). There is a 90-day time limit from the date the data were made available to file a HOPR.
If you have any issues with this notebook or any further questions, please contact the ACS Help Desk.
Some text and code in this notebook was adapted from the WFC3 Exception Report Checklist notebook (Kuhn 2022).
Imports#
We recommend installing the stenv Conda environment maintained by STScI. Instructions, including installation of a Conda distribution, can be found in the stenv documentation. If you already have Conda, and would prefer to create an environment with only the packages required by this notebook, please see the requirements.txt file included in this notebook’s repository.
Finally, this notebook contains an optional step to check PSF quality with a Fortran software package hst1pass. Instructions to install Fortran, download and compile hst1pass, download a PSF model, and run hst1pass are provided in Step 6. Check PSF quality with hst1pass (Optional).
For the Python-based steps in this notebook, we import:
Package Name |
Purpose |
|---|---|
|
creating list of files |
|
directory clean up |
|
setting environment variables |
|
downloading hst1pass files |
|
downloading data from MAST |
|
opening and modifying fits files |
|
reading text files |
|
normalize image for display |
|
plotting and displaying images |
import glob
import shutil
import os
import urllib
import subprocess
from astroquery.mast import Observations
from astropy.io import fits, ascii
from astropy.visualization import simple_norm
import matplotlib.pyplot as plt
Download the Data#
Here we download an example dataset with astroquery.mast. We choose visit 57 from program 16380 (PI Chiaberge), which consists of three ACS/WFC observations: JEG057010, JEG057020, and JEG057030. Each contains two exposures. The target is a region of Omega Centauri, a Milky Way globular cluster, so successful exposures contain a large population of resolved stars. We download the FLT, JIF, and JIT files, and move them into a directory named for the program ID.
To use this notebook with your data, edit the cell below with your program ID and exposure IDs (association names or IPPPSSOOTs), which are listed in your exception report.
For more information on this method of downloading data, see the documentation for astroquery.mast. This list of parameters for the query_criteria() function may be particularly useful. Other methods for downloading data include the MAST HST Search and the MAST Portal, the latter of which includes data from missions other than HST.
# Edit this cell with your info
program_id = 16380
exp_id = ['JEG057010', 'JEG057020', 'JEG057030']
data_products = ['FLT', 'JIF', 'JIT']
program_dir = '{}/p{}'.format(os.getcwd(), program_id)
# Check if directory for program exists already
try:
os.mkdir(program_dir)
except Exception:
print('Directory {} exists.\n'.format(program_dir))
# Check that all dataset names are 9 characters long
# if not, add a q to the end
datasets = ['{}q'.format(set) if len(set) == 8 else set for set in exp_id]
print('Visits to be downloaded')
print('{}\n'.format(datasets))
# Query MAST for datasets
obs_table = Observations.query_criteria(obs_id=datasets)
product_table = Observations.get_product_list(obs_table)
files_for_download = product_table['productFilename']
download_table = Observations.download_products(product_table, mrp_only=False,
productSubGroupDescription=data_products)
# For convenience move downloaded files to program dir and remove empty download dir
for file in download_table['Local Path']:
destination = os.path.join(program_dir, os.path.basename(file))
if not os.path.exists(destination):
shutil.move(file, program_dir)
else:
print(f"File {destination} already exists, skipping.")
shutil.rmtree('mastDownload')
Directory /home/runner/work/hst_notebooks/hst_notebooks/notebooks/ACS/acs_exception_report/p16380 exists.
Visits to be downloaded
['JEG057010', 'JEG057020', 'JEG057030']
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/jeg057cjq_flt.fits to ./mastDownload/HST/jeg057cjq/jeg057cjq_flt.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/jeg057chq_flt.fits to ./mastDownload/HST/jeg057chq/jeg057chq_flt.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/jeg057coq_flt.fits to ./mastDownload/HST/jeg057coq/jeg057coq_flt.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/jeg057021_jif.fits to ./mastDownload/HST/jeg057020/jeg057021_jif.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/jeg057021_jit.fits to ./mastDownload/HST/jeg057020/jeg057021_jit.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/jeg057cmq_flt.fits to ./mastDownload/HST/jeg057cmq/jeg057cmq_flt.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/jeg057cxq_flt.fits to ./mastDownload/HST/jeg057cxq/jeg057cxq_flt.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/jeg057czq_flt.fits to ./mastDownload/HST/jeg057czq/jeg057czq_flt.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/jeg057011_jif.fits to ./mastDownload/HST/jeg057010/jeg057011_jif.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/jeg057011_jit.fits to ./mastDownload/HST/jeg057010/jeg057011_jit.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/jeg057031_jif.fits to ./mastDownload/HST/jeg057030/jeg057031_jif.fits ...
[Done]
Downloading URL https://mast.stsci.edu/api/v0.1/Download/file?uri=mast:HST/product/jeg057031_jit.fits to ./mastDownload/HST/jeg057030/jeg057031_jit.fits ...
[Done]
File /home/runner/work/hst_notebooks/hst_notebooks/notebooks/ACS/acs_exception_report/p16380/jeg057cjq_flt.fits already exists, skipping.
File /home/runner/work/hst_notebooks/hst_notebooks/notebooks/ACS/acs_exception_report/p16380/jeg057chq_flt.fits already exists, skipping.
File /home/runner/work/hst_notebooks/hst_notebooks/notebooks/ACS/acs_exception_report/p16380/jeg057coq_flt.fits already exists, skipping.
File /home/runner/work/hst_notebooks/hst_notebooks/notebooks/ACS/acs_exception_report/p16380/jeg057021_jif.fits already exists, skipping.
File /home/runner/work/hst_notebooks/hst_notebooks/notebooks/ACS/acs_exception_report/p16380/jeg057021_jit.fits already exists, skipping.
File /home/runner/work/hst_notebooks/hst_notebooks/notebooks/ACS/acs_exception_report/p16380/jeg057cmq_flt.fits already exists, skipping.
File /home/runner/work/hst_notebooks/hst_notebooks/notebooks/ACS/acs_exception_report/p16380/jeg057cxq_flt.fits already exists, skipping.
File /home/runner/work/hst_notebooks/hst_notebooks/notebooks/ACS/acs_exception_report/p16380/jeg057czq_flt.fits already exists, skipping.
File /home/runner/work/hst_notebooks/hst_notebooks/notebooks/ACS/acs_exception_report/p16380/jeg057011_jif.fits already exists, skipping.
File /home/runner/work/hst_notebooks/hst_notebooks/notebooks/ACS/acs_exception_report/p16380/jeg057011_jit.fits already exists, skipping.
File /home/runner/work/hst_notebooks/hst_notebooks/notebooks/ACS/acs_exception_report/p16380/jeg057031_jif.fits already exists, skipping.
File /home/runner/work/hst_notebooks/hst_notebooks/notebooks/ACS/acs_exception_report/p16380/jeg057031_jit.fits already exists, skipping.
1. View data#
Next, we use matplotlib.pyplot.imshow to display the SCI arrays of the FLT images. We also print the filter information for each image at the top of the plot. In some cases, a quick visual inspection can reveal poor data quality due to guiding problems. In other cases, a deeper level of analysis is needed to determine if there are problems with the data.
flt_files = sorted(glob.glob(f'p{program_id}/*flt.fits'))
for flt in flt_files:
hdu = fits.open(flt)
hdr = hdu[0].header
# Only 1 SCI extension for SBC images
if hdr['DETECTOR'] == 'SBC':
sci1 = hdu[1].data
filter1 = hdr['FILTER1']
norm = simple_norm(sci1, 'linear', percent=90)
fig, ax0 = plt.subplots(1, 1)
im = ax0.imshow(sci1, origin='lower', norm=norm, cmap='Greys_r')
ax0.set_xlabel('x (pixels)')
ax0.set_ylabel('y (pixels)')
ax0.set_title(f'{flt.split("/")[-1]}\n{filter1}')
fig.colorbar(im, ax=ax0)
# 2 SCI extensions for WFC images
elif hdr['DETECTOR'] == 'WFC':
sci1 = hdu[4].data
sci2 = hdu[1].data
filter1 = hdr['FILTER1']
filter2 = hdr['FILTER2']
norm = simple_norm(sci1, 'linear', percent=90)
fig, (ax0, ax1) = plt.subplots(2, 1, sharex=True)
im = ax0.imshow(sci1, origin='lower', norm=norm, cmap='Greys_r')
ax1.imshow(sci2, origin='lower', norm=norm, cmap='Greys_r')
ax1.set_xlabel('x (pixels)')
ax0.set_ylabel('y (pixels)')
ax1.set_ylabel('y (pixels)')
ax0.set_title(f'{flt.split("/")[-1]}\n{filter1}/{filter2}')
fig.colorbar(im, ax=(ax0, ax1))
In this example, the third and fourth images, jeg057cmq and jeg057coq, consist of streaked stars. This is a very clear example of a guiding failure. The other images appear normal with many bright point-like stars in the field of view.
Often, the shutter will close if a guiding failure occurs. These images will not be blank, but will contain normal detector features such as cosmic rays and hot pixels.
2. Inspect JIF header keywords#
To further investigate any guiding issues in the dataset, we inspect certain header keywords in the observing log (JIF) files. There are two JIF files, one for each association, each listing observing information for two exposures. There is a section in the zeroth extension of the JIF files that lists problem flags for the dataset, which we print and inspect first.
# Define color strings and expected JIF keyword values
colorstr_WARNING = '\033[91m' # red
colorstr_RESET = '\033[0m' # reset
jif_header_keys = {'T_GDACT': {'expected': True},
'T_ACTGSP': {'expected': True},
'T_GSFAIL': {'expected': False},
'T_SGSTAR': {'expected': False},
'T_TLMPRB': {'expected': False},
'T_NOTLM': {'expected': False},
'T_NTMGAP': {'expected': 0},
'T_TMGAP': {'expected': 0},
'T_GSGAP': {'expected': False},
'T_SLEWNG': {'expected': False},
'T_TDFDWN': {'expected': False}}
jif_list = sorted(glob.glob(f'p{program_id}/*jif.fits'))
for jif in jif_list:
with fits.open(jif) as hdu:
jif_hdr = hdu[0].header
print(jif.split('/')[-1])
# print section of JIF header with problem flags
for i in range(-18, -7):
key = list(jif_hdr.keys())[i]
# Highlight unexpected values in red
if jif_hdr[key] != jif_header_keys[key]['expected']:
print(colorstr_WARNING + repr(jif_hdr[i:i+1]) + colorstr_RESET)
else:
print(repr(jif_hdr[i:i+1]))
print('\n')
jeg057011_jif.fits
T_GDACT = T / Actual guiding mode same for all exposures
T_ACTGSP= T / Actual Guide Star Separation same in all exps.
T_GSFAIL= F / Guide star acquisition failure in any exposure
T_SGSTAR= F / Failed to single star fine lock
T_TLMPRB= F / problem with the engineering telemetry in any e
T_NOTLM = F / no engineering telemetry available in all exps.
T_NTMGAP= 0 / total number of telemetry gaps in association
T_TMGAP = 0.000000 / total duration of missing telemetry in asn. (s)
T_GSGAP = F / missing telemetry during GS acq. in any exp.
T_SLEWNG= F / Slewing occurred during observations
T_TDFDWN= F / Take Data Flag NOT on throughout observations
jeg057021_jif.fits
T_GDACT = T / Actual guiding mode same for all exposures
T_ACTGSP= T / Actual Guide Star Separation same in all exps.
T_GSFAIL= F / Guide star acquisition failure in any exposure
T_SGSTAR= F / Failed to single star fine lock
T_TLMPRB= F / problem with the engineering telemetry in any e
T_NOTLM = F / no engineering telemetry available in all exps.
T_NTMGAP= 0 / total number of telemetry gaps in association
T_TMGAP = 0.000000 / total duration of missing telemetry in asn. (s)
T_GSGAP = F / missing telemetry during GS acq. in any exp.
T_SLEWNG= F / Slewing occurred during observations
T_TDFDWN= T / Take Data Flag NOT on throughout observations
jeg057031_jif.fits
T_GDACT = T / Actual guiding mode same for all exposures
T_ACTGSP= T / Actual Guide Star Separation same in all exps.
T_GSFAIL= F / Guide star acquisition failure in any exposure
T_SGSTAR= F / Failed to single star fine lock
T_TLMPRB= F / problem with the engineering telemetry in any e
T_NOTLM = F / no engineering telemetry available in all exps.
T_NTMGAP= 0 / total number of telemetry gaps in association
T_TMGAP = 0.000000 / total duration of missing telemetry in asn. (s)
T_GSGAP = F / missing telemetry during GS acq. in any exp.
T_SLEWNG= F / Slewing occurred during observations
T_TDFDWN= F / Take Data Flag NOT on throughout observations
The only problem flag in these JIF files is that T_TDFDWN is True in the second file, which is highlighted in red to show it is different than the expected value (False). This means that the Take Data Flag was down at some point during the third and fourth exposures. If the Take Data Flag is up, that means an observation can proceed. If it goes down, the observation may stop, shutters may close, and generally, no more science data is taken until the flag goes back up. Interestingly, the shutter clearly opened during the third and fourth exposures shown in the figures above.
We may expect T_GSFAIL to be True in the second JIF file, since the TDF went down, but it is False, suggesting that the guiding problem that led to streaked images likely happened before the exposures began.
Next, we look at the header keywords in the first and subsequent extensions of the JIF file to learn more about observing problems in the individual exposures.
def further_ext(jif_file):
numexts = fits.getheader(jif_file, 0)['NEXTEND'] # number of extensions i.e. exposures
keywords = ['EXPNAME*', 'GUIDEACT*', 'GSACQ*', 'ACTGSSEP*',
'GSSEPRMS*', ' NLOSSES*',
'V2_RMS*', 'V3_RMS*', 'GSFAIL*', 'TDF-DOWN*']
for ext in range(1, numexts+1):
print("JIF Header Ext Number:", ext)
print('-'*80)
header = fits.getheader(jif_file, ext)
for keyword in keywords:
# try to display keyword because it may not be present
details = header[keyword]
if details is not None:
print(repr(details))
else:
print(f'Keyword {keyword} not found in extension {ext}')
print('\n')
for jif in jif_list:
further_ext(jif)
JIF Header Ext Number: 1
--------------------------------------------------------------------------------
EXPNAME = 'jeg057chj ' / exposure identifier
GUIDEACT= 'FINE LOCK ' / Actual Guiding mode at end of GS acquisition
GSACQ = '2021.201:11:20:29 ' / Actual time of GS Acquisition Completion
ACTGSSEP= 1092.737 / Actual Guide Star Separation (arcsec)
GSSEPRMS= 0.6 / RMS of Guide Star Separation (milli-arcsec)
V2_RMS = 1.8 / dominant guide star V2 axis RMS (mas)
V3_RMS = 1.4 / dominant guide star V3 axis RMS (mas)
JIF Header Ext Number: 2
--------------------------------------------------------------------------------
EXPNAME = 'jeg057cjj ' / exposure identifier
GUIDEACT= 'FINE LOCK ' / Actual Guiding mode at end of GS acquisition
GSACQ = '2021.201:11:20:29 ' / Actual time of GS Acquisition Completion
ACTGSSEP= 1092.737 / Actual Guide Star Separation (arcsec)
GSSEPRMS= 0.7 / RMS of Guide Star Separation (milli-arcsec)
V2_RMS = 1.9 / dominant guide star V2 axis RMS (mas)
V3_RMS = 1.5 / dominant guide star V3 axis RMS (mas)
JIF Header Ext Number: 1
--------------------------------------------------------------------------------
EXPNAME = 'jeg057cmj ' / exposure identifier
GUIDEACT= 'GYRO ' / Actual Guiding mode at end of GS acquisition
GSACQ = '2021.201:11:20:29 ' / Actual time of GS Acquisition Completion
ACTGSSEP= -32767. / Actual Guide Star Separation (arcsec)
GSSEPRMS= -32767. / RMS of Guide Star Separation (milli-arcsec)
V2_RMS = -32767. / dominant guide star V2 axis RMS (mas)
V3_RMS = -32767. / dominant guide star V3 axis RMS (mas)
TDF-DOWN= T / take-data-flag not up during entire exposure
JIF Header Ext Number: 2
--------------------------------------------------------------------------------
EXPNAME = 'jeg057coj ' / exposure identifier
GUIDEACT= 'GYRO ' / Actual Guiding mode at end of GS acquisition
GSACQ = '2021.201:11:20:29 ' / Actual time of GS Acquisition Completion
ACTGSSEP= -32767. / Actual Guide Star Separation (arcsec)
GSSEPRMS= -32767. / RMS of Guide Star Separation (milli-arcsec)
V2_RMS = -32767. / dominant guide star V2 axis RMS (mas)
V3_RMS = -32767. / dominant guide star V3 axis RMS (mas)
TDF-DOWN= T / take-data-flag not up during entire exposure
JIF Header Ext Number: 1
--------------------------------------------------------------------------------
EXPNAME = 'jeg057cxj ' / exposure identifier
GUIDEACT= 'FINE LOCK ' / Actual Guiding mode at end of GS acquisition
GSACQ = '2021.201:13:01:29 ' / Actual time of GS Acquisition Completion
ACTGSSEP= 1092.764 / Actual Guide Star Separation (arcsec)
GSSEPRMS= 0.6 / RMS of Guide Star Separation (milli-arcsec)
V2_RMS = 2.1 / dominant guide star V2 axis RMS (mas)
V3_RMS = 1.3 / dominant guide star V3 axis RMS (mas)
JIF Header Ext Number: 2
--------------------------------------------------------------------------------
EXPNAME = 'jeg057czj ' / exposure identifier
GUIDEACT= 'FINE LOCK ' / Actual Guiding mode at end of GS acquisition
GSACQ = '2021.201:13:01:29 ' / Actual time of GS Acquisition Completion
ACTGSSEP= 1092.764 / Actual Guide Star Separation (arcsec)
GSSEPRMS= 0.8 / RMS of Guide Star Separation (milli-arcsec)
V2_RMS = 2.1 / dominant guide star V2 axis RMS (mas)
V3_RMS = 1.3 / dominant guide star V3 axis RMS (mas)
Keywords from the JIF files indicate that the third and fourth exposures were taken without a lock on guide stars. The actual guiding mode, GUIDEACT, was GYRO, meaning the guiding was controlled by the telescope gyro alone, which explains the detector motion. The guide star keywords ACTGSSEP, GSSEPRMS, V2_RMS and V3_RMS are set to the nonphysical value -32767, and TDF-DOWN is True.
The other exposures had two guide stars acquired, as indicated by GUIDEACT = FINE LOCK. (When a single guide star is acquired, GUIDEACT is set to FINE/GYRO.) The guide star keywords ACTGSSEP, GSSEPRMS, V2_RMS, and V3_RMS are set to realistic, typical values.
3. Check jitter#
Sometimes the telescope may shake or move slightly during an observation, while guiding in FINE LOCK. This is called jitter. Motion of the detector in the V2, V3 coordinate system is saved in the jitter (JIT) file, and can be inspected for any extreme excursions that could affect data quality.
def jitter_plots(jit_file):
numexts = fits.getheader(jit_file, 0)['NEXTEND']
for ext in range(1, numexts+1):
jit_data = fits.getdata(jit_file, ext)
expname = fits.getheader(jit_file, ext)['EXPNAME']
plt.figure()
plt.grid(alpha=0.5)
plt.scatter(jit_data['Seconds'], jit_data['SI_V2_AVG'], 15,
alpha=0.5, marker='o', label='V2_AVG')
plt.scatter(jit_data['Seconds'], jit_data['SI_V3_AVG'], 15,
alpha=0.5, marker='o', label='V3_AVG')
plt.scatter(jit_data['Seconds'], jit_data['SI_V2_RMS'], 10,
alpha=0.5, marker='s', label='V2_RMS')
plt.scatter(jit_data['Seconds'], jit_data['SI_V3_RMS'], 10,
alpha=0.5, marker='s', label='V3_RMS')
plt.xlabel('Exposure Time [Seconds]', size=13)
plt.ylabel('Coordinate Axis [Arcsec]', size=13)
plt.title(f"Jitter File Ext Number: {ext}\n Exposure: {expname}", size=14)
plt.legend(ncol=2)
plt.minorticks_on()
jit_list = sorted(glob.glob(f'p{program_id}/*jit.fits'))
for jit in jit_list:
jitter_plots(jit)
The third and fourth exposures have jitter values pegged at a nonphysical value of 1.6e38, which is simply a placeholder for observations in which the guide stars were not acquired. The remaining exposures show a very minor amount of telescope motion, typically <3 mas, and the jitter RMS is typically <2 mas.
This further confirms there were no guide stars acquired for the third and fourth images, but the remaining images were not affected by guide star problems. The above analysis is enough to determine that a HOPR is warranted for the two images for which the telescope was guiding in GYRO mode.
If data quality is still unclear at this point, proceeding to the next section may be useful. Another avenue for futher analysis that we recommend, radial profile fitting of stars, is thoroughly covered in Step 6 in the WFC3 Exception Report Checklist notebook.
(Optional) 4. Check PSF quality with hst1pass#
If your images have at least a handful of unsaturated stars, running the PSF-fitting photometry package hst1pass on your data can provide an independent check of PSF quality, and may help you decide if a HOPR is warranted.
4.1 Environment Setup#
We first install Fortran by typing conda install -c conda-forge gfortran in the terminal. You may need to save and close this notebook, install Fortran, and then restart this notebook to ensure Fortran is active in your environment.
Next, we download the hst1pass Fortran package from https://www.stsci.edu/~jayander/HST1PASS/CODE/hst1pass/ and compile it. Alternatively, this can be done manually by downloading the latest file from the website directly, and compiling it on the command line with the command gfortran hst1pass.2026.03.24_v2b.F. This is the most recent version of the Fortran package as of the writing of this notebook, so it would be prudent to check for a newer version on the website above.
file = 'hst1pass.2026.03.24_v2b.F'
file_url = f'https://www.stsci.edu/~jayander/HST1PASS/CODE/hst1pass/{file}'
# Download the fortran file if it doesn't exist
if not os.path.exists(f'./{file}'):
print('Downloading:', file_url)
urllib.request.urlretrieve(file_url, f'./{file}')
# Compile hst1pass if it hasn't been yet
if not os.path.exists('./hst1pass.e'):
subprocess.run(["gfortran", file, "-o", "hst1pass.e"], check=True)
print('The executable hst1pass.e has been compiled')
else:
print('The executable hst1pass.e already exists')
The executable hst1pass.e already exists
Next, we download the standard library PSF for the filter used for your data. See the figure titles in step 3 above for filter information: ACS/WFC F606W in this example. Note that PSFs are not available for all ACS filters, so that may limit your ability to complete this step.
psf_name = 'STDPSF_ACSWFC_F606W_SM4.fits'
psf_url = f'https://www.stsci.edu/~jayander/HST1PASS/LIB/PSFs/STDPSFs/ACSWFC/{psf_name}'
# Download the PSF file if it doesn't exist.
if not os.path.exists(f'./{psf_name}'):
print('Downloading:', psf_url)
urllib.request.urlretrieve(psf_url, f'./{psf_name}')
4.2 Run hst1pass#
Here we run hst1pass on the FLT files with a simple set of input parameters:
HMIN = 5requires that a given pixel have no brighter pixels within 5 pixels radiusFMIN = 150requires that source contain at least 150 electrons in a 2x2 pixel boxPSFlists the PSF filePERT = 1allows the library PSF to be perturbed to find the single best PSF for a given imageOUT = xymeqspecifies the output quantities: detector coordinatesxandy, instrumental magnitude and errormande, and the quality of fit metric for the PSF fitq.
for flt in flt_files:
cmd_list = ["./hst1pass.e", "HMIN=5", "FMIN=150", "PSF=STDPSF_ACSWFC_F606W_SM4.fits", "PERT=1", "OUT=xymeq", flt]
subprocess.run(cmd_list, check=True)
------------------------------------------------
ARG0000: ./hst1pass.e
ARG0001: HMIN=5
ARG0002: FMIN=150
ARG0003: PSF=STDPSF_ACSWFC_F606W_SM4.fits
ARG0004: PERT=1
ARG0005: OUT=xymeq
ARG0006: p16380/jeg057chq_flt.fits
----------------------------------------------
OUTPUT FROM PROGRAM hst1pass: ./hst1pass.e
HMIN: 5
FMIN: 150.0
PSFFILEI: STDPSF_ACSWFC_F606W_SM4.fits
GDCFILEI: NONE
DOAPPHOT: F
DOSATD: T
NPERTs: 1
WCSMODE: AUTO
PMAX: **********
KSEL: 0
QMAX: 0.500
CMIN: -1.000
CMAX: 0.250
NIMs: 001
NIM00001 p16380/jeg057chq_flt.fits
NIMa: 1
NIMb: 1
NIMs: 1
----------------------------------------------
NIM001 CALL sub_hst2ym on image p16380/jeg057chq_flt.fits
ENTER sub_hst2xym --
FILENAME: p16380/jeg057chq_flt.fits
FILENAMu: p16380/jeg057chq_flt.fits
VERBOSE : 1
HMIN : 5
FMIN : 150
IMIN/MAX: -9999 9999
JMIN/MAX: -9999 9999
DOSATD : T
ARTSTARs: 0
LSTSTARs: 0
GDC_INP : NONE
PSF_INP : STDPSF_ACSWFC_F606W_SM4.fits
WCSMODE : AUTO
SHOW_USE: -
SHOW_FND: -
SHOW_REF: -
SHOW_SUB: -
SHOW_ART: -
SHOW_MSK: -
DQ_MASK---
SMIN: 10.00
SMAX: 1000.00
LVL: 0.00
FLAG: 0
DOAPPHOT: F
STEMu : jeg057chq
FILTu : F606W
PROPu : 16380
RDATu : 2021.55199
INSTRUME: 'ACS '
DETECTOR: 'WFC'
FLASHSTA: 'NOT PERFORMED '
FLSHCORR: 'OMIT '
SHUTRPOS: A
FLASHCUR: O
FLASHDUR: 0.0
FLASHLVL: 0.0
DARKTIME: 153.2
DARKEST : 1.8
PSFFILE : STDPSF_ACSWFC_F606W_SM4.fits
GDCFILE : NONE
DOSATD : T
HIFLAG : 76000
IDENTIFY SATURATED STARS
CALL peak_sat_NAXIS 76000
LLAC peak_sat_NAXIS 76000
GET FLUXES FOR SATURATED STARS
PSFFILE_USE: STDPSF_ACSWFC_F606W_SM4.fits
----- ---- ---- ------ ------ ------------ ------ ------ ------
LIST I J MAG SKY FLUX NSAT NAP PSFTOT
----- ---- ---- ------ ------ ------------ ------ ------ ------
00001 2771 0013 -13.96 27.9 384660.8 1 25 0.9087
00002 0480 0017 -13.59 23.2 271994.2 1 25 0.8973
00003 2442 0019 -14.09 33.5 432198.4 1 25 0.9096
00004 3737 0021 -16.58 47.4 4301783.5 40 159 0.9992
00005 0065 0025 -14.50 40.9 632282.8 1 25 0.8994
00006 0835 0028 -14.31 25.5 529644.9 2 25 0.9019
00007 3238 0028 -16.16 54.5 2901524.5 27 115 0.9916
00008 3877 0029 -14.72 39.6 771839.8 3 41 0.9501
00009 3987 0034 -14.30 40.2 525028.4 1 30 0.9170
00010 3558 0038 -18.80 161.4 33033710.0 342 837 1.0184
00013 0251 0053 -18.84 173.4 34387348.0 317 787 1.0196
00020 2000 0089 -14.04 28.5 414735.2 1 25 0.9094
00030 0015 0143 -14.89 30.0 902924.8 4 35 0.9158
00040 3729 0241 -13.74 39.4 313680.2 0 25 0.9081
00050 2547 0294 -13.84 31.4 345066.2 0 25 0.9110
00057 3496 0313 -19.32 240.0 53413100.0 547 1499 1.0190
00060 3628 0322 -14.28 53.0 516234.3 1 30 0.9253
00070 1749 0376 -13.91 24.5 364757.8 1 25 0.9101
00080 3765 0408 -14.67 53.3 736749.1 3 40 0.9427
00090 3603 0454 -16.09 48.3 2739944.5 24 109 0.9928
00100 2279 0483 -16.25 36.5 3154168.0 29 121 0.9934
00114 2794 0534 -20.56 552.6 166840240.0 1699 4450 1.0256
00200 2368 0945 -14.12 34.3 444582.5 1 25 0.9114
00300 1629 1714 -17.36 56.2 8810559.0 81 253 1.0050
00396 1482 2335 -21.26 765.9 318211520.0 2929 6517 1.0344
00400 2893 2367 -14.08 32.5 428538.3 1 25 0.9117
00500 0539 3127 -15.76 28.0 2013370.0 16 75 0.9775
00600 2311 3988 -14.65 27.7 726905.7 3 35 0.9313
----- ---- ---- ------ ------ ------------ ------ ------ ------
LIST I J MAG SKY FLUX NSAT NAP PSFTOT
----- ---- ---- ------ ------ ------------ ------ ------ ------
MEASURED SATd STARS: 606 BRIGHTEST: L0396 1482 2335 -21.26
HISTMODE: 26.53
PSFFILE_INP: STDPSF_ACSWFC_F606W_SM4.fits
PSFFILE_PRT: jeg057chq_psf.fits
CALL FIND_PSFPERT -- 1x1
CENPERT : 1
1 0.0057
NOW, GO THROUGH IMAGE AND FIND STARS
------- --------- --------- ------- ------|- -- --|-------| ----- ----- ----- -----| ----- ----- ----- -----| ------- ------- -------
NSTARS XCEN YCEN MAG SKY |M iS oS| PCEN| P02 P03 P04 P05| P06 P07 P08 P09| mSKY F2x2 F2x2-SK
------- --------- --------- ------- ------|- -- --|-------| ----- ----- ----- -----| ----- ----- ----- -----| ------- ------- -------
1 232.373 5.959 -8.649 92.9|5 4 7| 662| 559 203 242 169| 178 168 554 116| 92 1295 1295
2 1498.118 6.462 -12.916 33.1|5 11 14| 25119| 12834 7221 24396 4880| 10967 7552 4167 2560| 33 52072 52072
24 773.607 7.910 -12.939 24.9|5 11 14| 26952| 7431 22584 9105 12028| 3976 7560 7263 9227| 24 50034 50034
26 1418.179 8.179 -13.191 31.2|5 11 14| 39869| 20767 10043 20285 9870| 11434 6603 7767 4081| 31 64987 64987
85 2771.134 12.741 -13.963 42.0|9 0 0| 384660| 38398 21309 22479 49597| 14865 8321 27500 13910| 41 500050 500050
142 2442.062 19.262 -14.089 52.5|9 0 0| 432198| 40098 30373 64384 25401| 25115 18930 15535 9747| 52 561690 561690
168 3736.694 20.902 -16.584 228.3|9 0 0|4301783| 84776 84051 82731 82837| 82790 83054 83088 83029| 228 4552378 4552378
333 3557.848 37.596 -18.797 872.3|9 0 0|*******| 87021 84888 86407 86693| 87692 85098 87649 85433| 872 ******* *******
478 250.623 54.106 -18.841 853.5|9 0 0|*******| 98744 96486 98377 97860| 97002 96817 97392 96998| 853 ******* *******
778 114.077 80.891 -12.320 45.4|5 10 13| 17867| 7416 5644 5334 7414| 3870 2557 5382 2712| 45 24657 24657
1000 1876.621 101.627 -7.263 27.6|5 4 7| 174| 44 137 50 132| 54 60 81 98| 27 330 330
1639 279.675 162.526 -6.948 23.1|5 4 7| 105| 57 75 100 27| 49 95 50 66| 23 206 206
2000 3135.577 195.091 -7.517 40.1|5 3 6| 239| 83 207 124 101| 59 110 71 91| 40 383 383
2489 541.208 243.101 -6.717 32.0|5 3 6| 131| 89 72 85 52| 59 27 61 59| 31 174 174
3000 3573.777 288.985 -7.771 58.1|5 3 6| 372| 137 225 145 166| 104 114 93 103| 58 479 479
3246 3495.678 313.060 -19.319 858.3|9 0 0|*******| 83362 82415 83519 83885| 83210 82207 82794 82832| 858 ******* *******
3343 20.080 323.814 -8.585 17.4|5 5 8| 514| 241 190 170 306| 130 80 185 91| 17 790 790
4000 1097.479 390.346 -11.528 25.1|5 9 12| 6622| 6374 967 4785 1407| 4349 787 1390 463| 25 16919 16919
4152 424.009 404.767 -8.907 34.8|5 6 9| 782| 299 296 215 427| 152 120 287 176| 34 1120 1120
4977 194.681 485.929 -6.936 22.9|5 3 6| 140| 67 97 55 68| 31 51 54 54| 22 179 179
5000 2022.825 488.895 -14.566 521.2|9 0 0| 670507| 40053 67037 76859 67909| 26099 38355 23435 18671| 521 852652 852652
5445 2794.000 534.000 -20.556 0.0|9 0 0|*******| 90010 84411 87935 87937| 88348 84437 88507 84240| 0 ******* *******
5754 1567.314 567.102 -10.728 46.8|5 7 10| 4641| 2829 676 1805 1112| 1228 436 1000 379| 46 7721 7721
6000 3578.463 591.180 -7.590 45.5|5 3 6| 223| 213 68 147 97| 136 74 114 80| 45 371 371
6591 1000.418 647.590 -9.165 27.6|5 4 7| 878| 581 137 119 653| 116 66 596 94| 27 2035 2035
7000 1378.187 687.118 -8.255 18.2|5 5 8| 473| 236 116 206 133| 124 68 105 59| 18 659 659
7430 158.429 728.697 -6.573 22.3|5 3 6| 97| 78 39 40 63| 37 24 69 28| 22 157 157
8000 3894.555 781.874 -12.748 49.2|5 9 12| 22683| 5808 21154 7367 10793| 3124 6639 4615 9290| 49 47127 47127
8249 370.270 809.654 -9.282 26.4|5 7 10| 997| 611 194 258 719| 204 108 507 174| 26 2061 2061
9000 3163.455 884.903 -7.802 28.7|5 5 8| 293| 275 83 96 136| 108 51 124 42| 28 550 550
9049 725.584 891.333 -10.654 30.0|5 8 11| 3408| 967 2647 2119 733| 678 1911 569 529| 29 7784 7784
9834 488.949 971.645 -8.229 20.0|5 5 8| 408| 160 164 116 306| 58 58 125 131| 19 677 677
10000 1880.297 989.281 -8.227 24.1|5 5 8| 430| 263 93 239 97| 173 76 94 58| 24 727 727
10610 842.264 1053.010 -11.208 24.5|5 9 12| 7498| 3908 1109 2190 2252| 1544 596 1589 606| 24 10870 10870
11000 3409.608 1094.597 -10.115 52.6|5 6 9| 1823| 488 1416 583 1577| 278 487 494 1192| 52 4375 4375
11378 221.774 1134.173 -7.895 30.4|5 4 7| 331| 109 192 171 92| 87 112 105 77| 30 510 510
12000 619.486 1202.143 -9.132 21.1|5 6 9| 1198| 678 342 170 105| 358 70 149 31| 21 1649 1649
12126 334.871 1214.703 -8.018 19.4|5 5 8| 358| 105 156 88 252| 52 85 83 103| 19 608 608
12852 536.865 1296.084 -12.480 23.2|5 11 14| 23971| 6956 10214 8532 6235| 3662 4383 4244 2983| 23 34500 34500
13000 1386.824 1312.296 -13.115 35.6|5 11 14| 36835| 11564 17657 22031 7671| 7716 12230 6603 4381| 35 66654 66654
13564 229.005 1377.362 -9.942 21.6|5 8 11| 2032| 780 629 1324 323| 559 497 316 205| 21 3194 3194
14000 3423.373 1427.084 -9.471 41.6|5 6 9| 1294| 946 232 577 416| 445 162 380 148| 41 2240 2240
14294 120.284 1457.770 -11.689 22.8|5 10 13| 9098| 5588 1883 2190 5102| 1809 704 3763 1096| 22 16918 16918
15000 2873.117 1537.119 -8.836 28.0|5 6 9| 857| 340 181 367 289| 195 149 167 109| 28 1123 1123
15008 970.736 1539.096 -8.115 21.1|5 5 8| 366| 132 221 161 139| 76 136 112 86| 21 558 558
15750 751.372 1620.465 -9.229 23.4|5 7 10| 780| 591 137 686 138| 500 163 160 77| 23 1809 1809
16000 1304.850 1643.793 -8.352 31.1|5 5 8| 427| 170 233 150 271| 106 117 147 158| 31 668 668
16465 688.596 1701.365 -7.845 23.0|5 4 7| 238| 91 197 210 75| 79 129 73 73| 23 497 497
17000 3050.699 1763.620 -8.127 28.6|5 5 8| 320| 98 231 147 271| 70 104 118 220| 28 716 716
17140 111.301 1781.610 -12.495 24.2|5 11 14| 16885| 10161 3518 3567 13195| 3263 1141 9188 2673| 24 35784 35784
17861 83.912 1862.930 -11.432 19.6|5 10 13| 7921| 2638 3451 2283 3490| 1390 1229 1835 1368| 19 11409 11409
18000 1110.574 1880.249 -9.178 31.5|5 6 9| 788| 272 705 430 251| 222 416 187 181| 31 1559 1559
18520 457.785 1943.610 -7.551 24.3|5 4 7| 176| 81 116 89 174| 68 80 64 98| 24 326 326
19000 892.675 2002.078 -10.129 25.7|5 7 10| 2071| 665 1458 858 778| 376 691 437 536| 25 3394 3394
19185 198.036 2025.331 -9.723 22.4|5 7 10| 1999| 51 1492 478 397| 36 971 21 121| 22 4023 4023
19748 628.935 2105.581 -12.494 35.6|5 10 13| 19317| 6407 7764 3629 13794| 2395 1718 6575 5779| 35 34027 34027
20000 2759.952 2135.598 -10.117 34.8|5 7 10| 2478| 680 645 458 1495| 295 213 626 666| 34 3623 3623
20402 131.214 2186.466 -7.206 22.9|5 4 7| 128| 75 50 45 124| 53 32 88 50| 22 186 186
21000 348.317 2262.320 -7.641 30.4|5 4 7| 211| 147 53 185 99| 128 45 85 55| 30 400 400
21037 696.022 2268.300 -8.623 48.4|5 5 8| 747| 202 139 418 191| 219 145 120 130| 48 1063 1063
21576 1482.000 2335.000 -21.257 0.0|9 0 0|*******|102175103010103484104031|103440101220103798101909| 0 ******* *******
21696 364.188 2348.821 -8.455 28.2|5 5 8| 450| 223 129 162 243| 125 77 179 89| 28 581 581
22000 3291.196 2392.869 -10.502 36.6|5 7 10| 3476| 1723 756 1219 1455| 624 446 1164 511| 36 5289 5289
22284 358.696 2430.006 -11.326 23.4|5 10 13| 6714| 2101 4413 2608 2243| 1072 1932 1662 1475| 23 11456 11456
22870 1575.411 2510.366 -7.351 41.4|5 4 7| 163| 120 43 67 162| 74 53 145 60| 41 309 309
23000 2757.865 2527.191 -10.903 91.7|5 4 7| 4994| 1410 2331 2630 1278| 1024 1298 959 829| 91 8046 8046
23500 447.103 2591.683 -10.891 18.5|5 9 12| 4918| 1854 1315 930 2691| 592 431 1655 765| 18 7651 7651
24000 1528.814 2658.891 -9.208 32.9|5 6 9| 886| 323 544 366 460| 182 251 288 262| 32 1302 1302
24116 87.517 2673.250 -9.980 20.0|5 8 11| 1471| 514 1412 991 450| 269 1056 408 418| 19 3720 3720
24766 253.449 2753.866 -11.803 49.9|5 10 13| 9323| 7602 1319 2666 3545| 2510 536 3872 932| 49 16361 16361
25000 531.260 2781.824 -12.871 28.2|5 11 14| 29443| 16429 5639 7061 12564| 5656 1975 9734 3221| 28 47084 47084
25398 422.987 2835.340 -8.025 24.1|5 4 7| 298| 136 124 240 106| 116 109 101 67| 24 476 476
26000 2083.718 2913.299 -7.589 26.0|5 4 7| 317| 42 116 167 82| 49 92 32 59| 25 449 449
26019 315.673 2916.145 -12.128 23.7|5 11 14| 13212| 4189 9216 6360 3875| 2375 5134 3380 2575| 23 25570 25570
26578 107.359 2996.970 -7.193 22.6|5 4 7| 148| 114 39 91 72| 47 31 65 39| 22 213 213
27000 1264.151 3051.827 -10.649 30.7|5 8 11| 3579| 1688 971 1011 1776| 710 403 1211 622| 30 5321 5321
27183 346.269 3077.823 -10.902 31.3|5 9 12| 4608| 2712 898 1159 2045| 884 345 1519 549| 31 7276 7276
27781 36.703 3159.055 -9.132 24.7|5 6 9| 815| 300 532 407 308| 153 280 249 217| 24 1390 1390
28000 3538.404 3187.478 -7.091 51.8|5 3 6| 157| 123 78 148 74| 138 59 66 57| 51 269 269
28396 1230.027 3240.095 -12.363 46.5|5 10 13| 19100| 7412 5859 8563 5280| 3890 3208 4515 2575| 46 25630 25630
29000 3269.908 3320.420 -8.235 36.3|5 4 7| 420| 154 153 346 101| 140 167 123 102| 36 661 661
29004 2668.436 3320.866 -9.361 25.5|5 7 10| 1128| 961 153 309 448| 292 97 427 151| 25 2084 2084
29600 747.401 3402.398 -10.689 22.2|5 8 11| 2877| 2372 425 2569 657| 1870 402 713 270| 22 7235 7235
30000 2094.171 3455.687 -9.075 20.3|5 6 9| 915| 425 195 223 533| 130 101 355 160| 20 1543 1543
30185 563.928 3483.317 -6.897 42.0|5 3 6| 158| 87 75 115 62| 77 81 75 73| 42 185 185
30767 3281.273 3564.374 -8.296 31.6|5 5 8| 389| 275 121 339 110| 211 94 109 77| 31 822 822
31000 2665.820 3596.995 -11.307 26.8|5 10 13| 7953| 2091 3787 2661 2652| 1079 1445 1546 1346| 26 11487 11487
31353 582.046 3645.130 -7.365 21.9|5 4 7| 193| 103 74 102 73| 62 70 73 53| 21 234 234
31950 30.692 3725.878 -7.911 20.8|5 5 8| 265| 112 202 101 158| 51 87 77 93| 20 430 430
32000 3599.713 3731.718 -9.436 31.2|5 6 9| 1213| 309 753 302 729| 182 218 327 459| 31 2269 2269
32525 358.342 3806.762 -7.245 38.7|5 4 7| 204| 138 54 62 100| 63 41 103 74| 38 294 294
33000 1489.217 3874.516 -12.372 23.0|5 11 14| 15534| 7733 3257 2522 13867| 2188 818 8296 2836| 22 33083 33083
33084 533.962 3888.149 -8.831 24.4|5 5 8| 571| 220 219 373 205| 152 167 200 97| 24 864 864
33628 1379.837 3968.730 -11.381 26.4|5 9 12| 7221| 2121 3581 1498 4261| 911 940 2131 1950| 26 12344 12344
34000 1074.516 4025.922 -8.971 23.3|5 6 9| 692| 652 104 209 234| 217 64 317 70| 23 1238 1238
34170 1199.807 4049.917 -8.858 26.2|5 6 9| 637| 219 414 213 340| 170 138 180 173| 26 1038 1038
------- --------- --------- ------- ------|- -- --|-------| ----- ----- ----- -----| ----- ----- ----- -----| ------- ------- -------
NSTARS XCEN YCEN MAG SKY |M iS oS| PCEN| P02 P03 P04 P05| P06 P07 P08 P09| mSKY F2x2 F2x2-SK
------- --------- --------- ------- ------|- -- --|-------| ----- ----- ----- -----| ----- ----- ----- -----| ------- ------- -------
-----------------------------------------
FINDING STATISTICS
-----------------------------------------
Y NPIX %PIX EXPLANATION
1 28602 0.170% ..1..not on chip....
2 15256465 90.936% ..2..not loc max....
3 1264086 7.535% ..3..h < hmax.......
4 94430 0.563% ..4..flux too low...
5 0 0.000% ..5..below mask thr.
6 0 0.000% ..6..out of bounds..
7 2730 0.016% ..7..loflag issues..
8 0 0.000% ..8..saturated......
9 719 0.004% ..9..not contig sat.
10 0 0.000% .10..not loc sat max
11 0 0.000% .11..sat weirdness..
12 13874 0.083% .12..pk but not qsel
13 25 0.000% .13..pk too peaky...
14 7 0.000% .14..satd CR........
-----------------------------------------
15 33868 0.202% .15..good unsat.....
16 590 0.004% .16..good satd......
#
#
#=======================================
# LUMINOSITY FUNCTION EXTRACTED
#
# MAG LFe CUMe LFe/s CUMe/s
#-------- ----- ------ ------- ------
# LF -21 2 2 0 0
# LF -20 5 7 0 0
# LF -19 19 26 0 0
# LF -18 17 43 0 0
# LF -17 57 100 0 0
# LF -16 60 160 1 1
# LF -15 158 318 3 4
# LF -14 794 1112 10 14
# LF -13 2000 3112 20 34
# LF -12 3302 6414 45 79
# LF -11 3861 10275 51 130
# LF -10 4247 14522 103 233
# LF -9 5990 20512 382 615
# LF -8 8550 29062 1411 2026
# LF -7 5333 34395 2783 4809
# LF -6 63 34458 3769 8578
# LF -5 0 34458 4070 12648
# LF -4 0 34458 4817 17465
# LF -3 0 34458 7855 25320
# LF -2 0 34458 7648 32968
# LF -1 0 34458 1490 34458
#-------- ----- ------ ------- ------
#
NIM
---> rDAT_N: 2021.55200 1
NIM: 1 / 1
---> NLISTs = 1 jeg057chq_flt
---> NLIST = 1 NITEMs = 5 xymeq
OUTPUT LISTS...
NLISTs: 1
SETUPa--- 50
SETUPb --- 34458
--------------
FIND SPACING:
--------------
F01 (06:14) u -- u ref-frame
F02 (06:14) v -- v ref-frame
F03 (02:08) M -- instl mag (1000s)
F04 (03:11) x -- raw detector x pos
F05 (03:11) y -- raw detector y pos
F06 (02:08) m -- instl mag
F07 (02:02) k -- detector chip no
F08 (03:11) X -- dist-cor x posn
F09 (03:11) Y -- dist-cor y posn
F10 (01:02) h -- local isolation
F11 (04:08) H -- list-based isolatn
F12 (05:16) r -- RA (deg)
F13 (05:16) d -- Dec (deg)
F14 (05:16) R -- RA (deg; adjustd)
F15 (05:16) D -- Dec (deg; adjustd)
F16 (03:06) i -- peak pixel column
F17 (03:06) j -- peak pixel row
F18 (04:12) p -- peak pixel value
F19 (06:12) q -- quality of fit
F20 (07:12) c -- chisq of fit
F21 (05:14) U -- u ref-frame (corr)
F22 (05:14) V -- v ref-frame (corr)
F23 (01:01) k -- chip number
F24 (01:02) K -- chip number (w/K)
F25 (04:10) s -- sky value
F26 (04:10) S -- CTE bkgd value
F27 (04:06) n -- nsat pixels
F28 (01:10) t -- rdat observation
F29 (01:07) C -- centpix frac resid
F30 (01:06) o -- other flux
F31 (01:06) O -- max other flux
F32 (01:08) 1 -- diam=1 PBAP (1x1)
F33 (01:08) 2 -- diam=2 PBAP (2x2)
F34 (01:08) 3 -- diam=3 PBAP (3x3)
F35 (01:08) 4 -- diam=4 PBAP flux
F36 (01:08) 5 -- diam=5 PBAP flux
F37 (01:08) 6 -- diam=6 PBAP flux
F38 (01:08) 7 -- diam=7 PBAP flux
F39 (01:08) 8 -- diam=8 PBAP flux
F40 (01:08) 9 -- diam=9 PBAP flux
F41 (02:08) 0 -- PBAPsky: 5.5<r<8.5
F42 (01:10) z -- flux (can be neg)
F43 (01:08) N -- star number
F44 (02:08) w -- dist-corr inst mag
F45 (02:08) W -- w, zeropointed
F46 (01:05) e -- frac error scale
F47 (02:08) f -- central PSF value
F48 (02:08) F -- central PSF max
F49 (01:10) P -- 2x2 flux for fndng
F50 (06:10) E -- effective sky rad
*********************
***
*** NLISTs: 1
***
*********************
NLIST01: 5 jeg057chq_flt.xymeq
Note: The following floating-point exceptions are signalling: IEEE_INVALID_FLAG IEEE_DIVIDE_BY_ZERO IEEE_DENORMAL
------------------------------------------------
ARG0000: ./hst1pass.e
ARG0001: HMIN=5
ARG0002: FMIN=150
ARG0003: PSF=STDPSF_ACSWFC_F606W_SM4.fits
ARG0004: PERT=1
ARG0005: OUT=xymeq
ARG0006: p16380/jeg057cjq_flt.fits
----------------------------------------------
OUTPUT FROM PROGRAM hst1pass: ./hst1pass.e
HMIN: 5
FMIN: 150.0
PSFFILEI: STDPSF_ACSWFC_F606W_SM4.fits
GDCFILEI: NONE
DOAPPHOT: F
DOSATD: T
NPERTs: 1
WCSMODE: AUTO
PMAX: **********
KSEL: 0
QMAX: 0.500
CMIN: -1.000
CMAX: 0.250
NIMs: 001
NIM00001 p16380/jeg057cjq_flt.fits
NIMa: 1
NIMb: 1
NIMs: 1
----------------------------------------------
NIM001 CALL sub_hst2ym on image p16380/jeg057cjq_flt.fits
ENTER sub_hst2xym --
FILENAME: p16380/jeg057cjq_flt.fits
FILENAMu: p16380/jeg057cjq_flt.fits
VERBOSE : 1
HMIN : 5
FMIN : 150
IMIN/MAX: -9999 9999
JMIN/MAX: -9999 9999
DOSATD : T
ARTSTARs: 0
LSTSTARs: 0
GDC_INP : NONE
PSF_INP : STDPSF_ACSWFC_F606W_SM4.fits
WCSMODE : AUTO
SHOW_USE: -
SHOW_FND: -
SHOW_REF: -
SHOW_SUB: -
SHOW_ART: -
SHOW_MSK: -
DQ_MASK---
SMIN: 10.00
SMAX: 1000.00
LVL: 0.00
FLAG: 0
DOAPPHOT: F
STEMu : jeg057cjq
FILTu : F606W
PROPu : 16380
RDATu : 2021.55201
INSTRUME: 'ACS '
DETECTOR: 'WFC'
FLASHSTA: 'NOT PERFORMED '
FLSHCORR: 'OMIT '
SHUTRPOS: B
FLASHCUR: O
FLASHDUR: 0.0
FLASHLVL: 0.0
DARKTIME: 153.2
DARKEST : 1.8
PSFFILE : STDPSF_ACSWFC_F606W_SM4.fits
GDCFILE : NONE
DOSATD : T
HIFLAG : 76000
IDENTIFY SATURATED STARS
CALL peak_sat_NAXIS 76000
LLAC peak_sat_NAXIS 76000
GET FLUXES FOR SATURATED STARS
PSFFILE_USE: STDPSF_ACSWFC_F606W_SM4.fits
----- ---- ---- ------ ------ ------------ ------ ------ ------
LIST I J MAG SKY FLUX NSAT NAP PSFTOT
----- ---- ---- ------ ------ ------------ ------ ------ ------
00001 2771 0013 -13.97 26.2 386213.2 1 25 0.9087
00002 2442 0019 -14.09 31.8 432900.7 1 25 0.9096
00003 3737 0021 -16.58 45.7 4298325.0 40 154 0.9943
00004 0065 0025 -14.51 39.2 637780.4 1 25 0.8994
00005 0835 0028 -14.32 24.5 532823.2 2 30 0.9096
00006 3238 0028 -16.16 51.8 2903898.5 27 115 0.9916
00007 3877 0029 -14.72 38.2 770076.1 3 40 0.9490
00008 3987 0034 -14.30 38.1 526871.3 1 30 0.9170
00009 3558 0038 -18.80 160.9 33030586.0 340 836 1.0184
00010 3366 0040 -14.17 50.3 466140.7 1 25 0.9082
00013 0251 0053 -18.84 173.3 34426968.0 318 778 1.0167
00020 0187 0090 -18.69 150.6 29861326.0 279 701 1.0208
00030 3306 0134 -13.88 44.3 355387.4 0 25 0.9090
00040 2880 0227 -14.31 34.6 531552.6 2 30 0.9182
00050 3692 0281 -14.24 43.1 498258.8 1 30 0.9176
00059 3496 0313 -19.32 240.7 53407532.0 547 1503 1.0190
00060 0213 0316 -14.49 24.7 623964.4 2 30 0.9136
00070 3575 0365 -14.37 57.5 558014.8 2 30 0.9174
00080 0770 0407 -13.85 25.3 346845.4 1 25 0.9058
00090 3767 0445 -14.37 44.2 559948.6 1 30 0.9251
00100 3291 0481 -15.15 39.1 1146961.9 7 55 0.9688
00116 2794 0534 -20.56 557.4 166800144.0 1702 4494 1.0256
00200 1068 0930 -13.95 29.5 379538.9 1 25 0.9111
00300 3174 1703 -14.28 31.7 514089.4 1 25 0.9084
00397 1482 2335 -21.26 767.4 318869952.0 2940 6568 1.0344
00400 0109 2356 -15.64 30.1 1809652.4 13 64 0.9748
00500 0539 3127 -15.76 27.0 2014976.5 16 70 0.9756
00600 3266 3943 -14.75 31.0 791116.4 4 36 0.9429
----- ---- ---- ------ ------ ------------ ------ ------ ------
LIST I J MAG SKY FLUX NSAT NAP PSFTOT
----- ---- ---- ------ ------ ------------ ------ ------ ------
MEASURED SATd STARS: 608 BRIGHTEST: L0397 1482 2335 -21.26
HISTMODE: 25.59
PSFFILE_INP: STDPSF_ACSWFC_F606W_SM4.fits
PSFFILE_PRT: jeg057cjq_psf.fits
CALL FIND_PSFPERT -- 1x1
CENPERT : 1
1 0.0061
NOW, GO THROUGH IMAGE AND FIND STARS
------- --------- --------- ------- ------|- -- --|-------| ----- ----- ----- -----| ----- ----- ----- -----| ------- ------- -------
NSTARS XCEN YCEN MAG SKY |M iS oS| PCEN| P02 P03 P04 P05| P06 P07 P08 P09| mSKY F2x2 F2x2-SK
------- --------- --------- ------- ------|- -- --|-------| ----- ----- ----- -----| ----- ----- ----- -----| ------- ------- -------
1 671.390 5.977 -6.607 22.3|5 3 6| 107| 87 32 62 59| 39 18 49 39| 22 158 158
2 1498.091 6.436 -12.919 33.8|5 11 14| 26307| 12666 7849 23805 5139| 10391 7850 4225 2723| 33 51747 51747
28 773.564 7.883 -12.940 27.6|5 11 14| 26158| 7207 24027 8350 12328| 3649 7600 7080 10044| 27 51967 51967
30 1418.138 8.150 -13.186 30.7|5 11 14| 41033| 19586 11062 19484 10581| 10402 6798 7662 4454| 30 62731 62731
88 2771.111 12.708 -13.967 39.5|9 0 0| 386213| 37052 22033 22274 51624| 13606 8506 27690 15085| 39 502478 502478
145 2442.038 19.233 -14.091 49.3|9 0 0| 432900| 39319 32290 65045 26615| 23497 18925 15658 10468| 49 560660 560660
172 3736.689 20.894 -16.583 216.3|9 0 0|4298325| 84791 84064 82700 82914| 82831 82974 83065 83053| 216 4548994 4548994
339 3557.838 37.585 -18.797 876.1|9 0 0|*******| 87034 84816 86368 86729| 87740 85104 87638 85423| 876 ******* *******
484 250.620 54.067 -18.842 852.7|9 0 0|*******| 98734 96468 98454 97865| 96996 96854 97350 97007| 852 ******* *******
786 114.024 80.865 -12.328 43.1|5 10 13| 18297| 7027 6381 5072 8034| 3439 2678 5146 3049| 43 24929 24929
1000 2929.287 100.875 -7.674 22.7|5 4 7| 266| 182 73 98 122| 64 51 99 78| 22 407 407
1667 279.616 162.591 -7.029 25.8|5 4 7| 122| 60 86 111 30| 60 106 42 37| 25 236 236
2000 4034.631 191.558 -11.226 49.9|5 8 11| 5077| 1334 3905 1347 4570| 626 1132 1404 3321| 49 12816 12816
2524 541.051 243.175 -6.828 25.1|5 3 6| 142| 69 54 81 47| 55 42 62 44| 25 170 170
3000 3758.073 285.815 -11.039 33.4|5 7 10| 6221| 2256 1695 1619 2913| 1027 694 1539 1065| 33 9002 9002
3288 3495.669 313.038 -19.319 894.8|9 0 0|*******| 83399 82406 83564 83951| 83228 82193 82746 82904| 894 ******* *******
3386 20.035 323.777 -8.525 18.1|5 6 9| 513| 214 177 136 292| 114 77 176 131| 18 754 754
4000 3591.495 384.306 -7.203 46.5|5 3 6| 165| 80 162 131 74| 62 129 65 86| 46 297 297
4209 424.024 404.756 -8.954 29.5|5 6 9| 842| 306 297 195 447| 166 112 264 158| 29 1181 1181
5000 2918.360 481.216 -11.662 40.6|5 8 11| 9694| 6739 1578 5081 2051| 3761 1045 1908 764| 40 19207 19207
5050 194.573 485.946 -7.024 20.1|5 4 7| 153| 49 123 52 54| 32 58 47 65| 20 229 229
5522 2794.000 534.000 -20.555 0.0|9 0 0|*******| 89971 84477 87963 87940| 88284 84436 88453 84303| 0 ******* *******
5827 1024.640 566.632 -8.062 58.7|5 3 6| 444| 88 275 81 301| 76 104 95 237| 58 906 906
6000 1968.748 582.712 -9.806 30.7|5 7 10| 1802| 419 1060 390 1123| 231 326 457 624| 30 3506 3506
6694 1069.649 648.200 -11.114 26.3|5 9 12| 5841| 1453 4126 2761 1382| 936 2183 1018 940| 26 11462 11462
7000 263.907 677.066 -10.246 18.6|5 8 11| 2877| 938 1167 1021 886| 548 563 578 431| 18 3808 3808
7549 1293.435 728.767 -11.824 27.0|5 10 13| 10337| 8471 1388 2367 5327| 2347 671 4925 1004| 26 22174 22174
8000 57.477 771.134 -7.813 26.9|5 4 7| 234| 232 69 130 92| 131 44 113 53| 26 424 424
8350 370.210 809.636 -9.330 21.9|5 7 10| 997| 562 263 255 760| 216 110 491 186| 21 1961 1961
9000 1627.620 874.112 -7.410 34.3|5 3 6| 213| 83 176 105 103| 56 97 66 78| 34 321 321
9160 475.471 891.415 -8.993 27.7|5 5 8| 581| 529 124 499 121| 424 99 160 76| 27 1340 1340
9958 488.927 971.618 -8.186 24.1|5 5 8| 394| 152 167 109 317| 74 70 128 148| 24 709 709
10000 1176.705 975.723 -6.912 16.0|5 3 6| 127| 52 89 33 82| 19 48 51 59| 16 213 213
10724 842.220 1052.994 -11.206 25.1|5 10 13| 7780| 3675 1247 2183 2401| 1433 598 1564 700| 25 11058 11058
11000 137.115 1083.292 -11.368 26.8|5 10 13| 6862| 3061 1928 3842 1485| 1882 1347 1276 666| 26 9552 9552
11483 609.834 1133.737 -11.434 27.4|5 8 11| 8055| 2194 3859 1892 5116| 982 1037 2085 2245| 27 14655 14655
12000 3925.250 1189.408 -7.854 38.4|5 4 7| 345| 166 72 233 91| 179 72 73 47| 38 611 611
12235 334.748 1214.740 -8.005 17.3|5 5 8| 335| 96 193 81 237| 75 77 88 124| 17 641 641
12956 536.807 1296.070 -12.480 22.4|5 11 14| 23505| 6407 11352 8034 6333| 3472 4756 4185 3487| 22 34995 34995
13000 2041.124 1300.875 -10.020 124.0|5 4 7| 2149| 1128 643 714 1023| 547 443 714 555| 124 3014 3014
13686 228.956 1377.354 -9.963 21.2|5 8 11| 2045| 724 710 1312 390| 551 534 306 208| 21 3257 3257
14000 2426.218 1414.083 -9.133 33.9|5 5 8| 1041| 542 228 446 356| 285 167 263 126| 33 1504 1504
14419 120.217 1457.765 -11.698 25.3|5 10 13| 9489| 5062 2154 2292 5341| 1739 827 3674 1327| 25 16727 16727
15000 3832.126 1520.086 -7.886 38.9|5 4 7| 329| 167 124 169 142| 131 88 108 87| 38 400 400
15158 970.665 1539.145 -8.183 22.5|5 5 8| 377| 101 261 171 138| 92 162 91 93| 22 620 620
15896 751.291 1620.482 -9.206 20.7|5 7 10| 837| 523 151 740 140| 474 168 156 75| 20 1861 1861
16000 1632.744 1629.678 -7.551 33.2|5 4 7| 194| 86 126 109 169| 65 89 80 103| 33 295 295
16618 688.500 1701.381 -7.822 25.7|5 5 8| 233| 114 207 191 78| 94 150 64 72| 25 478 478
17000 1644.512 1744.473 -8.421 79.6|5 4 7| 370| 166 338 350 174| 173 348 139 198| 79 724 724
17312 111.239 1781.609 -12.486 26.1|5 11 14| 17257| 9178 4152 3573 13561| 3232 1136 8558 3048| 26 34583 34583
18000 1288.993 1861.575 -7.423 53.8|5 3 6| 196| 87 95 120 194| 88 89 117 102| 53 235 235
18010 83.846 1862.922 -11.463 21.3|5 10 13| 8006| 2603 4057 2366 3508| 1279 1396 1921 1560| 21 12032 12032
18681 457.746 1943.682 -7.522 27.8|5 4 7| 181| 77 149 98 172| 58 71 65 94| 27 372 372
19000 3089.533 1983.224 -11.662 44.2|5 9 12| 8275| 2109 8019 4379 2281| 1505 4178 1347 1898| 44 18721 18721
19351 747.197 2024.562 -8.705 58.5|5 4 7| 755| 203 88 199 483| 160 80 258 107| 58 1045 1045
19896 628.878 2105.586 -12.484 35.8|5 10 13| 19024| 5833 8711 3722 13595| 2228 1799 6404 6227| 35 35110 35110
20000 1241.644 2119.881 -8.170 42.7|5 3 6| 272| 132 244 150 167| 113 137 135 185| 42 419 419
20526 131.259 2186.561 -7.119 26.0|5 4 7| 146| 86 43 61 123| 32 36 75 37| 25 216 216
21000 3733.118 2246.793 -9.506 25.2|5 7 10| 1604| 570 340 490 661| 250 131 421 244| 25 2224 2224
21146 965.907 2267.972 -11.360 40.1|5 9 12| 6765| 2420 2672 2660 2257| 1225 1240 1855 1438| 40 8608 8608
21686 1482.000 2335.000 -21.259 0.0|9 0 0|*******|102284103135103526104142|103575101175103815101967| 0 ******* *******
21798 364.114 2348.893 -8.477 25.8|5 5 8| 474| 207 152 189 214| 120 72 169 108| 25 523 523
22000 100.201 2377.908 -8.351 33.0|5 4 7| 725| 295 76 171 193| 84 64 148 55| 32 1004 1004
22392 358.627 2430.023 -11.331 18.6|5 10 13| 6417| 1933 4878 2577 2194| 1022 2089 1663 1534| 18 11739 11739
22973 1575.488 2510.379 -7.331 43.7|5 4 7| 167| 126 52 58 141| 51 54 150 68| 43 297 297
23000 3228.208 2513.876 -7.107 29.9|5 3 6| 178| 104 50 107 98| 47 40 71 67| 29 219 219
23606 447.045 2591.672 -10.898 21.3|5 10 13| 4947| 1718 1449 980 2820| 564 494 1558 900| 21 7465 7465
24000 2284.913 2645.742 -8.330 25.9|5 5 8| 490| 157 200 132 268| 87 85 139 137| 25 696 696
24219 87.431 2673.244 -9.995 19.0|5 8 11| 1544| 1288 224 1178 450| 959 149 498 187| 18 3746 3746
24860 253.377 2753.866 -11.799 51.4|5 10 13| 9882| 7034 1564 2765 3808| 2480 645 3691 1065| 51 16344 16344
25000 2678.829 2771.825 -7.852 33.7|5 4 7| 339| 118 185 105 175| 76 82 97 101| 33 484 484
25493 422.960 2835.200 -8.100 26.3|5 4 7| 367| 129 139 229 148| 93 114 96 64| 26 545 545
26000 1004.773 2899.495 -6.933 21.5|5 3 6| 114| 51 86 30 104| 19 24 55 71| 21 235 235
26115 315.615 2916.147 -12.124 21.0|5 11 14| 12755| 4007 9757 6138 3745| 2162 5678 3253 2757| 21 26005 26005
26668 107.165 2997.072 -7.224 20.9|5 4 7| 162| 81 42 86 88| 69 51 65 44| 20 188 188
27000 1285.787 3040.804 -8.119 44.4|5 4 7| 364| 142 234 129 228| 83 124 151 131| 44 519 519
27277 346.211 3077.836 -10.887 31.3|5 9 12| 4812| 2402 1005 1282 2001| 813 354 1463 602| 31 7076 7076
27879 36.617 3159.069 -9.096 26.3|5 6 9| 723| 260 587 367 298| 158 334 228 237| 26 1376 1376
28000 2534.168 3174.851 -7.204 51.8|5 3 6| 198| 156 94 107 122| 74 85 92 87| 51 235 235
28493 1229.981 3240.115 -12.351 50.5|5 10 13| 18527| 6884 6317 8769 4996| 3804 3619 4534 2773| 50 26146 26146
29000 4025.290 3305.974 -10.948 35.2|5 9 12| 4941| 3094 966 1972 1809| 1293 541 1501 552| 35 7743 7743
29106 2668.378 3320.879 -9.329 26.9|5 7 10| 1187| 855 193 340 439| 280 93 456 137| 26 2091 2091
29690 747.348 3402.410 -10.713 21.1|5 9 12| 3105| 2217 477 2821 711| 1823 442 751 313| 21 7435 7435
30000 802.594 3443.471 -11.313 24.9|5 9 12| 4791| 1810 3655 4783 1305| 1387 4052 1215 1061| 24 13222 13222
30278 590.890 3482.681 -12.913 56.2|5 11 14| 29710| 8887 12891 5452 18704| 3623 3134 9009 7550| 56 50498 50498
30869 2917.588 3563.499 -11.358 70.5|5 8 11| 5394| 1368 4493 1138 5272| 684 840 1688 4144| 70 14876 14876
31000 3751.873 3582.377 -10.788 25.1|5 8 11| 3923| 1285 1695 3312 904| 1032 1507 782 518| 25 7828 7828
31460 582.046 3645.106 -7.479 23.2|5 4 7| 231| 106 83 121 91| 77 58 61 51| 23 303 303
32000 3624.684 3717.500 -12.823 31.8|5 9 12| 21125| 5897 14903 4571 20832| 2548 3272 6856 13602| 31 53865 53865
32056 30.653 3725.867 -7.839 22.3|5 5 8| 237| 99 216 96 136| 58 79 91 102| 22 418 418
32627 358.256 3806.799 -7.317 39.3|5 3 6| 200| 126 77 70 116| 83 34 91 51| 39 238 238
33000 4067.432 3859.346 -13.751 47.3|5 10 13| 47509| 42566 9206 38006 11794| 31583 7573 15243 4486| 47 118126 118126
33193 533.890 3888.254 -8.812 25.4|5 5 8| 574| 197 239 443 169| 140 212 158 117| 25 1038 1038
33732 1379.794 3968.757 -11.381 22.6|5 9 12| 7136| 2092 3867 1580 3985| 879 1067 2007 2080| 22 12359 12359
34000 2672.368 4007.599 -9.610 17.6|5 7 10| 1170| 909 214 232 968| 234 90 720 188| 17 2812 2812
34279 1199.786 4049.957 -8.873 27.5|5 6 9| 640| 226 419 234 305| 164 151 189 172| 27 955 955
------- --------- --------- ------- ------|- -- --|-------| ----- ----- ----- -----| ----- ----- ----- -----| ------- ------- -------
NSTARS XCEN YCEN MAG SKY |M iS oS| PCEN| P02 P03 P04 P05| P06 P07 P08 P09| mSKY F2x2 F2x2-SK
------- --------- --------- ------- ------|- -- --|-------| ----- ----- ----- -----| ----- ----- ----- -----| ------- ------- -------
-----------------------------------------
FINDING STATISTICS
-----------------------------------------
Y NPIX %PIX EXPLANATION
1 28602 0.170% ..1..not on chip....
2 15248826 90.890% ..2..not loc max....
3 1271596 7.579% ..3..h < hmax.......
4 98585 0.588% ..4..flux too low...
5 0 0.000% ..5..below mask thr.
6 0 0.000% ..6..out of bounds..
7 2810 0.017% ..7..loflag issues..
8 0 0.000% ..8..saturated......
9 723 0.004% ..9..not contig sat.
10 0 0.000% .10..not loc sat max
11 0 0.000% .11..sat weirdness..
12 9657 0.058% .12..pk but not qsel
13 24 0.000% .13..pk too peaky...
14 4 0.000% .14..satd CR........
-----------------------------------------
15 33975 0.203% .15..good unsat.....
16 594 0.004% .16..good satd......
#
#
#=======================================
# LUMINOSITY FUNCTION EXTRACTED
#
# MAG LFe CUMe LFe/s CUMe/s
#-------- ----- ------ ------- ------
# LF -21 2 2 0 0
# LF -20 5 7 0 0
# LF -19 19 26 0 0
# LF -18 17 43 0 0
# LF -17 57 100 0 0
# LF -16 60 160 1 1
# LF -15 158 318 3 4
# LF -14 798 1116 10 14
# LF -13 1991 3107 20 34
# LF -12 3299 6406 45 79
# LF -11 3889 10295 51 130
# LF -10 4184 14479 103 233
# LF -9 5896 20375 381 614
# LF -8 8620 28995 1411 2025
# LF -7 5507 34502 2778 4803
# LF -6 67 34569 3784 8587
# LF -5 0 34569 4052 12639
# LF -4 0 34569 4765 17404
# LF -3 0 34569 7800 25204
# LF -2 0 34569 7845 33049
# LF -1 0 34569 1520 34569
#-------- ----- ------ ------- ------
#
NIM
---> rDAT_N: 2021.55200 1
NIM: 1 / 1
---> NLISTs = 1 jeg057cjq_flt
---> NLIST = 1 NITEMs = 5 xymeq
OUTPUT LISTS...
NLISTs: 1
SETUPa--- 50
SETUPb --- 34569
--------------
FIND SPACING:
--------------
F01 (06:14) u -- u ref-frame
F02 (06:14) v -- v ref-frame
F03 (02:08) M -- instl mag (1000s)
F04 (03:11) x -- raw detector x pos
F05 (03:11) y -- raw detector y pos
F06 (02:08) m -- instl mag
F07 (02:02) k -- detector chip no
F08 (03:11) X -- dist-cor x posn
F09 (03:11) Y -- dist-cor y posn
F10 (01:02) h -- local isolation
F11 (04:08) H -- list-based isolatn
F12 (05:16) r -- RA (deg)
F13 (05:16) d -- Dec (deg)
F14 (05:16) R -- RA (deg; adjustd)
F15 (05:16) D -- Dec (deg; adjustd)
F16 (03:06) i -- peak pixel column
F17 (03:06) j -- peak pixel row
F18 (04:12) p -- peak pixel value
F19 (08:12) q -- quality of fit
F20 (07:12) c -- chisq of fit
F21 (05:14) U -- u ref-frame (corr)
F22 (05:14) V -- v ref-frame (corr)
F23 (01:01) k -- chip number
F24 (01:02) K -- chip number (w/K)
F25 (04:10) s -- sky value
F26 (04:10) S -- CTE bkgd value
F27 (04:06) n -- nsat pixels
F28 (01:10) t -- rdat observation
F29 (01:07) C -- centpix frac resid
F30 (01:06) o -- other flux
F31 (01:06) O -- max other flux
F32 (01:08) 1 -- diam=1 PBAP (1x1)
F33 (01:08) 2 -- diam=2 PBAP (2x2)
F34 (01:08) 3 -- diam=3 PBAP (3x3)
F35 (01:08) 4 -- diam=4 PBAP flux
F36 (01:08) 5 -- diam=5 PBAP flux
F37 (01:08) 6 -- diam=6 PBAP flux
F38 (01:08) 7 -- diam=7 PBAP flux
F39 (01:08) 8 -- diam=8 PBAP flux
F40 (01:08) 9 -- diam=9 PBAP flux
F41 (01:08) 0 -- PBAPsky: 5.5<r<8.5
F42 (01:10) z -- flux (can be neg)
F43 (01:08) N -- star number
F44 (02:08) w -- dist-corr inst mag
F45 (02:08) W -- w, zeropointed
F46 (01:05) e -- frac error scale
F47 (02:08) f -- central PSF value
F48 (02:08) F -- central PSF max
F49 (01:10) P -- 2x2 flux for fndng
F50 (06:10) E -- effective sky rad
*********************
***
*** NLISTs: 1
***
*********************
NLIST01: 5 jeg057cjq_flt.xymeq
Note: The following floating-point exceptions are signalling: IEEE_INVALID_FLAG IEEE_DIVIDE_BY_ZERO IEEE_DENORMAL
------------------------------------------------
ARG0000: ./hst1pass.e
ARG0001: HMIN=5
ARG0002: FMIN=150
ARG0003: PSF=STDPSF_ACSWFC_F606W_SM4.fits
ARG0004: PERT=1
ARG0005: OUT=xymeq
ARG0006: p16380/jeg057cmq_flt.fits
----------------------------------------------
OUTPUT FROM PROGRAM hst1pass: ./hst1pass.e
HMIN: 5
FMIN: 150.0
PSFFILEI: STDPSF_ACSWFC_F606W_SM4.fits
GDCFILEI: NONE
DOAPPHOT: F
DOSATD: T
NPERTs: 1
WCSMODE: AUTO
PMAX: **********
KSEL: 0
QMAX: 0.500
CMIN: -1.000
CMAX: 0.250
NIMs: 001
NIM00001 p16380/jeg057cmq_flt.fits
NIMa: 1
NIMb: 1
NIMs: 1
----------------------------------------------
NIM001 CALL sub_hst2ym on image p16380/jeg057cmq_flt.fits
ENTER sub_hst2xym --
FILENAME: p16380/jeg057cmq_flt.fits
FILENAMu: p16380/jeg057cmq_flt.fits
VERBOSE : 1
HMIN : 5
FMIN : 150
IMIN/MAX: -9999 9999
JMIN/MAX: -9999 9999
DOSATD : T
ARTSTARs: 0
LSTSTARs: 0
GDC_INP : NONE
PSF_INP : STDPSF_ACSWFC_F606W_SM4.fits
WCSMODE : AUTO
SHOW_USE: -
SHOW_FND: -
SHOW_REF: -
SHOW_SUB: -
SHOW_ART: -
SHOW_MSK: -
DQ_MASK---
SMIN: 10.00
SMAX: 1000.00
LVL: 0.00
FLAG: 0
DOAPPHOT: F
STEMu : jeg057cmq
FILTu : F606W
PROPu : 16380
RDATu : 2021.55203
INSTRUME: 'ACS '
DETECTOR: 'WFC'
FLASHSTA: 'NOT PERFORMED '
FLSHCORR: 'OMIT '
SHUTRPOS: B
FLASHCUR: O
FLASHDUR: 0.0
FLASHLVL: 0.0
DARKTIME: 153.2
DARKEST : 1.8
PSFFILE : STDPSF_ACSWFC_F606W_SM4.fits
GDCFILE : NONE
DOSATD : T
HIFLAG : 76000
IDENTIFY SATURATED STARS
CALL peak_sat_NAXIS 76000
LLAC peak_sat_NAXIS 76000
GET FLUXES FOR SATURATED STARS
PSFFILE_USE: STDPSF_ACSWFC_F606W_SM4.fits
----- ---- ---- ------ ------ ------------ ------ ------ ------
LIST I J MAG SKY FLUX NSAT NAP PSFTOT
----- ---- ---- ------ ------ ------------ ------ ------ ------
00001 2596 0025 -14.83 342.3 857975.2 0 25 0.9092
00002 2592 0026 -15.07 323.8 1067338.5 0 30 0.9176
00003 2580 0027 -15.01 304.4 1006672.6 4 36 0.9272
00004 3298 0029 -18.37 468.9 22335074.0 230 486 1.0243
00005 2625 0039 -18.33 436.9 21567450.0 219 479 1.0251
00006 1481 0046 -17.39 190.7 9042329.0 67 242 0.9970
00007 1719 0062 -14.76 166.3 800782.9 0 25 0.9069
00008 1707 0063 -14.88 169.5 897371.4 2 30 0.9149
00009 3541 0063 -14.29 476.1 519753.3 0 25 0.9074
00010 3699 0074 -14.34 407.1 544192.9 0 25 0.9075
00020 3642 0148 -15.16 555.1 1155087.6 3 45 0.9434
00030 3659 0159 -18.06 488.2 16708943.0 1 25 0.9078
00033 3653 0162 -18.51 492.0 25343814.0 1 30 0.9219
00034 3652 0163 -18.65 491.8 28839240.0 2 30 0.9162
00035 3648 0165 -18.77 506.9 32099204.0 3 45 0.9445
00036 3646 0166 -18.90 513.5 36333672.0 2 25 0.9079
00037 3644 0167 -19.03 519.8 40976476.0 1 25 0.9079
00038 3642 0168 -19.16 524.7 46117936.0 1 25 0.9079
00040 3641 0169 -19.28 527.4 51494788.0 1 30 0.9162
00042 3639 0170 -19.40 529.7 57365940.0 2 30 0.9162
00044 3636 0171 -19.51 536.4 63396944.0 4 30 0.9219
00045 3635 0172 -19.62 538.5 70391584.0 5 30 0.9162
00046 3632 0173 -19.72 548.3 77536552.0 4 30 0.9219
00047 3631 0174 -19.84 553.1 86390832.0 2 25 0.9079
00048 3630 0175 -20.64 553.0 179983696.0 2 30 0.9162
00050 3625 0177 -15.77 552.5 2036846.5 2 25 0.9079
00060 3611 0184 -16.86 539.3 5536659.5 2 25 0.9080
00070 3596 0192 -16.29 521.8 3268683.0 2 30 0.9163
00080 3578 0201 -16.88 549.4 5634741.5 1 25 0.9082
00090 3554 0213 -16.21 580.8 3033911.2 1 25 0.9083
00100 3534 0223 -18.38 618.6 22562198.0 1 30 0.9167
00200 0896 0539 -17.43 211.8 9409082.0 5 30 0.9153
00236 0825 0575 -20.67 287.2 184502544.0 6 30 0.9147
00300 3276 0778 -14.65 288.6 723768.3 1 25 0.9120
00400 2936 0948 -20.65 424.1 181251744.0 3 30 0.9257
00401 2935 0949 -20.72 429.6 194751792.0 5 40 0.9377
00477 2557 1097 -20.81 462.6 210513664.0 4 30 0.9261
00478 2555 1098 -20.90 461.3 228449424.0 4 30 0.9261
00479 2554 1099 -21.00 459.7 250113568.0 3 30 0.9176
00480 2552 1100 -21.09 460.3 273691232.0 1 30 0.9176
00481 2550 1101 -21.20 462.5 301679328.0 1 25 0.9100
00482 2547 1102 -21.29 472.0 326830080.0 3 30 0.9261
00483 2545 1103 -21.37 477.6 354005824.0 3 30 0.9261
00484 2544 1104 -21.48 480.6 389961600.0 2 25 0.9100
00485 2541 1105 -21.56 489.9 422163616.0 1 30 0.9261
00486 2539 1106 -21.65 490.2 456934112.0 1 30 0.9261
00487 2538 1107 -21.75 487.3 503063680.0 2 25 0.9100
00488 2536 1108 -21.86 491.0 553757504.0 3 25 0.9100
00489 2534 1109 -21.95 497.6 604575808.0 3 30 0.9176
00490 2532 1110 -22.06 503.2 665282240.0 3 25 0.9100
00491 2530 1111 -22.16 511.7 731989056.0 3 25 0.9100
00492 2528 1112 -22.26 519.5 805302720.0 2 25 0.9100
00493 2526 1113 -22.37 531.1 885855168.0 1 25 0.9100
00494 2524 1114 -22.47 547.0 974370688.0 2 25 0.9100
00495 2521 1115 -22.56 560.5 1053095424.0 2 30 0.9262
00496 2520 1116 -22.66 566.6 1158167552.0 2 25 0.9100
00497 2517 1117 -22.74 580.6 1251545984.0 2 30 0.9262
00498 2516 1118 -22.85 582.4 1376293248.0 2 25 0.9100
00500 2514 1119 -22.95 585.3 1513372800.0 2 25 0.9100
00501 2512 1120 -23.05 587.7 1663984256.0 3 25 0.9100
00502 2510 1121 -23.16 587.6 1829476096.0 3 25 0.9100
00504 2508 1122 -23.26 587.2 2011330304.0 3 25 0.9100
00506 2506 1123 -23.36 589.5 2211191552.0 3 25 0.9100
00508 2504 1124 -23.46 592.2 2430850560.0 3 25 0.9100
00509 2502 1125 -23.57 592.0 2672252416.0 3 25 0.9100
00510 2500 1126 -23.67 592.1 2937551104.0 3 25 0.9100
00511 2499 1127 -23.76 592.3 3202549504.0 3 30 0.9176
00512 2497 1128 -23.86 595.5 3491398912.0 4 30 0.9176
00513 2495 1129 -23.95 601.0 3806204160.0 5 30 0.9176
00514 2493 1130 -24.04 606.9 4149262336.0 5 30 0.9176
00515 2491 1131 -24.14 614.6 4523082752.0 4 30 0.9176
00516 2489 1132 -24.23 625.2 4930469376.0 3 30 0.9176
00517 2486 1133 -24.32 647.5 5323822592.0 3 30 0.9263
00518 2485 1134 -24.41 652.2 5803243008.0 3 30 0.9176
00600 2502 1507 -15.80 199.0 2092070.0 8 61 0.9630
00700 1341 2173 -18.90 335.2 36246844.0 351 644 1.0348
00800 0325 2467 -18.00 251.3 15863934.0 5 25 0.8914
00900 2407 3079 -16.14 250.4 2870142.5 6 30 0.9295
01000 3942 3349 -15.43 462.4 1491662.2 1 30 0.9111
01100 0717 3550 -17.55 402.6 10441952.0 3 25 0.8981
----- ---- ---- ------ ------ ------------ ------ ------ ------
LIST I J MAG SKY FLUX NSAT NAP PSFTOT
----- ---- ---- ------ ------ ------------ ------ ------ ------
MEASURED SATd STARS: 1161 BRIGHTEST: L0518 2485 1134 -24.41
HISTMODE: 112.57
PSFFILE_INP: STDPSF_ACSWFC_F606W_SM4.fits
PSFFILE_PRT: jeg057cmq_psf.fits
CALL FIND_PSFPERT -- 1x1
CENPERT : 1
1 0.0000
NOW, GO THROUGH IMAGE AND FIND STARS
------- --------- --------- ------- ------|- -- --|-------| ----- ----- ----- -----| ----- ----- ----- -----| ------- ------- -------
NSTARS XCEN YCEN MAG SKY |M iS oS| PCEN| P02 P03 P04 P05| P06 P07 P08 P09| mSKY F2x2 F2x2-SK
------- --------- --------- ------- ------|- -- --|-------| ----- ----- ----- -----| ----- ----- ----- -----| ------- ------- -------
1 1229.450 6.403 -11.306 174.3|5 5 8| 3616| 2431 3499 2929 1113| 1854 3310 936 977| 174 6433 6433
6 3206.213 5.540 -11.496 413.0|5 5 8| 5018| 3443 3617 1692 4554| 1546 1280 3944 3079| 413 8305 8305
9 3475.336 6.670 -12.111 587.2|5 5 8| 10818| 7828 6268 3332 6418| 2696 2426 6195 3597| 587 15629 15629
17 833.230 8.819 -12.927 320.2|5 6 9| 20808| 15134 12988 6557 9837| 5392 4961 9899 5489| 320 27098 27098
21 1894.201 9.176 -13.772 248.4|5 7 10| 43498| 32942 26239 25260 11836| 17460 17836 12126 7276| 248 65820 65820
41 3085.740 11.950 -14.034 351.4|5 7 10| 54183| 36716 44938 21650 22680| 14633 19417 20313 16013| 351 77239 77239
77 3234.297 18.779 -14.172 487.4|5 6 9| 66396| 47992 37948 21766 33385| 17298 14641 31199 17792| 487 91297 91297
110 2591.769 25.629 -15.071 676.8|9 0 0|1067338| 70387 73422 51734 64165| 22974 31771 58874 48118| 676 1260316 1260316
124 3297.658 38.990 -18.372 928.3|9 0 0|*******| 85845 85624 82700 83655| 84821 86587 84925 87027| 928 ******* *******
405 361.360 80.935 -10.660 79.2|5 6 9| 2587| 2178 1325 1035 1028| 941 662 1127 528| 79 3215 3215
805 38.588 161.987 -11.239 286.3|5 5 8| 4112| 3214 3584 1852 1925| 1552 1739 1794 1550| 286 4537 4537
878 3630.000 175.000 -20.638 787.2|9 0 0|*******| 45263 72597 28348 70399| 17709 50254****** 43416| 787 ******* *******
1000 3541.369 198.455 -10.744 366.7|5 4 7| 2639| 2237 1557 2403 819| 2002 1584 956 652| 366 3731 3731
1242 123.704 243.231 -11.441 249.9|5 6 9| 4445| 3949 3452 2789 1503| 2385 2486 1638 1262| 249 5983 5983
1682 2206.664 323.762 -14.792 364.7|9 0 0| 826004| 70724 76405 37072 68232| 24688 43699 41388 39653| 364 1009845 1009845
2000 2082.599 387.305 -9.721 203.1|5 4 7| 1275| 1044 1046 875 450| 633 855 407 379| 203 1646 1646
2104 269.798 404.909 -11.487 131.0|5 6 9| 4463| 3000 3446 1807 2520| 1542 1648 2466 1606| 131 5887 5887
2527 313.511 486.483 -13.824 260.4|5 6 9| 31409| 23793 27520 28847 8532| 19813 30059 7776 7515| 260 55823 55823
2937 152.381 567.373 -8.136 88.1|5 4 7| 311| 297 200 274 150| 261 192 176 110| 88 495 495
2979 825.000 575.000 -20.665 597.3|9 0 0|*******| 55191 79964 33062 57265| 19093 53704 79108 36810| 597 ******* *******
3000 753.643 578.691 -9.801 400.6|5 3 6| 1482| 1100 1318 703 1153| 661 675 1101 1049| 400 1961 1961
3332 120.854 648.306 -10.857 61.4|5 7 10| 2721| 2103 1892 1876 726| 1292 1418 852 495| 61 4496 4496
3747 369.312 729.247 -7.596 73.2|5 3 6| 245| 200 141 184 126| 140 116 99 77| 73 270 270
4000 3340.450 775.844 -10.747 173.5|5 5 8| 2748| 2528 1426 1181 1339| 1044 968 1535 761| 173 3743 3743
4172 780.194 809.576 -8.307 122.0|5 3 6| 409| 317 317 213 357| 173 196 304 236| 121 482 482
4595 206.445 891.119 -8.860 73.3|5 3 6| 483| 332 461 275 220| 207 312 195 248| 73 533 533
4886 2935.000 949.000 -20.724 767.2|9 0 0|*******| 71795 72139 57699 48394| 26001 75938****** 24506| 767 ******* *******
5000 181.238 970.353 -9.201 118.9|5 4 7| 744| 604 421 588 256| 447 396 286 182| 118 972 972
5015 938.590 971.814 -8.557 98.5|5 3 6| 490| 385 433 205 291| 196 179 276 247| 98 539 539
5410 55.196 1053.354 -7.789 90.4|5 3 6| 275| 220 183 222 143| 182 144 107 100| 90 272 272
5789 2485.000 1134.000 -24.409 882.6|9 0 0|*******| 48541 79052 29002 58353| 19170 49467****** 36022| 882 ******* *******
6000 3536.107 1174.924 -8.299 185.3|5 3 6| 620| 363 298 366 330| 279 250 313 280| 185 567 567
6204 18.684 1215.323 -7.955 91.2|5 4 7| 280| 271 245 216 145| 185 225 149 127| 91 338 338
6672 155.346 1295.793 -9.767 97.0|5 5 8| 1180| 981 654 432 658| 374 312 670 365| 96 1633 1633
7000 3828.506 1353.400 -9.484 243.4|5 4 7| 996| 976 526 862 403| 776 477 433 312| 243 1410 1410
7126 30.679 1377.174 -13.851 370.6|5 6 9| 36662| 34935 28920 19606 12606| 17091 19314 13563 9024| 370 49048 49048
7627 2248.232 1458.417 -9.634 123.9|5 5 8| 921| 806 597 860 331| 606 684 395 229| 123 1448 1448
8000 1298.509 1515.106 -11.778 228.8|5 5 8| 6234| 4462 5852 2992 2517| 2145 3187 2206 2156| 228 7676 7676
8154 997.665 1538.685 -10.509 135.9|5 4 7| 1973| 1353 1688 620 1510| 563 579 1163 1067| 135 2990 2990
8669 1616.344 1619.981 -10.368 152.4|5 5 8| 2142| 1729 1113 975 930| 824 694 973 461| 152 2605 2605
9000 2923.273 1665.940 -14.207 581.1|5 7 10| 68254| 50727 39549 27587 27540| 21703 18888 27397 14050| 581 83255 83255
9235 218.790 1700.937 -8.730 81.3|5 4 7| 473| 380 369 243 287| 213 224 268 163| 81 481 481
9801 1091.206 1782.214 -11.047 183.6|5 6 9| 3621| 2797 2052 2276 1083| 1702 1648 1241 701| 183 5175 5175
10000 1417.518 1807.562 -10.177 168.1|5 4 7| 1319| 969 1067 1161 428| 819 1293 511 350| 168 2034 2034
10429 629.261 1863.170 -9.144 49.7|5 4 7| 552| 491 353 364 296| 294 348 293 136| 49 672 672
10983 161.673 1943.846 -10.148 167.3|5 5 8| 1641| 1146 1389 650 930| 501 617 886 638| 167 2070 2070
11000 2520.412 1945.500 -10.335 192.5|5 5 8| 1717| 1448 940 649 1611| 673 413 1538 791| 192 2993 2993
11647 94.307 2024.869 -9.902 65.4|5 5 8| 1252| 1003 700 460 604| 440 340 663 317| 65 1628 1628
12000 4043.493 2078.486 -11.298 170.4|5 5 8| 3754| 3538 1739 1127 3040| 1133 710 3452 1418| 170 7128 7128
12206 180.620 2105.691 -10.301 188.4|5 4 7| 1543| 1053 1404 658 1201| 517 587 1160 956| 188 2285 2285
12803 2675.420 2186.650 -10.197 184.9|5 5 8| 2437| 1488 649 507 1120| 424 544 2157 334| 184 5088 5088
13000 1114.456 2215.696 -8.221 63.8|5 3 6| 363| 111 355 73 188| 68 121 178 176| 63 519 519
13402 1011.303 2268.295 -9.773 158.9|5 5 8| 1082| 740 1075 722 441| 461 882 404 452| 158 1594 1594
13996 306.564 2348.643 -8.836 80.5|5 4 7| 450| 382 412 188 383| 163 188 342 291| 80 637 637
14000 1879.208 2348.982 -7.801 82.3|5 3 6| 256| 165 249 136 153| 112 179 137 174| 82 242 242
14575 397.503 2439.990 -18.636 631.8|9 0 0|*******| 52324 85071 29856 72123| 18558 54851****** 43759| 631 ******* *******
15000 2381.740 2491.458 -12.014 257.4|5 6 9| 6152| 6020 4665 5915 1979| 4828 5199 2141 1660| 257 11333 11333
15118 857.193 2510.818 -8.767 144.5|5 4 7| 517| 464 413 317 398| 293 267 406 293| 144 607 607
15638 579.712 2592.176 -10.722 143.4|5 5 8| 2426| 1986 1730 1459 973| 952 1311 992 728| 143 3030 3030
16000 572.212 2647.229 -9.661 46.5|5 5 8| 927| 805 571 654 326| 479 473 323 218| 46 1404 1404
16202 146.401 2672.904 -12.707 110.7|5 7 10| 15731| 14415 7239 5588 5903| 5117 3273 7219 2881| 110 20994 20994
16774 868.632 2754.225 -10.344 104.6|5 3 6| 1514| 1161 1313 896 675| 727 884 662 523| 104 1955 1955
17000 2237.104 2783.520 -9.143 153.7|5 3 6| 671| 480 501 312 658| 291 258 523 412| 153 918 918
17305 2023.140 2835.084 -10.136 328.2|5 4 7| 1857| 1518 1424 1093 905| 909 1015 913 681| 328 2272 2272
17815 500.066 2915.597 -9.627 147.9|5 4 7| 1243| 794 607 309 1059| 293 298 586 466| 147 1937 1937
18000 1865.189 2951.439 -9.749 113.4|5 5 8| 974| 735 645 302 913| 289 271 803 611| 113 1418 1418
18240 102.401 2996.578 -7.769 67.7|5 3 6| 199| 147 194 115 171| 101 102 116 183| 67 222 222
18758 34.653 3077.974 -11.565 128.5|5 5 8| 4439| 4125 3396 1885 2106| 1549 1910 2354 1569| 128 5014 5014
19000 3336.437 3116.951 -9.271 104.5|5 4 7| 1088| 990 281 296 328| 347 222 324 265| 104 1676 1676
19245 1327.311 3158.531 -11.291 90.0|5 6 9| 3360| 2681 1881 1158 3075| 961 895 2955 1484| 89 5815 5815
19717 344.689 3240.451 -9.280 44.2|5 5 8| 594| 468 426 537 215| 341 488 231 189| 44 1114 1114
20000 3520.243 3285.071 -9.309 163.3|5 4 7| 901| 721 553 590 483| 443 459 446 330| 163 1020 1020
20184 1051.632 3320.532 -9.514 70.3|5 5 8| 755| 434 653 239 655| 165 215 558 509| 70 1189 1189
20638 79.788 3401.961 -10.421 41.6|5 7 10| 1861| 1363 1386 717 834| 573 673 855 541| 41 2385 2385
21000 1997.729 3474.406 -9.541 94.9|5 5 8| 853| 714 659 726 337| 513 605 335 275| 94 1407 1407
21046 591.720 3483.216 -9.696 56.4|5 5 8| 877| 672 649 612 476| 492 512 462 282| 56 1158 1158
21430 560.823 3564.323 -10.474 105.7|5 6 9| 2006| 1485 1264 1418 655| 981 1200 700 459| 105 3241 3241
21834 1634.505 3645.367 -13.671 261.0|5 6 9| 29744| 22610 26429 22629 10134| 15033 23461 9729 8994| 261 47911 47911
22000 2581.620 3676.565 -10.517 84.7|5 5 8| 1792| 1165 1778 465 1622| 445 411 1372 1245| 84 3599 3599
22235 1395.279 3725.760 -10.587 106.8|5 5 8| 2199| 1687 1284 827 1194| 630 744 1403 832| 106 2700 2700
22619 1230.360 3806.455 -9.813 61.2|5 5 8| 1012| 808 542 237 947| 194 163 927 446| 61 1977 1977
23000 3673.775 3874.037 -11.891 97.0|5 6 9| 7006| 4969 5577 3056 3032| 2316 2823 2930 2039| 96 9443 9443
23074 1812.869 3888.319 -8.796 104.3|5 4 7| 584| 472 424 448 214| 278 334 239 156| 104 933 933
23481 66.108 3968.700 -9.436 52.0|5 5 8| 804| 507 490 252 504| 196 192 488 293| 51 1034 1034
23892 127.268 4049.688 -11.138 107.0|5 6 9| 3243| 2734 1920 953 2115| 878 668 2268 1058| 107 4827 4827
24000 330.562 4070.361 -10.041 137.5|5 5 8| 1154| 907 1014 891 589| 643 946 546 464| 137 1812 1812
------- --------- --------- ------- ------|- -- --|-------| ----- ----- ----- -----| ----- ----- ----- -----| ------- ------- -------
NSTARS XCEN YCEN MAG SKY |M iS oS| PCEN| P02 P03 P04 P05| P06 P07 P08 P09| mSKY F2x2 F2x2-SK
------- --------- --------- ------- ------|- -- --|-------| ----- ----- ----- -----| ----- ----- ----- -----| ------- ------- -------
-----------------------------------------
FINDING STATISTICS
-----------------------------------------
Y NPIX %PIX EXPLANATION
1 32688 0.195% ..1..not on chip....
2 15835252 94.385% ..2..not loc max....
3 695557 4.146% ..3..h < hmax.......
4 14504 0.086% ..4..flux too low...
5 0 0.000% ..5..below mask thr.
6 0 0.000% ..6..out of bounds..
7 468 0.003% ..7..loflag issues..
8 0 0.000% ..8..saturated......
9 265 0.002% ..9..not contig sat.
10 0 0.000% .10..not loc sat max
11 0 0.000% .11..sat weirdness..
12 91911 0.548% .12..pk but not qsel
13 629 0.004% .13..pk too peaky...
14 3 0.000% .14..satd CR........
-----------------------------------------
15 23584 0.141% .15..good unsat.....
16 535 0.003% .16..good satd......
#
#
#=======================================
# LUMINOSITY FUNCTION EXTRACTED
#
# MAG LFe CUMe LFe/s CUMe/s
#-------- ----- ------ ------- ------
# LF -24 2 2 0 0
# LF -23 0 2 0 0
# LF -22 0 2 0 0
# LF -21 4 6 0 0
# LF -20 10 16 0 0
# LF -19 25 41 2 2
# LF -18 54 95 0 2
# LF -17 67 162 0 2
# LF -16 103 265 1 3
# LF -15 281 546 3 6
# LF -14 361 907 21 27
# LF -13 601 1508 34 61
# LF -12 2007 3515 76 137
# LF -11 5747 9262 75 212
# LF -10 7486 16748 174 386
# LF -9 5330 22078 374 760
# LF -8 1864 23942 420 1180
# LF -7 162 24104 1051 2231
# LF -6 12 24116 4108 6339
# LF -5 3 24119 7168 13507
# LF -4 0 24119 6607 20114
# LF -3 0 24119 3372 23486
# LF -2 0 24119 610 24096
# LF -1 0 24119 23 24119
#-------- ----- ------ ------- ------
#
NIM
---> rDAT_N: 2021.55200 1
NIM: 1 / 1
---> NLISTs = 1 jeg057cmq_flt
---> NLIST = 1 NITEMs = 5 xymeq
OUTPUT LISTS...
NLISTs: 1
SETUPa--- 50
SETUPb --- 24119
--------------
FIND SPACING:
--------------
F01 (06:14) u -- u ref-frame
F02 (06:14) v -- v ref-frame
F03 (02:08) M -- instl mag (1000s)
F04 (03:11) x -- raw detector x pos
F05 (03:11) y -- raw detector y pos
F06 (02:08) m -- instl mag
F07 (02:02) k -- detector chip no
F08 (03:11) X -- dist-cor x posn
F09 (03:11) Y -- dist-cor y posn
F10 (01:02) h -- local isolation
F11 (04:08) H -- list-based isolatn
F12 (05:16) r -- RA (deg)
F13 (05:16) d -- Dec (deg)
F14 (05:16) R -- RA (deg; adjustd)
F15 (05:16) D -- Dec (deg; adjustd)
F16 (03:06) i -- peak pixel column
F17 (03:06) j -- peak pixel row
F18 (04:12) p -- peak pixel value
F19 (05:12) q -- quality of fit
F20 (06:12) c -- chisq of fit
F21 (05:14) U -- u ref-frame (corr)
F22 (05:14) V -- v ref-frame (corr)
F23 (01:01) k -- chip number
F24 (01:02) K -- chip number (w/K)
F25 (04:10) s -- sky value
F26 (04:10) S -- CTE bkgd value
F27 (04:06) n -- nsat pixels
F28 (01:10) t -- rdat observation
F29 (01:07) C -- centpix frac resid
F30 (01:06) o -- other flux
F31 (01:06) O -- max other flux
F32 (01:08) 1 -- diam=1 PBAP (1x1)
F33 (01:08) 2 -- diam=2 PBAP (2x2)
F34 (01:08) 3 -- diam=3 PBAP (3x3)
F35 (01:08) 4 -- diam=4 PBAP flux
F36 (01:08) 5 -- diam=5 PBAP flux
F37 (01:08) 6 -- diam=6 PBAP flux
F38 (01:08) 7 -- diam=7 PBAP flux
F39 (01:08) 8 -- diam=8 PBAP flux
F40 (01:08) 9 -- diam=9 PBAP flux
F41 (02:08) 0 -- PBAPsky: 5.5<r<8.5
F42 (01:10) z -- flux (can be neg)
F43 (01:08) N -- star number
F44 (02:08) w -- dist-corr inst mag
F45 (02:08) W -- w, zeropointed
F46 (01:05) e -- frac error scale
F47 (02:08) f -- central PSF value
F48 (02:08) F -- central PSF max
F49 (01:10) P -- 2x2 flux for fndng
F50 (06:10) E -- effective sky rad
*********************
***
*** NLISTs: 1
***
*********************
NLIST01: 5 jeg057cmq_flt.xymeq
Note: The following floating-point exceptions are signalling: IEEE_INVALID_FLAG IEEE_DIVIDE_BY_ZERO IEEE_DENORMAL
------------------------------------------------
ARG0000: ./hst1pass.e
ARG0001: HMIN=5
ARG0002: FMIN=150
ARG0003: PSF=STDPSF_ACSWFC_F606W_SM4.fits
ARG0004: PERT=1
ARG0005: OUT=xymeq
ARG0006: p16380/jeg057coq_flt.fits
----------------------------------------------
OUTPUT FROM PROGRAM hst1pass: ./hst1pass.e
HMIN: 5
FMIN: 150.0
PSFFILEI: STDPSF_ACSWFC_F606W_SM4.fits
GDCFILEI: NONE
DOAPPHOT: F
DOSATD: T
NPERTs: 1
WCSMODE: AUTO
PMAX: **********
KSEL: 0
QMAX: 0.500
CMIN: -1.000
CMAX: 0.250
NIMs: 001
NIM00001 p16380/jeg057coq_flt.fits
NIMa: 1
NIMb: 1
NIMs: 1
----------------------------------------------
NIM001 CALL sub_hst2ym on image p16380/jeg057coq_flt.fits
ENTER sub_hst2xym --
FILENAME: p16380/jeg057coq_flt.fits
FILENAMu: p16380/jeg057coq_flt.fits
VERBOSE : 1
HMIN : 5
FMIN : 150
IMIN/MAX: -9999 9999
JMIN/MAX: -9999 9999
DOSATD : T
ARTSTARs: 0
LSTSTARs: 0
GDC_INP : NONE
PSF_INP : STDPSF_ACSWFC_F606W_SM4.fits
WCSMODE : AUTO
SHOW_USE: -
SHOW_FND: -
SHOW_REF: -
SHOW_SUB: -
SHOW_ART: -
SHOW_MSK: -
DQ_MASK---
SMIN: 10.00
SMAX: 1000.00
LVL: 0.00
FLAG: 0
DOAPPHOT: F
STEMu : jeg057coq
FILTu : F606W
PROPu : 16380
RDATu : 2021.55205
INSTRUME: 'ACS '
DETECTOR: 'WFC'
FLASHSTA: 'NOT PERFORMED '
FLSHCORR: 'OMIT '
SHUTRPOS: A
FLASHCUR: O
FLASHDUR: 0.0
FLASHLVL: 0.0
DARKTIME: 153.2
DARKEST : 1.8
PSFFILE : STDPSF_ACSWFC_F606W_SM4.fits
GDCFILE : NONE
DOSATD : T
HIFLAG : 76000
IDENTIFY SATURATED STARS
CALL peak_sat_NAXIS 76000
LLAC peak_sat_NAXIS 76000
GET FLUXES FOR SATURATED STARS
PSFFILE_USE: STDPSF_ACSWFC_F606W_SM4.fits
----- ---- ---- ------ ------ ------------ ------ ------ ------
LIST I J MAG SKY FLUX NSAT NAP PSFTOT
----- ---- ---- ------ ------ ------------ ------ ------ ------
00001 3165 0019 -14.82 367.1 845510.4 0 25 0.9091
00002 2491 0026 -16.45 245.6 3787631.8 14 107 0.9852
00003 2500 0026 -15.29 283.4 1310196.2 1 35 0.9332
00004 2510 0027 -16.13 309.9 2837421.2 7 86 0.9878
00005 3198 0028 -18.94 369.0 37671696.0 415 767 1.0268
00006 2524 0038 -18.90 304.5 36321636.0 399 743 1.0272
00007 1409 0046 -17.95 149.4 15070719.0 141 345 1.0150
00008 3449 0061 -14.67 211.4 740680.3 0 25 0.9079
00009 1612 0062 -15.43 116.0 1479689.4 5 40 0.9368
00010 1617 0062 -15.74 124.1 1978430.0 7 55 0.9631
00020 0131 0119 -16.33 93.6 3418257.2 20 83 0.9809
00030 0960 0147 -14.77 107.8 807908.1 1 25 0.9050
00040 3216 0180 -14.81 173.3 838267.4 0 25 0.9096
00050 0527 0217 -14.79 117.6 825626.4 1 25 0.9002
00060 2509 0239 -14.69 179.6 750880.4 0 25 0.9107
00063 3383 0247 -19.98 580.8 97825352.0 1097 1726 1.0274
00070 2865 0257 -16.16 157.9 2914004.2 11 85 0.9706
00080 3981 0274 -15.01 276.0 1010837.4 0 30 0.9247
00090 3228 0322 -15.94 229.9 2380861.5 7 73 0.9703
00100 3443 0364 -15.91 231.5 2321496.5 4 61 0.9618
00169 0624 0623 -20.12 533.5 112096512.0 1152 1741 1.0306
00200 1318 0803 -14.93 84.3 940112.5 2 30 0.9180
00300 1794 1263 -13.63 79.8 283115.9 2 30 0.9225
00400 3380 1931 -15.64 136.8 1806752.5 5 45 0.9426
00482 0162 2498 -20.24 505.1 124281400.0 1237 1827 1.0376
00500 2364 2642 -14.87 185.3 888004.8 1 25 0.9044
00563 2155 3158 -20.26 538.3 127071520.0 1344 2035 1.0328
00591 3802 3368 -20.33 629.4 135772112.0 1523 2241 1.0315
00600 1495 3591 -14.83 85.9 852801.6 1 25 0.9070
00606 4018 3619 -20.41 661.0 145858528.0 1658 2485 1.0335
----- ---- ---- ------ ------ ------------ ------ ------ ------
LIST I J MAG SKY FLUX NSAT NAP PSFTOT
----- ---- ---- ------ ------ ------------ ------ ------ ------
MEASURED SATd STARS: 671 BRIGHTEST: L0606 4018 3619 -20.41
HISTMODE: 67.93
PSFFILE_INP: STDPSF_ACSWFC_F606W_SM4.fits
PSFFILE_PRT: jeg057coq_psf.fits
CALL FIND_PSFPERT -- 1x1
CENPERT : 1
1 0.0000
NOW, GO THROUGH IMAGE AND FIND STARS
------- --------- --------- ------- ------|- -- --|-------| ----- ----- ----- -----| ----- ----- ----- -----| ------- ------- -------
NSTARS XCEN YCEN MAG SKY |M iS oS| PCEN| P02 P03 P04 P05| P06 P07 P08 P09| mSKY F2x2 F2x2-SK
------- --------- --------- ------- ------|- -- --|-------| ----- ----- ----- -----| ----- ----- ----- -----| ------- ------- -------
1 3949.426 6.621 -10.628 376.6|5 4 7| 2416| 2347 1636 1042 1975| 1008 864 1962 1559| 376 3803 3803
3 458.705 9.293 -11.744 62.2|5 6 9| 5064| 3941 4111 3690 1607| 2834 2977 1565 1304| 62 7337 7337
13 3165.440 18.093 -14.818 757.2|9 0 0| 845510| 70640 56820 27422 48617| 32833 20409 46696 42214| 757 1011194 1011194
21 2491.400 23.168 -16.446 654.3|9 0 0|3787631| 80766 75397 72186 72604| 69643 54504 80766 74031| 654 4021496 4021496
28 3197.700 37.990 -18.940 911.1|9 0 0|*******| 82508 86199 86141 85844| 82753 86827 82451 85609| 911 ******* *******
97 1061.564 82.281 -8.754 81.2|5 4 7| 475| 340 459 362 189| 270 308 171 177| 81 685 685
208 3937.569 162.958 -14.902 440.5|9 0 0| 913846| 67063 72259 57192 35315| 45754 50468 22672 41812| 440 1093496 1093496
323 1670.596 243.206 -8.870 71.7|5 4 7| 579| 343 519 322 190| 265 305 191 162| 71 810 810
327 3383.481 256.990 -19.976 0.0|9 0 0|*******| 87461 87243 87432 87796| 88630 86577 88746 86487| 0 ******* *******
428 1898.445 323.969 -8.412 95.3|5 3 6| 429| 426 324 229 231| 212 168 242 167| 95 502 502
532 309.615 407.043 -10.064 60.1|5 5 8| 1322| 968 1171 629 580| 476 577 424 453| 60 1607 1607
619 523.139 488.423 -7.405 61.1|5 3 6| 183| 149 128 169 79| 126 119 107 84| 61 199 199
736 557.294 566.888 -9.561 182.4|5 4 7| 1403| 874 265 736 901| 586 237 689 239| 182 2428 2428
794 624.000 623.000 -20.124 0.0|9 0 0|*******| 97093 98356 96598 96583| 95600 98477 96003 98409| 0 ******* *******
819 22.549 648.124 -11.121 64.3|5 6 9| 3083| 2100 2912 1575 1160| 1336 1550 998 1035| 64 4163 4163
911 271.447 729.023 -7.694 89.9|5 3 6| 264| 255 199 147 149| 172 127 164 128| 89 243 243
992 3671.376 809.783 -8.315 169.9|5 3 6| 490| 431 322 282 339| 262 245 337 305| 169 496 496
1000 987.111 815.948 -8.160 77.5|5 3 6| 623| 220 129 232 197| 130 97 154 125| 77 720 720
1093 82.529 893.776 -9.545 80.7|5 4 7| 788| 601 757 328 549| 255 361 417 491| 80 1064 1064
1169 4090.663 973.422 -12.002 343.4|5 6 9| 6762| 4899 5710 5990 1867| 4548 5099 1592 1640| 343 11249 11249
1266 2594.520 1055.114 -9.836 103.6|5 4 7| 1197| 762 1140 650 464| 431 617 354 456| 103 1472 1472
1344 3550.781 1134.493 -9.869 137.7|5 3 6| 1786| 374 806 1241 297| 449 679 200 226| 137 2745 2745
1468 2050.247 1214.586 -9.520 136.3|5 4 7| 887| 761 631 384 819| 405 288 654 626| 136 1284 1284
1623 56.575 1296.275 -10.111 68.1|5 5 8| 1270| 962 1139 844 406| 625 748 369 408| 68 1810 1810
1796 1321.618 1376.589 -10.053 78.4|5 5 8| 1172| 812 1034 408 1039| 359 402 756 872| 78 1974 1974
2000 94.721 1449.829 -10.022 71.2|5 5 8| 1327| 995 999 482 753| 399 363 650 593| 71 1668 1668
2017 1013.484 1458.361 -10.313 60.6|5 7 10| 2770| 1979 511 925 266| 2064 417 238 177| 60 6071 6071
2239 1645.355 1538.761 -10.321 82.8|5 5 8| 1589| 1423 1039 593 1014| 601 451 996 751| 82 2249 2249
2493 275.514 1619.899 -10.192 208.1|5 4 7| 1680| 1278 1641 744 872| 659 656 723 895| 208 2097 2097
2769 413.550 1700.666 -10.600 174.2|5 4 7| 2044| 1600 2007 763 1563| 612 679 1211 1401| 174 3259 3259
3000 253.537 1779.677 -8.985 67.8|5 3 6| 456| 265 428 276 358| 185 247 297 315| 67 526 526
3009 128.508 1781.630 -10.234 68.7|5 4 7| 1246| 877 1158 431 948| 365 449 768 973| 68 1882 1882
3323 187.592 1862.575 -8.593 63.5|5 4 7| 334| 272 284 183 307| 152 149 223 281| 63 432 432
3627 1089.212 1944.130 -9.402 71.0|5 5 8| 736| 673 527 412 338| 367 322 311 280| 70 792 792
3964 998.343 2025.078 -9.866 56.1|5 5 8| 974| 918 721 514 462| 577 405 467 279| 56 1078 1078
4000 2291.372 2035.984 -10.932 101.9|5 5 8| 2726| 2691 1907 1293 1307| 1237 889 1270 1039| 101 3367 3367
4255 121.558 2105.617 -11.636 135.6|5 6 9| 4533| 3317 4089 1294 3566| 1154 1188 2799 3104| 135 7277 7277
4585 191.320 2186.672 -13.008 101.1|5 7 10| 15849| 15241 10930 4568 10555| 4589 3141 10527 7666| 101 24819 24819
4912 1329.569 2267.797 -11.902 72.5|5 6 9| 5423| 4292 4949 2206 3146| 1832 1963 2798 3122| 72 6243 6243
5000 1004.186 2296.094 -10.463 73.8|5 5 8| 1665| 1467 1232 949 735| 876 691 794 598| 73 1917 1917
5225 1049.538 2349.327 -10.519 166.2|5 4 7| 1689| 1326 1644 1264 686| 992 1198 726 669| 166 2228 2228
5549 224.622 2429.793 -8.794 127.7|5 3 6| 530| 445 417 244 337| 227 253 330 348| 127 466 466
5796 162.000 2498.000 -20.236 0.0|9 0 0|*******|105117 99892102162101374|103785100593103734101572| 0 ******* *******
5844 903.559 2510.896 -18.246 581.6|9 0 0|*******| 93368 95818 93581 93281| 92185 92795 92234 94382| 581 ******* *******
6000 798.825 2558.040 -9.341 49.2|5 5 8| 677| 575 489 373 320| 345 278 312 268| 49 816 816
6115 823.864 2591.629 -8.294 86.0|5 4 7| 361| 275 265 154 279| 136 114 261 210| 86 431 431
6437 761.658 2672.728 -11.369 55.5|5 6 9| 3898| 2873 3038 1260 2386| 966 960 2068 2081| 55 5228 5228
6747 393.558 2755.156 -7.816 43.5|5 3 6| 204| 154 181 134 101| 116 125 113 111| 43 221 221
7000 1892.892 2833.006 -10.603 101.8|5 5 8| 2137| 1758 1466 1042 938| 926 787 930 816| 101 2414 2414
7004 181.598 2835.066 -9.636 49.2|5 5 8| 845| 604 686 450 369| 326 386 302 353| 49 948 948
7249 10.514 2916.160 -8.865 110.6|5 4 7| 498| 416 496 372 266| 285 314 276 227| 110 628 628
7478 154.613 2997.384 -7.950 126.4|5 3 6| 308| 240 253 265 173| 231 240 189 203| 126 251 251
7728 1791.795 3077.927 -8.701 55.1|5 4 7| 442| 376 337 220 228| 179 170 228 195| 55 467 467
7936 2155.000 3158.000 -20.260 0.0|9 0 0|*******| 97145 95587 97021 97329| 95605 98664 95586 97841| 0 ******* *******
7937 328.501 3158.554 -9.942 52.2|5 5 8| 888| 683 870 272 798| 234 267 632 764| 52 1421 1421
8000 566.755 3181.815 -9.517 40.0|5 4 7| 785| 593 556 321 443| 237 215 396 372| 39 830 830
8160 2286.336 3239.960 -10.079 60.4|5 5 8| 1386| 1240 999 566 646| 616 442 586 468| 60 1581 1581
8353 301.247 3321.082 -8.364 32.7|5 4 7| 266| 234 191 154 145| 190 123 148 114| 32 284 284
8484 3802.000 3368.000 -20.332 0.0|9 0 0|*******| 90440 89668 87607 91124| 89557 89439 89617 89947| 0 ******* *******
8551 875.566 3401.551 -9.743 85.1|5 4 7| 835| 621 793 268 824| 275 272 674 713| 85 1456 1456
8720 11.648 3483.422 -7.659 34.4|5 4 7| 146| 123 128 145 85| 87 103 77 76| 34 155 155
8861 1610.309 3564.231 -10.428 47.7|5 6 9| 1715| 1614 1245 1166 635| 971 779 631 440| 47 2571 2571
8953 4018.000 3619.000 -20.410 0.0|9 0 0|*******| 89257 88715 89175 88721| 89572 89232 89062 86636| 0 ******* *******
8999 878.733 3644.818 -11.395 72.2|5 5 8| 4303| 3489 3097 1206 2258| 1193 996 2215 1784| 72 5432 5432
9000 2566.753 3645.091 -9.069 45.9|5 4 7| 655| 451 473 328 256| 261 234 204 209| 45 718 718
9149 948.543 3728.005 -8.602 42.3|5 3 6| 730| 120 604 185 153| 79 145 88 125| 42 1277 1277
9326 61.548 3808.460 -7.558 34.4|5 4 7| 141| 111 114 120 73| 96 125 77 69| 34 167 167
9510 196.226 3888.047 -8.390 32.0|5 5 8| 283| 268 207 148 145| 147 124 160 126| 31 290 290
9694 138.471 3969.195 -8.376 30.3|5 4 7| 259| 200 235 150 140| 117 175 96 118| 30 289 289
9876 492.602 4049.573 -8.212 68.8|5 4 7| 303| 190 254 110 239| 102 89 233 230| 68 411 411
------- --------- --------- ------- ------|- -- --|-------| ----- ----- ----- -----| ----- ----- ----- -----| ------- ------- -------
NSTARS XCEN YCEN MAG SKY |M iS oS| PCEN| P02 P03 P04 P05| P06 P07 P08 P09| mSKY F2x2 F2x2-SK
------- --------- --------- ------- ------|- -- --|-------| ----- ----- ----- -----| ----- ----- ----- -----| ------- ------- -------
-----------------------------------------
FINDING STATISTICS
-----------------------------------------
Y NPIX %PIX EXPLANATION
1 32688 0.195% ..1..not on chip....
2 15810890 94.240% ..2..not loc max....
3 729673 4.349% ..3..h < hmax.......
4 26880 0.160% ..4..flux too low...
5 0 0.000% ..5..below mask thr.
6 0 0.000% ..6..out of bounds..
7 678 0.004% ..7..loflag issues..
8 0 0.000% ..8..saturated......
9 488 0.003% ..9..not contig sat.
10 0 0.000% .10..not loc sat max
11 0 0.000% .11..sat weirdness..
12 84004 0.501% .12..pk but not qsel
13 111 0.001% .13..pk too peaky...
14 10 0.000% .14..satd CR........
-----------------------------------------
15 9357 0.056% .15..good unsat.....
16 617 0.004% .16..good satd......
#
#
#=======================================
# LUMINOSITY FUNCTION EXTRACTED
#
# MAG LFe CUMe LFe/s CUMe/s
#-------- ----- ------ ------- ------
# LF -20 19 19 0 0
# LF -19 25 44 0 0
# LF -18 57 101 0 0
# LF -17 54 155 0 0
# LF -16 177 332 0 0
# LF -15 294 626 9 9
# LF -14 85 711 23 32
# LF -13 212 923 41 73
# LF -12 854 1777 51 124
# LF -11 1937 3714 105 229
# LF -10 2533 6247 277 506
# LF -9 2381 8628 167 673
# LF -8 1156 9784 137 810
# LF -7 187 9971 460 1270
# LF -6 3 9974 1477 2747
# LF -5 0 9974 2338 5085
# LF -4 0 9974 2562 7647
# LF -3 0 9974 1778 9425
# LF -2 0 9974 531 9956
# LF -1 0 9974 18 9974
#-------- ----- ------ ------- ------
#
NIM
---> rDAT_N: 2021.55200 1
NIM: 1 / 1
---> NLISTs = 1 jeg057coq_flt
---> NLIST = 1 NITEMs = 5 xymeq
OUTPUT LISTS...
NLISTs: 1
SETUPa--- 50
SETUPb --- 9974
--------------
FIND SPACING:
--------------
F01 (06:14) u -- u ref-frame
F02 (06:14) v -- v ref-frame
F03 (02:08) M -- instl mag (1000s)
F04 (03:11) x -- raw detector x pos
F05 (03:11) y -- raw detector y pos
F06 (02:08) m -- instl mag
F07 (02:02) k -- detector chip no
F08 (03:11) X -- dist-cor x posn
F09 (03:11) Y -- dist-cor y posn
F10 (01:02) h -- local isolation
F11 (04:08) H -- list-based isolatn
F12 (05:16) r -- RA (deg)
F13 (05:16) d -- Dec (deg)
F14 (05:16) R -- RA (deg; adjustd)
F15 (05:16) D -- Dec (deg; adjustd)
F16 (03:06) i -- peak pixel column
F17 (03:06) j -- peak pixel row
F18 (04:12) p -- peak pixel value
F19 (06:12) q -- quality of fit
F20 (07:12) c -- chisq of fit
F21 (05:14) U -- u ref-frame (corr)
F22 (05:14) V -- v ref-frame (corr)
F23 (01:01) k -- chip number
F24 (01:02) K -- chip number (w/K)
F25 (04:10) s -- sky value
F26 (04:10) S -- CTE bkgd value
F27 (03:06) n -- nsat pixels
F28 (01:10) t -- rdat observation
F29 (01:07) C -- centpix frac resid
F30 (01:06) o -- other flux
F31 (01:06) O -- max other flux
F32 (01:08) 1 -- diam=1 PBAP (1x1)
F33 (01:08) 2 -- diam=2 PBAP (2x2)
F34 (01:08) 3 -- diam=3 PBAP (3x3)
F35 (01:08) 4 -- diam=4 PBAP flux
F36 (01:08) 5 -- diam=5 PBAP flux
F37 (01:08) 6 -- diam=6 PBAP flux
F38 (01:08) 7 -- diam=7 PBAP flux
F39 (01:08) 8 -- diam=8 PBAP flux
F40 (01:08) 9 -- diam=9 PBAP flux
F41 (01:08) 0 -- PBAPsky: 5.5<r<8.5
F42 (01:10) z -- flux (can be neg)
F43 (01:08) N -- star number
F44 (02:08) w -- dist-corr inst mag
F45 (02:08) W -- w, zeropointed
F46 (01:05) e -- frac error scale
F47 (02:08) f -- central PSF value
F48 (02:08) F -- central PSF max
F49 (01:10) P -- 2x2 flux for fndng
F50 (06:10) E -- effective sky rad
*********************
***
*** NLISTs: 1
***
*********************
NLIST01: 5 jeg057coq_flt.xymeq
Note: The following floating-point exceptions are signalling: IEEE_INVALID_FLAG IEEE_DIVIDE_BY_ZERO IEEE_DENORMAL
------------------------------------------------
ARG0000: ./hst1pass.e
ARG0001: HMIN=5
ARG0002: FMIN=150
ARG0003: PSF=STDPSF_ACSWFC_F606W_SM4.fits
ARG0004: PERT=1
ARG0005: OUT=xymeq
ARG0006: p16380/jeg057cxq_flt.fits
----------------------------------------------
OUTPUT FROM PROGRAM hst1pass: ./hst1pass.e
HMIN: 5
FMIN: 150.0
PSFFILEI: STDPSF_ACSWFC_F606W_SM4.fits
GDCFILEI: NONE
DOAPPHOT: F
DOSATD: T
NPERTs: 1
WCSMODE: AUTO
PMAX: **********
KSEL: 0
QMAX: 0.500
CMIN: -1.000
CMAX: 0.250
NIMs: 001
NIM00001 p16380/jeg057cxq_flt.fits
NIMa: 1
NIMb: 1
NIMs: 1
----------------------------------------------
NIM001 CALL sub_hst2ym on image p16380/jeg057cxq_flt.fits
ENTER sub_hst2xym --
FILENAME: p16380/jeg057cxq_flt.fits
FILENAMu: p16380/jeg057cxq_flt.fits
VERBOSE : 1
HMIN : 5
FMIN : 150
IMIN/MAX: -9999 9999
JMIN/MAX: -9999 9999
DOSATD : T
ARTSTARs: 0
LSTSTARs: 0
GDC_INP : NONE
PSF_INP : STDPSF_ACSWFC_F606W_SM4.fits
WCSMODE : AUTO
SHOW_USE: -
SHOW_FND: -
SHOW_REF: -
SHOW_SUB: -
SHOW_ART: -
SHOW_MSK: -
DQ_MASK---
SMIN: 10.00
SMAX: 1000.00
LVL: 0.00
FLAG: 0
DOAPPHOT: F
STEMu : jeg057cxq
FILTu : F606W
PROPu : 16380
RDATu : 2021.55218
INSTRUME: 'ACS '
DETECTOR: 'WFC'
FLASHSTA: 'NOT PERFORMED '
FLSHCORR: 'OMIT '
SHUTRPOS: A
FLASHCUR: O
FLASHDUR: 0.0
FLASHLVL: 0.0
DARKTIME: 153.2
DARKEST : 1.8
PSFFILE : STDPSF_ACSWFC_F606W_SM4.fits
GDCFILE : NONE
DOSATD : T
HIFLAG : 76000
IDENTIFY SATURATED STARS
CALL peak_sat_NAXIS 76000
LLAC peak_sat_NAXIS 76000
GET FLUXES FOR SATURATED STARS
PSFFILE_USE: STDPSF_ACSWFC_F606W_SM4.fits
----- ---- ---- ------ ------ ------------ ------ ------ ------
LIST I J MAG SKY FLUX NSAT NAP PSFTOT
----- ---- ---- ------ ------ ------------ ------ ------ ------
00001 1311 0011 -17.27 78.1 8080654.0 79 210 1.0044
00002 3262 0011 -14.05 74.9 415768.6 1 25 0.9087
00003 2390 0018 -18.54 166.7 26138940.0 266 591 1.0185
00004 3124 0019 -13.93 65.1 373081.1 0 25 0.9090
00005 1356 0025 -18.86 188.5 35089624.0 351 800 1.0239
00006 2849 0027 -14.08 67.3 428250.8 0 25 0.9088
00007 3162 0027 -15.19 89.0 1192945.1 7 52 0.9556
00008 0900 0031 -15.50 42.0 1583167.4 12 64 0.9737
00009 1321 0033 -14.19 65.7 475863.6 1 25 0.9049
00010 3865 0036 -15.97 80.9 2434233.8 20 88 0.9857
00020 0503 0054 -14.08 36.3 429534.0 1 25 0.8977
00030 2153 0063 -13.93 44.8 371700.6 1 25 0.9104
00040 0560 0077 -14.42 35.3 588765.3 2 30 0.9138
00050 3288 0091 -15.95 74.0 2403322.0 17 88 0.9844
00060 2580 0113 -15.61 88.5 1760863.1 12 69 0.9775
00070 2987 0131 -13.75 159.9 315902.4 0 25 0.9095
00080 2973 0154 -17.43 99.3 9354811.0 95 312 1.0043
00090 4000 0170 -13.93 128.5 373224.0 1 25 0.9077
00096 0290 0193 -18.96 187.8 38379468.0 356 945 1.0197
00100 4036 0198 -13.74 89.3 313320.6 0 25 0.9076
00136 2675 0252 -19.64 329.6 71934136.0 742 1942 1.0229
00175 2317 0337 -20.05 412.7 105015040.0 1064 2884 1.0240
00200 1015 0391 -14.91 45.4 922298.2 4 40 0.9381
00300 3645 0617 -13.92 70.0 369733.3 0 25 0.9099
00400 0711 0799 -17.52 70.1 10155470.0 93 285 1.0047
00500 1064 1026 -14.23 50.5 493735.2 1 25 0.9113
00600 2422 1255 -14.36 51.5 552373.5 2 30 0.9243
00700 2156 1486 -14.02 89.1 405018.5 1 25 0.9051
00800 1440 1729 -16.85 70.5 5474950.5 49 173 1.0028
00839 2354 1803 -20.07 408.8 106978464.0 1034 2588 1.0268
00900 1050 1974 -14.90 51.8 908695.8 4 40 0.9480
01000 1484 2310 -19.40 266.2 57713368.0 530 1350 1.0245
01084 0745 2556 -20.69 607.7 188042096.0 1747 4374 1.0329
01100 0532 2614 -14.99 37.1 988796.2 5 36 0.9399
01200 2712 2981 -16.85 75.8 5511713.5 50 178 0.9976
01300 3683 3376 -15.61 74.5 1755450.5 14 75 0.9822
01400 3897 3768 -15.10 61.7 1098805.4 5 51 0.9618
----- ---- ---- ------ ------ ------------ ------ ------ ------
LIST I J MAG SKY FLUX NSAT NAP PSFTOT
----- ---- ---- ------ ------ ------------ ------ ------ ------
MEASURED SATd STARS: 1472 BRIGHTEST: L1084 0745 2556 -20.69
HISTMODE: 40.73
PSFFILE_INP: STDPSF_ACSWFC_F606W_SM4.fits
PSFFILE_PRT: jeg057cxq_psf.fits
CALL FIND_PSFPERT -- 1x1
CENPERT : 1
1 0.0054
NOW, GO THROUGH IMAGE AND FIND STARS
------- --------- --------- ------- ------|- -- --|-------| ----- ----- ----- -----| ----- ----- ----- -----| ------- ------- -------
NSTARS XCEN YCEN MAG SKY |M iS oS| PCEN| P02 P03 P04 P05| P06 P07 P08 P09| mSKY F2x2 F2x2-SK
------- --------- --------- ------- ------|- -- --|-------| ----- ----- ----- -----| ----- ----- ----- -----| ------- ------- -------
1 134.943 6.044 -9.001 34.1|5 6 9| 801| 318 291 389 268| 205 231 203 231| 34 1043 1043
2 208.205 6.350 -10.298 29.1|5 8 11| 2302| 1371 538 1804 503| 1023 573 509 225| 29 4539 4539
3 323.868 6.346 -12.784 50.4|5 8 11| 23724| 9154 10847 16606 4866| 6537 9774 4920 3088| 50 44369 44369
58 3687.928 9.119 -12.949 109.3|5 7 10| 33829| 10887 12520 15549 8781| 6310 6903 5564 4874| 109 48252 48252
59 3805.815 8.489 -12.951 93.0|5 9 12| 25214| 7200 13906 5757 24584| 3111 4288 8546 12921| 92 57551 57551
76 3555.617 9.776 -13.226 77.4|5 10 13| 36310| 8524 28977 10512 20512| 4388 8713 8311 15523| 77 75868 75868
82 1311.000 11.000 -17.269 668.6|9 0 0|8080654| 87146 84700 86436 87108| 88003 85455 87552 85732| 668 8342299 8342299
210 2390.000 18.000 -18.543 873.5|9 0 0|*******| 81050 82102 83885 83911| 79828 82363 80224 82080| 873 ******* *******
325 1356.000 25.000 -18.863 911.1|9 0 0|*******| 90137 86222 88922 88379| 89630 85667 89402 85309| 911 ******* *******
1000 2935.208 60.947 -13.609 228.6|5 6 9| 63847| 32741 14362 20832 23176| 13802 7214 16226 7306| 228 94789 94789
1336 334.958 81.385 -8.806 33.7|5 6 9| 661| 279 232 482 151| 230 268 155 108| 33 1076 1076
2000 3271.656 117.380 -11.969 163.8|5 4 7| 10738| 3115 7268 8562 2345| 2360 6272 1677 1831| 163 24633 24633
2857 604.953 161.842 -8.166 24.4|5 5 8| 423| 153 163 138 218| 91 78 97 118| 24 589 589
3000 3631.352 169.837 -9.842 76.7|5 5 8| 1828| 1329 398 594 896| 432 252 745 275| 76 3361 3361
3384 289.654 193.163 -18.960 831.0|9 0 0|*******| 97332 95722102187102480| 97180 97565 98047 95106| 830 ******* *******
4000 549.193 229.198 -8.933 22.6|5 6 9| 823| 415 203 427 183| 263 126 172 109| 22 1329 1329
4258 554.156 243.236 -8.541 31.5|5 5 8| 578| 291 172 350 139| 202 107 142 85| 31 949 949
4429 2674.576 251.972 -19.642 0.0|9 0 0|*******| 83399 82915 83369 83497| 82577 81449 82344 82091| 0 ******* *******
5000 767.085 284.711 -8.153 36.0|5 5 8| 410| 177 150 162 297| 106 56 160 104| 36 629 629
5742 320.710 324.443 -11.275 89.1|5 5 8| 5174| 1988 3152 4432 1121| 1567 3048 1136 832| 89 11290 11290
5989 2317.000 337.000 -20.053 0.0|9 0 0|*******| 87118 87929 86874 87019| 87974 88560 87926 87152| 0 ******* *******
6000 3990.905 337.174 -13.247 155.1|5 7 10| 45422| 14063 18625 22141 11091| 9079 10685 7067 6000| 155 69442 69442
7000 1610.209 392.532 -7.083 32.2|5 3 6| 172| 88 60 48 155| 45 41 105 44| 32 329 329
7222 133.899 405.022 -8.737 50.5|5 4 7| 526| 267 316 285 242| 177 185 224 172| 50 681 681
8000 3380.182 448.773 -8.596 117.0|5 3 6| 769| 345 229 267 468| 216 164 292 169| 116 1042 1042
8650 43.636 485.441 -6.988 37.3|5 3 6| 129| 51 104 55 120| 39 45 69 102| 37 231 231
9000 3230.071 505.410 -6.987 51.1|5 3 6| 191| 89 65 158 77| 77 84 75 61| 51 224 224
10000 547.624 564.325 -7.429 35.3|5 3 6| 193| 78 164 151 84| 65 121 71 55| 35 382 382
10041 122.707 567.230 -10.208 32.7|5 7 10| 2365| 756 1541 1224 557| 523 912 452 414| 32 4419 4419
11000 2975.750 619.258 -12.096 56.7|5 8 11| 15289| 3937 8286 8379 2958| 2516 5139 2084 2082| 56 28397 28397
11542 654.524 647.968 -9.647 51.9|5 4 7| 1263| 1212 204 471 460| 521 124 527 149| 51 2282 2282
12000 2192.262 673.962 -10.990 91.7|5 6 9| 6027| 3266 1057 1828 2003| 1326 689 1516 664| 91 9004 9004
13000 2750.991 727.411 -8.635 54.9|5 5 8| 624| 274 220 532 154| 211 217 129 128| 54 1024 1024
13026 91.652 728.798 -7.245 111.6|5 3 6| 223| 160 223 169 201| 157 144 151 159| 111 258 258
14000 1847.484 785.523 -11.540 46.1|5 7 10| 6183| 5736 816 1315 5594| 1483 468 5564 905| 46 18061 18061
14410 252.212 809.679 -12.693 35.0|5 10 13| 23859| 12170 5111 5035 15073| 4082 1832 9543 3647| 34 43933 43933
15000 1783.252 842.142 -12.806 57.8|5 10 13| 31266| 17067 5417 13481 6939| 8267 3093 5920 2498| 57 52255 52255
15888 480.279 890.615 -10.009 28.9|5 7 10| 1850| 1034 299 400 1443| 340 174 940 303| 28 3925 3925
16000 3679.810 897.093 -10.780 110.3|5 7 10| 4190| 1794 2452 1768 1469| 900 1510 966 773| 110 6481 6481
17000 4034.698 954.279 -8.968 136.3|5 4 7| 911| 333 561 564 293| 283 453 221 269| 136 1406 1406
17318 304.277 972.133 -8.378 36.9|5 5 8| 446| 307 113 237 180| 170 119 157 78| 36 647 647
18000 4022.526 1009.617 -15.071 161.4|9 0 0|1067198| 46506 78025 62538 81564| 22272 76180 42241 77217| 161 1303843 1303843
18693 237.344 1053.469 -8.951 47.7|5 5 8| 643| 456 147 590 192| 425 131 147 83| 47 1399 1399
19000 3474.858 1071.028 -11.739 68.9|5 7 10| 12286| 3176 5212 4156 3714| 1785 2423 2121 1820| 68 17017 17017
20000 1878.052 1130.178 -12.989 57.2|5 10 13| 37269| 13857 10296 17848 7999| 7955 6161 6375 3743| 57 53863 53863
20067 592.232 1134.338 -10.004 34.4|5 5 8| 2056| 1173 414 1409 397| 786 305 337 195| 34 3974 3974
21000 2726.074 1189.868 -8.144 44.0|5 4 7| 436| 194 163 171 247| 162 89 140 97| 44 561 561
21405 159.323 1214.502 -10.940 32.7|5 7 10| 3608| 2369 693 880 3459| 721 309 2586 717| 32 8693 8693
22000 3526.119 1248.374 -8.285 64.2|5 4 7| 402| 277 124 308 164| 182 216 131 105| 64 568 568
22800 478.875 1295.954 -7.185 38.9|5 3 6| 185| 82 101 100 120| 73 70 75 66| 38 206 206
23000 3933.540 1307.977 -9.727 123.5|5 4 7| 1249| 485 1142 513 785| 350 770 402 484| 123 1915 1915
24000 1834.970 1368.447 -13.659 69.2|5 11 14| 53523| 21446 19410 46918 9603| 17234 18850 9111 5855| 69 100722 100722
24133 721.651 1377.091 -7.572 22.4|5 4 7| 228| 76 159 93 85| 64 93 60 70| 22 308 308
25000 435.286 1427.514 -8.739 22.8|5 6 9| 448| 235 146 131 387| 111 59 291 90| 22 776 776
25496 143.877 1458.164 -8.671 34.1|5 5 8| 572| 235 315 289 193| 166 186 173 103| 34 816 816
26000 2269.187 1488.485 -15.152 133.6|9 0 0|1150357| 85113 58801 87200 84653| 84915 47511 78139 24469| 133 1407423 1407423
26789 903.420 1539.074 -12.012 51.4|5 5 8| 12034| 9808 1762 4527 3589| 4056 1279 3594 903| 51 21198 21198
27000 2294.737 1552.139 -7.110 45.8|5 3 6| 165| 95 123 114 90| 64 91 77 95| 45 197 197
28000 1463.091 1615.371 -8.250 33.0|5 5 8| 353| 233 143 286 121| 150 135 119 62| 33 554 554
28075 265.255 1619.881 -14.273 57.8|9 0 0| 511996| 54973 27588 36967 63689| 22487 11516 29060 11787| 57 659557 659557
29000 2566.089 1677.870 -10.285 55.3|5 5 8| 3021| 1295 797 836 1440| 586 410 795 548| 55 4562 4562
29343 382.097 1700.868 -11.477 31.4|5 10 13| 8698| 3385 2366 2336 3851| 1528 867 2402 1149| 31 12382 12382
30000 2469.431 1741.735 -11.892 68.3|5 8 11| 10276| 8037 1622 2541 6160| 2557 915 5710 1244| 68 22800 22800
30598 19.009 1781.803 -11.304 37.8|5 9 12| 6620| 2514 2480 1714 3797| 1126 837 1958 1258| 37 9843 9843
30938 2354.000 1803.000 -20.073 0.0|9 0 0|*******| 91272 90647 91460 90282| 92680 89485 93363 89124| 0 ******* *******
31000 3889.963 1807.472 -9.554 69.6|5 5 8| 1297| 484 465 1181 281| 466 432 227 198| 69 2189 2189
31853 302.427 1863.169 -8.464 31.3|5 5 8| 472| 393 92 239 162| 203 65 142 50| 31 842 842
32000 2634.893 1872.109 -9.692 37.8|5 5 8| 1800| 517 677 684 489| 363 428 355 254| 37 2400 2400
33000 829.078 1940.037 -11.793 40.1|5 10 13| 10915| 4485 3259 4113 3400| 2188 2019 2742 1255| 40 13370 13370
33062 230.648 1944.080 -10.239 74.0|5 6 9| 2384| 772 1862 911 864| 500 802 610 524| 74 4007 4007
34000 1594.576 2005.095 -13.041 67.0|5 11 14| 26499| 8754 23893 11735 10493| 5170 11668 6772 8087| 66 50442 50442
34289 573.836 2024.702 -7.297 30.2|5 4 7| 183| 64 100 89 145| 50 63 57 85| 30 302 302
35000 2294.406 2082.800 -12.772 43.5|5 11 14| 24055| 18604 4063 6922 10978| 5966 1896 10615 3105| 43 46246 46246
35321 87.872 2106.273 -9.365 39.2|5 6 9| 852| 312 382 745 422| 238 345 286 329| 39 1435 1435
36000 3888.204 2148.952 -12.007 126.2|5 6 9| 14652| 7028 3061 5308 4915| 3180 1556 3680 1656| 126 20567 20567
36535 1486.761 2186.898 -11.215 43.9|5 8 11| 5654| 1901 3474 2032 2559| 1078 1390 1574 1702| 43 8738 8738
37000 355.974 2219.208 -7.297 21.9|5 4 7| 168| 67 67 130 88| 75 54 69 53| 21 232 232
37676 728.766 2267.724 -8.656 30.1|5 5 8| 585| 157 304 169 349| 70 137 168 211| 30 935 935
38000 2309.573 2287.825 -8.263 54.1|5 4 7| 383| 138 357 148 242| 108 165 146 194| 54 680 680
38828 1353.954 2349.165 -10.203 39.3|5 6 9| 2059| 836 852 1361 660| 588 684 689 406| 39 3313 3313
39000 241.723 2362.117 -13.000 32.0|5 11 14| 30250| 9984 19000 14459 8940| 5496 10097 7291 5748| 31 54745 54745
40000 2319.151 2429.193 -7.469 54.8|5 3 6| 240| 146 109 151 107| 120 91 117 68| 54 264 264
40013 511.221 2429.853 -8.529 55.8|5 5 8| 615| 308 174 189 255| 154 86 235 119| 55 773 773
41000 2388.026 2494.559 -8.366 53.6|5 4 7| 406| 209 191 146 361| 117 105 219 152| 53 622 622
41220 18.237 2510.597 -7.948 64.7|5 4 7| 306| 187 129 136 250| 114 77 186 84| 64 416 416
41882 745.000 2556.000 -20.686 0.0|9 0 0|*******| 99082101477101343100241| 98384102703 97383101988| 0 ******* *******
42000 2796.368 2563.248 -11.900 70.1|5 8 11| 10887| 8210 1699 7200 2336| 5147 1273 2655 972| 70 24191 24191
42410 77.200 2591.841 -7.522 39.6|5 4 7| 243| 151 80 94 131| 84 55 99 65| 39 310 310
43000 2567.116 2630.747 -13.711 64.9|5 6 9| 69145| 27766 17416 16174 35799| 10263 6026 20435 10928| 64 108607 108607
43593 40.067 2672.641 -7.639 49.2|5 4 7| 237| 134 107 125 199| 70 77 116 84| 49 287 287
44000 1133.221 2699.532 -8.203 29.1|5 5 8| 351| 167 103 93 270| 83 70 216 88| 29 605 605
44767 776.651 2754.300 -11.249 36.4|5 9 12| 5251| 1889 3625 3722 1403| 1206 3013 1332 1133| 36 11747 11747
45000 2929.986 2768.720 -13.896 79.2|9 0 0| 361696| 27523 27475 20314 52371| 11322 8736 21869 16150| 79 463297 463297
45951 8.072 2834.604 -7.744 40.3|5 4 7| 249| 138 107 87 189| 60 67 128 92| 40 335 335
46000 1196.383 2837.562 -6.923 31.9|5 3 6| 107| 91 58 67 96| 52 45 94 47| 31 157 157
47000 3588.827 2907.592 -8.560 47.8|5 4 7| 553| 172 308 164 450| 91 107 164 219| 47 1021 1021
47105 386.423 2916.410 -7.588 41.0|5 4 7| 181| 150 72 172 88| 157 49 103 54| 40 340 340
48000 1564.930 2977.414 -11.507 38.0|5 9 12| 6674| 2806 2758 6041 1608| 2230 2713 1630 1062| 38 12979 12979
48297 72.100 2997.065 -9.320 32.3|5 6 9| 1060| 512 312 510 405| 262 243 306 165| 32 1405 1405
49000 3563.678 3043.640 -12.303 56.5|5 8 11| 14632| 4004 9956 3483 10997| 1866 3137 4110 6977| 56 31589 31589
49439 85.211 3077.826 -12.665 37.0|5 11 14| 22879| 11966 5275 6079 10229| 4133 1935 7663 2901| 36 34589 34589
50000 44.380 3118.820 -11.992 63.4|5 9 12| 11072| 8002 1961 3004 4891| 2457 738 4664 1274| 63 19176 19176
50586 575.934 3159.029 -8.568 37.3|5 5 8| 551| 204 243 209 221| 138 146 155 117| 37 662 662
51000 3938.156 3186.550 -11.083 75.2|5 7 10| 5062| 2471 1316 1126 4233| 877 552 2276 1153| 75 9954 9954
51697 560.607 3240.059 -10.322 40.5|5 6 9| 2539| 751 2013 973 862| 407 978 671 631| 40 4784 4784
52000 588.032 3262.179 -9.670 30.8|5 7 10| 1545| 611 460 866 437| 387 324 404 211| 30 2197 2197
52803 129.137 3320.511 -8.935 36.8|5 5 8| 614| 292 196 152 523| 126 101 340 168| 36 1032 1032
53000 726.705 3337.282 -10.145 66.0|5 6 9| 2111| 719 1339 1405 620| 491 1038 532 427| 66 4336 4336
53896 328.759 3402.493 -7.944 27.8|5 4 7| 245| 130 147 239 88| 91 162 103 78| 27 481 481
54000 3683.658 3409.042 -10.331 71.0|5 7 10| 2733| 724 1947 1174 991| 455 907 658 671| 70 4734 4734
54981 1016.683 3483.007 -7.997 29.5|5 4 7| 356| 116 252 138 130| 60 113 99 114| 29 569 569
55000 3461.380 3483.710 -9.127 35.4|5 5 8| 896| 623 155 209 480| 202 90 456 164| 35 1702 1702
56000 3868.481 3554.950 -7.393 76.3|5 3 6| 227| 206 94 130 125| 139 100 149 95| 76 264 264
56115 241.708 3563.931 -6.978 24.4|5 4 7| 165| 68 100 46 59| 34 61 45 69| 24 223 223
57000 3190.693 3626.654 -8.097 65.3|5 3 6| 348| 116 248 172 304| 139 107 122 214| 65 671 671
57251 719.568 3644.939 -6.795 25.8|5 3 6| 118| 61 107 46 60| 39 61 49 54| 25 167 167
58000 3932.493 3698.550 -8.315 70.3|5 4 7| 416| 366 92 129 326| 135 79 327 106| 70 926 926
58350 94.133 3725.494 -7.177 28.2|5 4 7| 149| 82 62 37 131| 51 46 80 55| 28 213 213
59000 2118.665 3774.106 -9.177 66.5|5 5 8| 969| 341 689 447 336| 218 364 258 262| 66 1600 1600
59414 208.290 3806.887 -8.293 28.2|5 5 8| 431| 272 101 149 181| 93 66 160 65| 28 618 618
60000 1432.443 3851.424 -6.662 27.3|5 4 7| 95| 93 36 94 58| 76 35 47 14| 27 195 195
60504 246.092 3887.642 -7.786 24.1|5 5 8| 244| 126 99 72 188| 61 39 109 79| 24 363 363
61000 2674.870 3923.764 -9.369 53.3|5 5 8| 1157| 382 562 325 696| 227 191 357 351| 53 1809 1809
61595 853.708 3968.708 -8.353 28.5|5 5 8| 419| 150 306 101 285| 111 90 147 164| 28 784 784
62000 1138.438 3999.202 -7.507 44.1|5 4 7| 229| 207 57 157 80| 121 54 97 71| 44 450 450
62627 2273.540 4049.857 -8.136 37.5|5 4 7| 310| 134 305 144 171| 83 124 148 173| 37 513 513
63000 668.771 4077.853 -10.592 29.1|5 8 11| 3408| 985 1931 889 1619| 511 603 976 875| 29 5410 5410
------- --------- --------- ------- ------|- -- --|-------| ----- ----- ----- -----| ----- ----- ----- -----| ------- ------- -------
NSTARS XCEN YCEN MAG SKY |M iS oS| PCEN| P02 P03 P04 P05| P06 P07 P08 P09| mSKY F2x2 F2x2-SK
------- --------- --------- ------- ------|- -- --|-------| ----- ----- ----- -----| ----- ----- ----- -----| ------- ------- -------
-----------------------------------------
FINDING STATISTICS
-----------------------------------------
Y NPIX %PIX EXPLANATION
1 32688 0.195% ..1..not on chip....
2 15550286 92.687% ..2..not loc max....
3 987174 5.884% ..3..h < hmax.......
4 46599 0.278% ..4..flux too low...
5 0 0.000% ..5..below mask thr.
6 0 0.000% ..6..out of bounds..
7 1449 0.009% ..7..loflag issues..
8 0 0.000% ..8..saturated......
9 1037 0.006% ..9..not contig sat.
10 0 0.000% .10..not loc sat max
11 0 0.000% .11..sat weirdness..
12 12903 0.077% .12..pk but not qsel
13 55 0.000% .13..pk too peaky...
14 9 0.000% .14..satd CR........
-----------------------------------------
15 61742 0.368% .15..good unsat.....
16 1454 0.009% .16..good satd......
#
#
#=======================================
# LUMINOSITY FUNCTION EXTRACTED
#
# MAG LFe CUMe LFe/s CUMe/s
#-------- ----- ------ ------- ------
# LF -21 1 1 0 0
# LF -20 10 11 0 0
# LF -19 20 31 0 0
# LF -18 46 77 0 0
# LF -17 131 208 0 0
# LF -16 188 396 0 0
# LF -15 346 742 6 6
# LF -14 1882 2624 15 21
# LF -13 4920 7544 34 55
# LF -12 7665 15209 88 143
# LF -11 8505 23714 159 302
# LF -10 8635 32349 263 565
# LF -9 11022 43371 903 1468
# LF -8 13359 56730 3529 4997
# LF -7 6428 63158 6619 11616
# LF -6 37 63195 8412 20028
# LF -5 1 63196 8426 28454
# LF -4 0 63196 9614 38068
# LF -3 0 63196 12990 51058
# LF -2 0 63196 10750 61808
# LF -1 0 63196 1388 63196
#-------- ----- ------ ------- ------
#
NIM
---> rDAT_N: 2021.55212 1
NIM: 1 / 1
---> NLISTs = 1 jeg057cxq_flt
---> NLIST = 1 NITEMs = 5 xymeq
OUTPUT LISTS...
NLISTs: 1
SETUPa--- 50
SETUPb --- 63196
--------------
FIND SPACING:
--------------
F01 (06:14) u -- u ref-frame
F02 (06:14) v -- v ref-frame
F03 (02:08) M -- instl mag (1000s)
F04 (03:11) x -- raw detector x pos
F05 (03:11) y -- raw detector y pos
F06 (02:08) m -- instl mag
F07 (02:02) k -- detector chip no
F08 (03:11) X -- dist-cor x posn
F09 (03:11) Y -- dist-cor y posn
F10 (01:02) h -- local isolation
F11 (04:08) H -- list-based isolatn
F12 (05:16) r -- RA (deg)
F13 (05:16) d -- Dec (deg)
F14 (05:16) R -- RA (deg; adjustd)
F15 (05:16) D -- Dec (deg; adjustd)
F16 (03:06) i -- peak pixel column
F17 (03:06) j -- peak pixel row
F18 (04:12) p -- peak pixel value
F19 (07:12) q -- quality of fit
F20 (07:12) c -- chisq of fit
F21 (06:14) U -- u ref-frame (corr)
F22 (05:14) V -- v ref-frame (corr)
F23 (01:01) k -- chip number
F24 (01:02) K -- chip number (w/K)
F25 (04:10) s -- sky value
F26 (04:10) S -- CTE bkgd value
F27 (04:06) n -- nsat pixels
F28 (01:10) t -- rdat observation
F29 (01:07) C -- centpix frac resid
F30 (01:06) o -- other flux
F31 (01:06) O -- max other flux
F32 (01:08) 1 -- diam=1 PBAP (1x1)
F33 (01:08) 2 -- diam=2 PBAP (2x2)
F34 (01:08) 3 -- diam=3 PBAP (3x3)
F35 (01:08) 4 -- diam=4 PBAP flux
F36 (01:08) 5 -- diam=5 PBAP flux
F37 (01:08) 6 -- diam=6 PBAP flux
F38 (01:08) 7 -- diam=7 PBAP flux
F39 (01:08) 8 -- diam=8 PBAP flux
F40 (01:08) 9 -- diam=9 PBAP flux
F41 (01:08) 0 -- PBAPsky: 5.5<r<8.5
F42 (01:10) z -- flux (can be neg)
F43 (01:08) N -- star number
F44 (02:08) w -- dist-corr inst mag
F45 (02:08) W -- w, zeropointed
F46 (01:05) e -- frac error scale
F47 (02:08) f -- central PSF value
F48 (02:08) F -- central PSF max
F49 (01:10) P -- 2x2 flux for fndng
F50 (06:10) E -- effective sky rad
*********************
***
*** NLISTs: 1
***
*********************
NLIST01: 5 jeg057cxq_flt.xymeq
Note: The following floating-point exceptions are signalling: IEEE_INVALID_FLAG IEEE_DIVIDE_BY_ZERO IEEE_DENORMAL
------------------------------------------------
ARG0000: ./hst1pass.e
ARG0001: HMIN=5
ARG0002: FMIN=150
ARG0003: PSF=STDPSF_ACSWFC_F606W_SM4.fits
ARG0004: PERT=1
ARG0005: OUT=xymeq
ARG0006: p16380/jeg057czq_flt.fits
----------------------------------------------
OUTPUT FROM PROGRAM hst1pass: ./hst1pass.e
HMIN: 5
FMIN: 150.0
PSFFILEI: STDPSF_ACSWFC_F606W_SM4.fits
GDCFILEI: NONE
DOAPPHOT: F
DOSATD: T
NPERTs: 1
WCSMODE: AUTO
PMAX: **********
KSEL: 0
QMAX: 0.500
CMIN: -1.000
CMAX: 0.250
NIMs: 001
NIM00001 p16380/jeg057czq_flt.fits
NIMa: 1
NIMb: 1
NIMs: 1
----------------------------------------------
NIM001 CALL sub_hst2ym on image p16380/jeg057czq_flt.fits
ENTER sub_hst2xym --
FILENAME: p16380/jeg057czq_flt.fits
FILENAMu: p16380/jeg057czq_flt.fits
VERBOSE : 1
HMIN : 5
FMIN : 150
IMIN/MAX: -9999 9999
JMIN/MAX: -9999 9999
DOSATD : T
ARTSTARs: 0
LSTSTARs: 0
GDC_INP : NONE
PSF_INP : STDPSF_ACSWFC_F606W_SM4.fits
WCSMODE : AUTO
SHOW_USE: -
SHOW_FND: -
SHOW_REF: -
SHOW_SUB: -
SHOW_ART: -
SHOW_MSK: -
DQ_MASK---
SMIN: 10.00
SMAX: 1000.00
LVL: 0.00
FLAG: 0
DOAPPHOT: F
STEMu : jeg057czq
FILTu : F606W
PROPu : 16380
RDATu : 2021.55220
INSTRUME: 'ACS '
DETECTOR: 'WFC'
FLASHSTA: 'NOT PERFORMED '
FLSHCORR: 'OMIT '
SHUTRPOS: B
FLASHCUR: O
FLASHDUR: 0.0
FLASHLVL: 0.0
DARKTIME: 153.2
DARKEST : 1.8
PSFFILE : STDPSF_ACSWFC_F606W_SM4.fits
GDCFILE : NONE
DOSATD : T
HIFLAG : 76000
IDENTIFY SATURATED STARS
CALL peak_sat_NAXIS 76000
LLAC peak_sat_NAXIS 76000
GET FLUXES FOR SATURATED STARS
PSFFILE_USE: STDPSF_ACSWFC_F606W_SM4.fits
----- ---- ---- ------ ------ ------------ ------ ------ ------
LIST I J MAG SKY FLUX NSAT NAP PSFTOT
----- ---- ---- ------ ------ ------------ ------ ------ ------
00001 1310 0011 -17.27 75.2 8087401.5 78 209 1.0032
00002 3262 0011 -14.05 72.9 416389.1 1 25 0.9087
00003 2390 0018 -18.54 161.6 26059594.0 266 591 1.0185
00004 1356 0024 -18.86 195.2 34931256.0 348 789 1.0222
00005 2849 0027 -14.08 64.0 428586.9 0 25 0.9088
00006 3162 0027 -15.19 88.1 1192080.1 7 52 0.9556
00007 0900 0031 -15.50 40.2 1584351.6 12 64 0.9737
00008 1321 0033 -14.19 63.6 475990.8 1 25 0.9049
00009 3865 0036 -15.96 78.3 2432165.8 20 88 0.9857
00010 3675 0041 -13.90 121.6 362170.0 1 25 0.9073
00020 1403 0057 -14.19 47.5 475565.0 1 25 0.9053
00030 0609 0066 -16.41 43.3 3662688.2 29 117 0.9876
00040 2411 0086 -15.01 75.0 1013455.2 5 50 0.9526
00050 2383 0092 -14.26 63.1 508133.9 1 25 0.9102
00060 0401 0117 -15.41 38.6 1454004.2 9 53 0.9452
00070 4075 0136 -14.48 96.0 618110.9 0 30 0.9255
00080 3427 0156 -15.36 59.8 1391044.8 10 58 0.9668
00090 3184 0182 -15.03 65.6 1027937.2 7 47 0.9499
00094 0290 0193 -18.96 186.9 38390096.0 353 939 1.0166
00100 3380 0202 -14.37 55.5 561435.7 2 30 0.9252
00134 2675 0252 -19.64 328.4 71936888.0 743 1945 1.0229
00175 2317 0337 -20.05 411.2 105026928.0 1062 2903 1.0241
00200 0886 0393 -14.00 30.8 399042.4 1 25 0.9070
00300 2154 0616 -17.54 88.6 10340895.0 98 322 1.0039
00400 0711 0799 -17.52 68.8 10170375.0 95 291 1.0050
00500 1530 1026 -13.92 41.7 369678.4 0 25 0.9129
00600 2957 1255 -14.05 91.3 415766.1 0 25 0.9102
00700 1906 1488 -14.07 53.3 423521.7 1 25 0.9040
00800 4077 1731 -15.33 95.1 1349149.5 9 62 0.9771
00838 2354 1803 -20.07 410.5 107072216.0 1037 2611 1.0268
00900 1560 1978 -15.25 56.8 1253879.9 9 56 0.9692
01000 1571 2313 -14.95 63.4 952693.2 3 35 0.9217
01084 0745 2556 -20.69 606.7 188144960.0 1747 4309 1.0329
01100 0532 2614 -14.99 36.6 987260.1 5 41 0.9445
01200 2722 2982 -14.39 76.1 567710.9 2 30 0.9300
01300 3075 3374 -14.04 58.9 411999.1 1 25 0.9127
01400 3185 3768 -14.13 41.9 446879.3 1 25 0.9128
----- ---- ---- ------ ------ ------------ ------ ------ ------
LIST I J MAG SKY FLUX NSAT NAP PSFTOT
----- ---- ---- ------ ------ ------------ ------ ------ ------
MEASURED SATd STARS: 1473 BRIGHTEST: L1084 0745 2556 -20.69
HISTMODE: 39.74
PSFFILE_INP: STDPSF_ACSWFC_F606W_SM4.fits
PSFFILE_PRT: jeg057czq_psf.fits
CALL FIND_PSFPERT -- 1x1
CENPERT : 1
1 0.0056
NOW, GO THROUGH IMAGE AND FIND STARS
------- --------- --------- ------- ------|- -- --|-------| ----- ----- ----- -----| ----- ----- ----- -----| ------- ------- -------
NSTARS XCEN YCEN MAG SKY |M iS oS| PCEN| P02 P03 P04 P05| P06 P07 P08 P09| mSKY F2x2 F2x2-SK
------- --------- --------- ------- ------|- -- --|-------| ----- ----- ----- -----| ----- ----- ----- -----| ------- ------- -------
1 134.887 5.979 -9.013 26.8|5 6 9| 765| 281 347 370 283| 168 174 204 231| 26 1007 1007
2 208.149 6.316 -10.306 28.1|5 8 11| 2532| 1286 651 1737 504| 894 580 541 248| 28 4451 4451
3 323.836 6.296 -12.786 51.1|5 8 11| 24878| 8813 12231 15563 5343| 5921 9362 5065 3348| 51 45557 45557
43 3805.820 8.435 -12.957 93.3|5 10 13| 26694| 8543 13621 23819 4804| 6991 13264 3857 3409| 93 58358 58358
72 3555.617 9.722 -13.224 72.4|5 10 13| 35301| 8584 28161 9672 22165| 4193 8001 8300 16751| 72 77278 77278
79 1310.000 11.000 -17.270 624.1|9 0 0|8087401| 87225 85494 85465 85680| 86465 84814 87225 84138| 624 8347373 8347373
209 2390.000 18.000 -18.540 856.1|9 0 0|*******| 81066 82082 83818 83962| 79743 82328 80201 82077| 856 ******* *******
307 1356.000 24.000 -18.858 944.3|9 0 0|*******| 89316 85334 89289 89869| 90011 86294 89461 86250| 944 ******* *******
1000 2935.193 60.901 -13.607 227.5|5 6 9| 64545| 31846 14659 18859 25340| 12727 6958 16893 7898| 227 98402 98402
1332 334.910 81.332 -8.702 37.0|5 6 9| 655| 263 291 454 141| 170 217 135 102| 37 1103 1103
2000 2328.197 117.167 -8.728 53.4|5 5 8| 629| 322 201 383 180| 242 166 260 97| 53 909 909
2875 604.935 161.748 -8.107 27.4|5 5 8| 411| 135 194 110 235| 105 62 116 96| 27 630 630
3000 3927.733 169.509 -7.342 70.5|5 3 6| 222| 115 153 202 84| 108 162 100 81| 70 355 355
3404 289.600 193.602 -18.961 843.4|9 0 0|*******| 97295 95790102247102541| 97203 97546 98009 95081| 843 ******* *******
4000 2600.773 226.630 -11.544 172.1|5 6 9| 8383| 2264 4504 2042 6120| 1095 1399 2298 3423| 172 16576 16576
4284 554.076 243.224 -8.540 27.3|5 5 8| 582| 265 196 313 125| 176 126 126 96| 27 848 848
4463 2674.574 251.944 -19.642 0.0|9 0 0|*******| 83394 82906 83295 83483| 82470 81416 82265 81941| 0 ******* *******
5000 1718.377 282.536 -10.889 35.4|5 7 10| 3781| 2708 626 846 3325| 770 339 2643 681| 35 9467 9467
5782 320.675 324.417 -11.269 87.7|5 5 8| 5225| 1830 3359 4225 1162| 1510 3064 1184 875| 87 11403 11403
6000 740.417 335.275 -10.628 25.2|5 8 11| 3069| 2621 542 1865 643| 1639 347 664 353| 25 6881 6881
6032 2317.000 337.000 -20.053 0.0|9 0 0|*******| 87045 87817 86768 86863| 87930 88529 87951 87136| 0 ******* *******
7000 3327.340 390.358 -15.694 192.3|9 0 0|1894652| 78846 64992 83756 82446| 78168 62587 77927 28671| 192 2135265 2135265
7260 133.901 405.032 -8.689 52.0|5 4 7| 529| 243 307 271 244| 185 193 234 137| 51 681 681
8000 333.725 447.472 -9.823 41.7|5 5 8| 1329| 509 867 1311 319| 455 870 297 243| 41 3167 3167
8710 366.695 486.471 -8.229 26.5|5 5 8| 370| 126 204 310 88| 86 250 89 73| 26 812 812
9000 3220.324 501.649 -7.196 42.8|5 3 6| 156| 125 91 111 138| 118 70 108 64| 42 207 207
10000 3422.298 558.616 -8.588 56.9|5 5 8| 574| 302 164 182 380| 176 92 338 154| 56 949 949
10104 122.659 567.181 -10.209 35.4|5 7 10| 2324| 734 1634 1141 666| 485 949 480 428| 35 4368 4368
11000 1744.638 615.019 -10.241 48.8|5 7 10| 2223| 825 1754 1139 787| 479 678 497 930| 48 3723 3723
11622 283.196 647.759 -7.435 25.8|5 3 6| 201| 119 65 87 138| 72 31 99 59| 25 324 324
12000 3358.149 668.274 -11.169 89.6|5 5 8| 6699| 2875 1546 3863 1338| 1856 1178 1117 625| 89 10816 10816
13000 3955.806 721.344 -12.317 137.1|5 7 10| 16517| 4932 8118 11615 3453| 3973 6523 2477 2207| 137 31344 31344
13124 120.565 728.998 -11.929 70.3|5 9 12| 9944| 3294 9566 3868 4197| 2111 3353 2587 3423| 70 18663 18663
14000 1025.524 780.028 -9.825 86.7|5 5 8| 1615| 1535 246 605 514| 652 181 609 201| 86 2882 2882
14533 252.164 809.633 -12.695 39.7|5 10 13| 23465| 11120 5558 4892 16871| 3674 1999 9371 4261| 39 44007 44007
15000 4071.052 833.734 -10.707 102.1|5 7 10| 4202| 1686 1350 1247 2747| 745 587 1207 900| 102 6675 6675
16000 1161.884 890.378 -7.143 58.8|5 3 6| 203| 111 108 169 82| 102 108 82 98| 58 254 254
16021 480.256 890.546 -9.978 26.9|5 7 10| 1703| 970 375 383 1533| 321 162 998 344| 26 3802 3802
17000 2743.398 946.710 -11.964 52.8|5 6 9| 11632| 8719 1825 2699 6992| 2460 987 6109 1463| 52 25773 25773
17454 304.248 972.079 -8.384 31.7|5 5 8| 473| 305 125 215 189| 154 83 127 91| 31 667 667
18000 1033.104 1002.919 -7.617 39.6|5 3 6| 277| 138 104 131 152| 95 76 96 69| 39 315 315
18851 237.266 1053.380 -9.000 41.9|5 5 8| 762| 457 189 588 170| 392 143 188 75| 41 1484 1484
19000 2766.014 1061.937 -9.337 72.8|5 5 8| 1495| 503 436 471 575| 270 257 320 274| 72 1821 1821
20000 3282.161 1119.594 -7.861 47.4|5 4 7| 307| 174 100 125 250| 86 80 155 132| 47 481 481
20229 592.224 1134.284 -10.005 35.7|5 5 8| 2211| 1148 410 1285 440| 739 294 384 209| 35 3897 3897
21000 2901.490 1179.673 -11.543 64.3|5 7 10| 6919| 6159 1069 1758 4398| 1795 648 4951 837| 64 17074 17074
21565 507.505 1215.124 -9.099 41.3|5 5 8| 762| 269 761 336 283| 199 385 183 274| 41 1451 1451
22000 1373.337 1239.236 -11.335 38.4|5 8 11| 6911| 4752 1173 3775 1481| 2545 804 1512 518| 38 13258 13258
22951 205.827 1296.534 -7.358 29.0|5 4 7| 171| 73 94 170 53| 84 104 54 52| 29 305 305
23000 2281.327 1298.255 -10.071 40.9|5 7 10| 2149| 1447 412 1226 490| 896 340 490 203| 40 4121 4121
24000 2266.102 1358.239 -12.844 99.1|5 9 12| 31190| 13398 8000 16459 6584| 8190 5531 5176 3090| 99 49378 49378
24288 721.584 1377.217 -7.501 30.2|5 4 7| 218| 73 167 121 99| 54 129 54 68| 30 378 378
25000 3262.049 1419.057 -7.842 109.3|5 3 6| 478| 226 202 244 209| 162 125 147 134| 109 490 490
25656 143.851 1458.168 -8.624 33.3|5 5 8| 543| 208 284 296 202| 162 203 172 111| 33 814 814
26000 3661.904 1477.043 -10.076 104.2|5 4 7| 2461| 826 1057 1123 821| 478 590 549 509| 104 3333 3333
26950 903.378 1539.044 -12.010 45.0|5 5 8| 12511| 9182 1915 4492 3937| 3718 1288 3677 1025| 44 20659 20659
27000 4034.134 1540.884 -12.165 98.1|5 8 11| 17171| 7588 4287 5174 7432| 3071 1980 4301 2291| 98 25661 25661
28000 2461.578 1605.872 -9.710 370.1|5 3 6| 1704| 707 1464 867 1067| 525 792 685 858| 370 2406 2406
28229 265.211 1619.900 -14.273 57.7|9 0 0| 511895| 50462 30699 36084 66341| 21164 12156 29257 13215| 57 657798 657798
29000 1920.222 1667.821 -11.594 67.4|5 8 11| 8792| 4561 2041 2439 4675| 1815 1040 3159 1354| 67 14886 14886
29514 382.051 1700.843 -11.477 36.9|5 10 13| 8565| 3234 2637 2172 4180| 1525 983 2387 1296| 36 12410 12410
30000 1925.045 1732.106 -8.877 45.0|5 5 8| 764| 352 286 354 292| 210 199 196 119| 45 915 915
30789 18.955 1781.788 -11.303 38.4|5 9 12| 6586| 2297 2820 1751 3940| 1033 864 1932 1402| 38 10502 10502
31000 2649.631 1794.712 -11.338 66.7|5 7 10| 6090| 1558 4616 1716 3991| 843 1385 1664 2999| 66 13077 13077
31129 2354.000 1803.000 -20.074 0.0|9 0 0|*******| 91278 90584 91340 90278| 92671 89495 93301 89066| 0 ******* *******
32000 4029.475 1859.120 -9.235 53.9|5 5 8| 904| 866 213 444 308| 443 168 343 109| 53 1708 1708
32044 302.397 1863.148 -8.427 36.6|5 5 8| 501| 371 94 234 137| 187 71 149 65| 36 825 825
33000 2619.892 1926.346 -8.395 54.4|5 4 7| 389| 181 238 375 261| 212 137 159 157| 54 518 518
33259 230.591 1944.069 -10.280 73.8|5 6 9| 2394| 756 1999 934 901| 486 903 610 649| 73 4169 4169
34000 1391.952 1991.842 -7.424 34.3|5 4 7| 170| 94 99 107 128| 89 83 99 84| 34 194 194
34498 573.947 2024.602 -7.449 25.9|5 4 7| 183| 80 85 92 167| 44 66 87 80| 25 280 280
35000 853.097 2067.931 -9.246 37.4|5 5 8| 1118| 451 290 432 393| 229 203 334 213| 37 1373 1373
35540 87.820 2106.237 -9.309 48.3|5 6 9| 828| 312 414 707 446| 218 391 258 344| 48 1446 1446
36000 827.765 2135.977 -11.677 39.0|5 10 13| 9592| 2771 5459 3750 3235| 1417 2192 2331 2345| 38 14877 14877
36749 1486.724 2186.875 -11.206 50.8|5 8 11| 5493| 1787 3588 1982 2613| 976 1393 1516 1848| 50 8925 8925
37000 1324.512 2202.618 -7.376 31.9|5 4 7| 157| 54 150 82 123| 61 60 61 127| 31 315 315
37897 728.717 2267.685 -8.689 34.5|5 5 8| 575| 158 326 171 348| 66 153 183 269| 34 972 972
38000 3660.274 2273.857 -12.427 82.5|5 8 11| 20602| 11706 3852 6185 8553| 4503 1818 6334 2553| 82 33448 33448
39000 3745.222 2345.432 -7.274 43.5|5 3 6| 189| 99 70 160 84| 133 77 73 57| 43 284 284
39038 1028.312 2348.883 -7.205 50.8|5 3 6| 192| 125 75 93 104| 98 73 111 61| 50 196 196
40000 2854.709 2414.008 -8.298 46.9|5 3 6| 618| 153 283 160 180| 91 150 111 129| 46 739 739
40221 511.177 2429.787 -8.618 42.9|5 5 8| 589| 280 173 175 316| 143 95 220 125| 42 774 774
41000 3819.129 2481.045 -9.659 45.1|5 6 9| 1644| 761 448 751 596| 425 282 374 227| 45 2326 2326
41422 18.220 2510.548 -8.003 63.1|5 4 7| 315| 188 132 107 249| 107 68 203 116| 63 447 447
42000 3604.101 2549.265 -10.345 49.6|5 7 10| 2816| 1218 823 1949 724| 839 616 598 341| 49 4618 4618
42088 745.000 2556.000 -20.686 0.0|9 0 0|*******| 99087101515101331100142| 98269102719 97400101924| 0 ******* *******
42627 77.146 2591.777 -7.668 44.0|5 4 7| 288| 152 95 115 165| 82 59 121 80| 43 383 383
43000 1426.777 2616.060 -10.323 31.0|5 7 10| 2525| 831 1516 1194 943| 568 797 669 587| 31 4148 4148
43811 40.131 2672.592 -7.642 50.8|5 4 7| 259| 133 88 92 200| 82 75 124 98| 50 331 331
44000 2270.950 2686.018 -7.545 34.8|5 4 7| 254| 111 114 131 119| 70 81 84 80| 34 299 299
44983 776.609 2754.285 -11.254 32.5|5 9 12| 5083| 1844 3898 3410 1498| 1233 3234 1345 1135| 32 11702 11702
45000 3813.883 2754.362 -8.600 57.6|5 4 7| 534| 203 263 446 210| 206 226 151 124| 57 845 845
46000 793.034 2822.153 -8.699 37.5|5 5 8| 597| 290 196 355 221| 210 167 195 146| 37 863 863
46188 229.682 2834.727 -9.680 27.6|5 7 10| 1403| 375 940 318 754| 152 287 453 529| 27 2535 2535
47000 2962.590 2893.229 -11.696 49.2|5 8 11| 8820| 2382 7334 5340 2169| 1487 4438 1706 1884| 49 20197 20197
47330 331.009 2916.375 -7.170 53.0|5 3 6| 175| 100 91 145 94| 97 85 86 77| 53 158 158
48000 3821.708 2961.452 -12.131 93.4|5 8 11| 11401| 3769 7248 10890 2838| 3264 7413 2059 1978| 93 27738 27738
48506 72.070 2997.087 -9.330 33.2|5 6 9| 1059| 500 370 516 391| 259 248 285 153| 33 1399 1399
49000 1710.768 3029.611 -7.387 35.5|5 4 7| 177| 93 117 64 151| 76 61 67 95| 35 256 256
49660 85.165 3077.823 -12.663 33.4|5 11 14| 23326| 11347 5862 6097 10481| 3770 2113 7336 3240| 33 34316 34316
50000 11.182 3102.505 -7.424 48.6|5 3 6| 181| 112 94 89 164| 70 46 123 75| 48 222 222
50816 575.945 3159.047 -8.608 30.9|5 5 8| 581| 205 244 229 214| 146 116 168 143| 30 689 689
51000 3920.204 3171.932 -12.132 124.5|5 6 9| 15516| 7722 3516 5473 6028| 3382 1723 4395 1926| 124 22472 22472
51947 560.565 3240.023 -10.319 39.9|5 6 9| 2377| 761 2094 909 889| 421 912 689 681| 39 4503 4503
52000 3364.190 3242.661 -11.636 78.3|5 8 11| 9642| 4491 2048 1893 6059| 1594 782 3656 1712| 78 17327 17327
53000 1230.414 3315.906 -9.037 39.1|5 6 9| 783| 644 143 276 347| 273 110 349 94| 39 1382 1382
53067 129.145 3320.471 -8.871 43.0|5 5 8| 604| 284 171 181 522| 94 66 317 192| 42 996 996
54000 382.544 3389.653 -7.152 32.4|5 4 7| 141| 138 50 45 93| 48 22 105 47| 32 250 250
54180 122.663 3402.379 -6.892 22.3|5 4 7| 108| 66 67 78 51| 48 81 39 44| 22 159 159
55000 3091.146 3461.222 -10.478 41.0|5 7 10| 3448| 1553 803 2034 778| 997 511 741 416| 40 5792 5792
55282 720.677 3483.443 -8.262 37.7|5 5 8| 353| 162 224 300 135| 122 261 124 107| 37 736 736
56000 3060.527 3533.288 -9.806 33.5|5 7 10| 1414| 402 1370 908 405| 308 900 277 297| 33 3481 3481
56439 241.651 3563.808 -6.848 23.5|5 4 7| 111| 59 103 42 66| 52 36 54 47| 23 155 155
57000 3895.032 3602.089 -7.902 46.3|5 3 6| 321| 141 139 186 166| 116 98 104 96| 46 347 347
57568 719.260 3645.050 -6.910 24.5|5 3 6| 162| 95 38 69 57| 55 33 54 29| 24 215 215
58000 1836.558 3675.006 -8.419 57.7|5 4 7| 508| 190 432 176 208| 115 227 154 186| 57 804 804
58672 94.195 3725.566 -7.095 26.8|5 4 7| 146| 85 56 50 121| 39 32 81 41| 26 231 231
59000 1031.933 3750.822 -8.070 46.2|5 4 7| 410| 169 179 126 214| 102 100 134 104| 46 455 455
59746 208.281 3806.877 -8.249 27.3|5 5 8| 383| 233 107 154 189| 111 52 166 64| 27 545 545
60000 1038.965 3825.954 -9.690 22.9|5 7 10| 1777| 571 614 527 613| 261 248 393 293| 22 2200 2200
60858 246.080 3887.526 -7.814 23.0|5 5 8| 256| 100 103 60 216| 31 40 125 69| 22 406 406
61000 879.024 3898.434 -8.710 33.9|5 6 9| 583| 254 187 521 157| 224 204 171 93| 33 1001 1001
61981 853.596 3968.717 -8.344 25.4|5 5 8| 370| 106 349 119 266| 81 85 140 177| 25 777 777
62000 1182.018 3970.283 -7.160 34.0|5 3 6| 208| 71 67 119 60| 77 68 69 50| 34 244 244
63000 1356.788 4049.194 -12.587 31.9|5 11 14| 21470| 6826 11053 11183 5975| 4127 7009 4987 3638| 31 37712 37712
63011 2273.478 4049.901 -8.174 39.6|5 5 8| 346| 341 94 143 171| 148 55 186 85| 39 601 601
------- --------- --------- ------- ------|- -- --|-------| ----- ----- ----- -----| ----- ----- ----- -----| ------- ------- -------
NSTARS XCEN YCEN MAG SKY |M iS oS| PCEN| P02 P03 P04 P05| P06 P07 P08 P09| mSKY F2x2 F2x2-SK
------- --------- --------- ------- ------|- -- --|-------| ----- ----- ----- -----| ----- ----- ----- -----| ------- ------- -------
-----------------------------------------
FINDING STATISTICS
-----------------------------------------
Y NPIX %PIX EXPLANATION
1 32688 0.195% ..1..not on chip....
2 15546760 92.666% ..2..not loc max....
3 991836 5.912% ..3..h < hmax.......
4 48033 0.286% ..4..flux too low...
5 0 0.000% ..5..below mask thr.
6 0 0.000% ..6..out of bounds..
7 1446 0.009% ..7..loflag issues..
8 0 0.000% ..8..saturated......
9 1027 0.006% ..9..not contig sat.
10 0 0.000% .10..not loc sat max
11 0 0.000% .11..sat weirdness..
12 9968 0.059% .12..pk but not qsel
13 41 0.000% .13..pk too peaky...
14 6 0.000% .14..satd CR........
-----------------------------------------
15 62132 0.370% .15..good unsat.....
16 1459 0.009% .16..good satd......
#
#
#=======================================
# LUMINOSITY FUNCTION EXTRACTED
#
# MAG LFe CUMe LFe/s CUMe/s
#-------- ----- ------ ------- ------
# LF -21 1 1 0 0
# LF -20 10 11 0 0
# LF -19 20 31 0 0
# LF -18 46 77 0 0
# LF -17 131 208 0 0
# LF -16 188 396 0 0
# LF -15 346 742 6 6
# LF -14 1886 2628 15 21
# LF -13 4907 7535 34 55
# LF -12 7668 15203 88 143
# LF -11 8526 23729 159 302
# LF -10 8656 32385 265 567
# LF -9 10935 43320 905 1472
# LF -8 13696 57016 3534 5006
# LF -7 6532 63548 6604 11610
# LF -6 42 63590 8442 20052
# LF -5 1 63591 8429 28481
# LF -4 0 63591 9570 38051
# LF -3 0 63591 13080 51131
# LF -2 0 63591 10992 62123
# LF -1 0 63591 1468 63591
#-------- ----- ------ ------- ------
#
NIM
---> rDAT_N: 2021.55225 1
NIM: 1 / 1
---> NLISTs = 1 jeg057czq_flt
---> NLIST = 1 NITEMs = 5 xymeq
OUTPUT LISTS...
NLISTs: 1
SETUPa--- 50
SETUPb --- 63591
--------------
FIND SPACING:
--------------
F01 (06:14) u -- u ref-frame
F02 (06:14) v -- v ref-frame
F03 (02:08) M -- instl mag (1000s)
F04 (03:11) x -- raw detector x pos
F05 (03:11) y -- raw detector y pos
F06 (02:08) m -- instl mag
F07 (02:02) k -- detector chip no
F08 (03:11) X -- dist-cor x posn
F09 (03:11) Y -- dist-cor y posn
F10 (01:02) h -- local isolation
F11 (04:08) H -- list-based isolatn
F12 (05:16) r -- RA (deg)
F13 (05:16) d -- Dec (deg)
F14 (05:16) R -- RA (deg; adjustd)
F15 (05:16) D -- Dec (deg; adjustd)
F16 (03:06) i -- peak pixel column
F17 (03:06) j -- peak pixel row
F18 (04:12) p -- peak pixel value
F19 (05:12) q -- quality of fit
F20 (07:12) c -- chisq of fit
F21 (06:14) U -- u ref-frame (corr)
F22 (05:14) V -- v ref-frame (corr)
F23 (01:01) k -- chip number
F24 (01:02) K -- chip number (w/K)
F25 (04:10) s -- sky value
F26 (04:10) S -- CTE bkgd value
F27 (04:06) n -- nsat pixels
F28 (01:10) t -- rdat observation
F29 (01:07) C -- centpix frac resid
F30 (01:06) o -- other flux
F31 (01:06) O -- max other flux
F32 (01:08) 1 -- diam=1 PBAP (1x1)
F33 (01:08) 2 -- diam=2 PBAP (2x2)
F34 (01:08) 3 -- diam=3 PBAP (3x3)
F35 (01:08) 4 -- diam=4 PBAP flux
F36 (01:08) 5 -- diam=5 PBAP flux
F37 (01:08) 6 -- diam=6 PBAP flux
F38 (01:08) 7 -- diam=7 PBAP flux
F39 (01:08) 8 -- diam=8 PBAP flux
F40 (01:08) 9 -- diam=9 PBAP flux
F41 (01:08) 0 -- PBAPsky: 5.5<r<8.5
F42 (01:10) z -- flux (can be neg)
F43 (01:08) N -- star number
F44 (02:08) w -- dist-corr inst mag
F45 (02:08) W -- w, zeropointed
F46 (01:05) e -- frac error scale
F47 (02:08) f -- central PSF value
F48 (02:08) F -- central PSF max
F49 (01:10) P -- 2x2 flux for fndng
F50 (06:10) E -- effective sky rad
*********************
***
*** NLISTs: 1
***
*********************
NLIST01: 5 jeg057czq_flt.xymeq
Note: The following floating-point exceptions are signalling: IEEE_INVALID_FLAG IEEE_DIVIDE_BY_ZERO IEEE_DENORMAL
Now we read in the hst1pass output and plot the q metric as a function of instrumental magnitude m.
for flt in flt_files:
root = flt.split('/')[-1].split('_flt.fits')[0]
tab = ascii.read(f'{root}_flt.xymeq', names=['x', 'y', 'mag', 'error', 'q'])
plt.figure()
plt.scatter(tab['mag'], tab['q'], 2, alpha=0.5, marker='.')
plt.ylim(-0.03, 0.5)
plt.xlabel('Instrumental Magnitude (mag)')
plt.ylabel('q')
plt.title(f'{root}_flt.fits')
plt.grid(alpha=0.3)
The above plots show a rather typical distribution of q as a function of instrumental magnitude for the first, second, fifth, and sixth images. Saturated stars on the lower left of the plots have q defined as 0. Bright, well-fit stars have q values <~0.2.
As expected, the library PSF is not a good match for the smeared sources in the third and fourth images, in which all sources have q values above 0.2-0.3. Cosmic rays typically fall in this range too.
5. Summary & Additional Resources#
In this notebook, we’ve shown you how to download data from an ACS exception report, display that data and the observing log information, interpret the observing log information for guide star problems, plot and inspect jitter information, and if desired, run hst1pass to further investigate PSF quality in the images.
More details may be found on the ACS website and in the ACS Instrument and Data Handbooks.
Please visit the HST Help Desk. Through the help desk portal, you can explore the HST Knowledge Base and request additional help from experts.
Additional resources that may be helpful:
About this Notebook#
Author: Jenna Ryon, ACS Instrument Team
Updated On: June 2025
Citations#
If you use Python packages for published research, please cite the authors. Follow these links for more
information about citing packages such as astropy, astroquery, matplotlib, photutils, etc.:
For more help:#
More details may be found on the ACS website and in the ACS Instrument and Data Handbooks.
Please visit the HST Help Desk. Through the help desk portal, you can explore the HST Knowledge Base and request additional help from experts.
