LSST Applications 27.0.0,g0265f82a02+469cd937ee,g02d81e74bb+21ad69e7e1,g1470d8bcf6+cbe83ee85a,g2079a07aa2+e67c6346a6,g212a7c68fe+04a9158687,g2305ad1205+94392ce272,g295015adf3+81dd352a9d,g2bbee38e9b+469cd937ee,g337abbeb29+469cd937ee,g3939d97d7f+72a9f7b576,g487adcacf7+71499e7cba,g50ff169b8f+5929b3527e,g52b1c1532d+a6fc98d2e7,g591dd9f2cf+df404f777f,g5a732f18d5+be83d3ecdb,g64a986408d+21ad69e7e1,g858d7b2824+21ad69e7e1,g8a8a8dda67+a6fc98d2e7,g99cad8db69+f62e5b0af5,g9ddcbc5298+d4bad12328,ga1e77700b3+9c366c4306,ga8c6da7877+71e4819109,gb0e22166c9+25ba2f69a1,gb6a65358fc+469cd937ee,gbb8dafda3b+69d3c0e320,gc07e1c2157+a98bf949bb,gc120e1dc64+615ec43309,gc28159a63d+469cd937ee,gcf0d15dbbd+72a9f7b576,gdaeeff99f8+a38ce5ea23,ge6526c86ff+3a7c1ac5f1,ge79ae78c31+469cd937ee,gee10cc3b42+a6fc98d2e7,gf1cff7945b+21ad69e7e1,gfbcc870c63+9a11dc8c8f
LSST Data Management Base Package
Loading...
Searching...
No Matches
Public Member Functions | Static Public Attributes | List of all members
lsst.ip.isr.isrTaskLSST.IsrTaskLSSTConnections Class Reference
Inheritance diagram for lsst.ip.isr.isrTaskLSST.IsrTaskLSSTConnections:
lsst.ip.isr.isrTaskLSST.IsrTaskLSSTConfig

Public Member Functions

 __init__ (self, *config=None)
 

Static Public Attributes

 ccdExposure
 
 camera
 
 dnlLUT
 
 bias
 
 deferredChargeCalib
 
 linearizer
 
 ptc
 
 crosstalk
 
 defects
 
 bfKernel
 
 dark
 
 outputExposure
 
 preInterpExposure
 
 outputBin1Exposure
 
 outputBin2Exposure
 
 outputStatistics
 

Detailed Description

Definition at line 30 of file isrTaskLSST.py.

Constructor & Destructor Documentation

◆ __init__()

lsst.ip.isr.isrTaskLSST.IsrTaskLSSTConnections.__init__ ( self,
* config = None )

Definition at line 142 of file isrTaskLSST.py.

142 def __init__(self, *, config=None):
143 super().__init__(config=config)
144
145 if config.doDiffNonLinearCorrection is not True:
146 del self.dnlLUT
147 if config.doBias is not True:
148 del self.bias
149 if config.doDeferredCharge is not True:
150 del self.deferredChargeCalib
151 if config.doLinearize is not True:
152 del self.linearizer
153 if not config.doCrosstalk and not config.overscanCamera.doAnyParallelOverscanCrosstalk:
154 del self.crosstalk
155 if config.doDefect is not True:
156 del self.defects
157 if config.doBrighterFatter is not True:
158 del self.bfKernel
159 if config.doDark is not True:
160 del self.dark
161
162 if config.doBinnedExposures is not True:
163 del self.outputBin1Exposure
164 del self.outputBin2Exposure
165 if config.doSaveInterpPixels is not True:
166 del self.preInterpExposure
167
168 if config.doCalculateStatistics is not True:
169 del self.outputStatistics
170
171

Member Data Documentation

◆ bfKernel

lsst.ip.isr.isrTaskLSST.IsrTaskLSSTConnections.bfKernel
static
Initial value:
= cT.PrerequisiteInput(
name='brighterFatterKernel',
doc="Complete kernel + gain solutions.",
storageClass="BrighterFatterKernel",
dimensions=["instrument", "detector"],
isCalibration=True,
)

Definition at line 96 of file isrTaskLSST.py.

◆ bias

lsst.ip.isr.isrTaskLSST.IsrTaskLSSTConnections.bias
static
Initial value:
= cT.PrerequisiteInput(
name="bias",
doc="Input bias calibration.",
storageClass="ExposureF",
dimensions=["instrument", "detector"],
isCalibration=True,
)

Definition at line 54 of file isrTaskLSST.py.

◆ camera

lsst.ip.isr.isrTaskLSST.IsrTaskLSSTConnections.camera
static
Initial value:
= cT.PrerequisiteInput(
name="camera",
storageClass="Camera",
doc="Input camera to construct complete exposures.",
dimensions=["instrument"],
isCalibration=True,
)

Definition at line 39 of file isrTaskLSST.py.

◆ ccdExposure

lsst.ip.isr.isrTaskLSST.IsrTaskLSSTConnections.ccdExposure
static
Initial value:
= cT.Input(
name="raw",
doc="Input exposure to process.",
storageClass="Exposure",
dimensions=["instrument", "exposure", "detector"],
)

Definition at line 33 of file isrTaskLSST.py.

◆ crosstalk

lsst.ip.isr.isrTaskLSST.IsrTaskLSSTConnections.crosstalk
static
Initial value:
= cT.PrerequisiteInput(
name="crosstalk",
doc="Input crosstalk object",
storageClass="CrosstalkCalib",
dimensions=["instrument", "detector"],
isCalibration=True,
)

Definition at line 82 of file isrTaskLSST.py.

◆ dark

lsst.ip.isr.isrTaskLSST.IsrTaskLSSTConnections.dark
static
Initial value:
= cT.PrerequisiteInput(
name='dark',
doc="Input dark calibration.",
storageClass="ExposureF",
dimensions=["instrument", "detector"],
isCalibration=True,
)

Definition at line 103 of file isrTaskLSST.py.

◆ defects

lsst.ip.isr.isrTaskLSST.IsrTaskLSSTConnections.defects
static
Initial value:
= cT.PrerequisiteInput(
name='defects',
doc="Input defect tables.",
storageClass="Defects",
dimensions=["instrument", "detector"],
isCalibration=True,
)

Definition at line 89 of file isrTaskLSST.py.

◆ deferredChargeCalib

lsst.ip.isr.isrTaskLSST.IsrTaskLSSTConnections.deferredChargeCalib
static
Initial value:
= cT.PrerequisiteInput(
name="cpCtiCalib",
doc="Deferred charge/CTI correction dataset.",
storageClass="IsrCalib",
dimensions=["instrument", "detector"],
isCalibration=True,
)

Definition at line 61 of file isrTaskLSST.py.

◆ dnlLUT

lsst.ip.isr.isrTaskLSST.IsrTaskLSSTConnections.dnlLUT
static
Initial value:
= cT.PrerequisiteInput(
name="dnlLUT",
doc="Look-up table for differential non-linearity.",
storageClass="IsrCalib",
dimensions=["instrument", "exposure", "detector"],
isCalibration=True,
# TODO DM 36636
)

Definition at line 46 of file isrTaskLSST.py.

◆ linearizer

lsst.ip.isr.isrTaskLSST.IsrTaskLSSTConnections.linearizer
static
Initial value:
= cT.PrerequisiteInput(
name='linearizer',
storageClass="Linearizer",
doc="Linearity correction calibration.",
dimensions=["instrument", "detector"],
isCalibration=True,
)

Definition at line 68 of file isrTaskLSST.py.

◆ outputBin1Exposure

lsst.ip.isr.isrTaskLSST.IsrTaskLSSTConnections.outputBin1Exposure
static
Initial value:
= cT.Output(
name="postIsrBin1",
doc="First binned image.",
storageClass="ExposureF",
dimensions=["instrument", "exposure", "detector"],
)

Definition at line 122 of file isrTaskLSST.py.

◆ outputBin2Exposure

lsst.ip.isr.isrTaskLSST.IsrTaskLSSTConnections.outputBin2Exposure
static
Initial value:
= cT.Output(
name="postIsrBin2",
doc="Second binned image.",
storageClass="ExposureF",
dimensions=["instrument", "exposure", "detector"],
)

Definition at line 128 of file isrTaskLSST.py.

◆ outputExposure

lsst.ip.isr.isrTaskLSST.IsrTaskLSSTConnections.outputExposure
static
Initial value:
= cT.Output(
name='postISRCCD',
doc="Output ISR processed exposure.",
storageClass="Exposure",
dimensions=["instrument", "exposure", "detector"],
)

Definition at line 110 of file isrTaskLSST.py.

◆ outputStatistics

lsst.ip.isr.isrTaskLSST.IsrTaskLSSTConnections.outputStatistics
static
Initial value:
= cT.Output(
name="isrStatistics",
doc="Output of additional statistics table.",
storageClass="StructuredDataDict",
dimensions=["instrument", "exposure", "detector"],
)

Definition at line 135 of file isrTaskLSST.py.

◆ preInterpExposure

lsst.ip.isr.isrTaskLSST.IsrTaskLSSTConnections.preInterpExposure
static
Initial value:
= cT.Output(
name='preInterpISRCCD',
doc="Output ISR processed exposure, with pixels left uninterpolated.",
storageClass="ExposureF",
dimensions=["instrument", "exposure", "detector"],
)

Definition at line 116 of file isrTaskLSST.py.

◆ ptc

lsst.ip.isr.isrTaskLSST.IsrTaskLSSTConnections.ptc
static
Initial value:
= cT.PrerequisiteInput(
name="ptc",
doc="Input Photon Transfer Curve dataset",
storageClass="PhotonTransferCurveDataset",
dimensions=["instrument", "detector"],
isCalibration=True,
)

Definition at line 75 of file isrTaskLSST.py.


The documentation for this class was generated from the following file: