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.pipe.tasks.computeExposureSummaryStats.ComputeExposureSummaryStatsConfig Class Reference
Inheritance diagram for lsst.pipe.tasks.computeExposureSummaryStats.ComputeExposureSummaryStatsConfig:

Public Member Functions

 setDefaults (self)
 

Static Public Attributes

 sigmaClip
 
 clipIter
 
 badMaskPlanes
 
 starSelection
 
 starSelector
 
 starShape
 
 psfShape
 
 psfSampling
 
 psfGridSampling
 
 psfBadMaskPlanes
 
 fiducialSkyBackground
 
 fiducialPsfSigma
 
 fiducialZeroPoint
 
 maxEffectiveTransparency
 

Detailed Description

Config for ComputeExposureSummaryTask

Definition at line 41 of file computeExposureSummaryStats.py.

Member Function Documentation

◆ setDefaults()

lsst.pipe.tasks.computeExposureSummaryStats.ComputeExposureSummaryStatsConfig.setDefaults ( self)

Definition at line 122 of file computeExposureSummaryStats.py.

122 def setDefaults(self):
123 super().setDefaults()
124
125 self.starSelector.setDefaults()
126 self.starSelector.doFlags = True
127 self.starSelector.doSignalToNoise = True
128 self.starSelector.doUnresolved = False
129 self.starSelector.doIsolated = False
130 self.starSelector.doRequireFiniteRaDec = False
131 self.starSelector.doRequirePrimary = False
132
133 self.starSelector.signalToNoise.minimum = 50.0
134 self.starSelector.signalToNoise.maximum = 1000.0
135
136 self.starSelector.flags.bad = ["slot_Shape_flag", "slot_PsfFlux_flag"]
137 # Select stars used for PSF modeling.
138 self.starSelector.flags.good = ["calib_psf_used"]
139
140 self.starSelector.signalToNoise.fluxField = "slot_PsfFlux_instFlux"
141 self.starSelector.signalToNoise.errField = "slot_PsfFlux_instFluxErr"
142
143

Member Data Documentation

◆ badMaskPlanes

lsst.pipe.tasks.computeExposureSummaryStats.ComputeExposureSummaryStatsConfig.badMaskPlanes
static
Initial value:
= pexConfig.ListField(
dtype=str,
doc="Mask planes that, if set, the associated pixel should not be included sky noise calculation.",
default=("NO_DATA", "SUSPECT"),
)

Definition at line 53 of file computeExposureSummaryStats.py.

◆ clipIter

lsst.pipe.tasks.computeExposureSummaryStats.ComputeExposureSummaryStatsConfig.clipIter
static
Initial value:
= pexConfig.Field(
dtype=int,
doc="Number of iterations of outlier rejection for sky noise.",
default=2,
)

Definition at line 48 of file computeExposureSummaryStats.py.

◆ fiducialPsfSigma

lsst.pipe.tasks.computeExposureSummaryStats.ComputeExposureSummaryStatsConfig.fiducialPsfSigma
static
Initial value:
= pexConfig.DictField(
keytype=str,
itemtype=float,
doc="Fiducial PSF sigma (pixels) assumed when calculating effective exposure time. "
"Keyed by band.",
default={'u': 1.0, 'g': 1.0, 'r': 1.0, 'i': 1.0, 'z': 1.0, 'y': 1.0},
)

Definition at line 102 of file computeExposureSummaryStats.py.

◆ fiducialSkyBackground

lsst.pipe.tasks.computeExposureSummaryStats.ComputeExposureSummaryStatsConfig.fiducialSkyBackground
static
Initial value:
= pexConfig.DictField(
keytype=str,
itemtype=float,
doc="Fiducial sky background level (ADU/s) assumed when calculating effective exposure time. "
"Keyed by band.",
default={'u': 1.0, 'g': 1.0, 'r': 1.0, 'i': 1.0, 'z': 1.0, 'y': 1.0},
)

Definition at line 95 of file computeExposureSummaryStats.py.

◆ fiducialZeroPoint

lsst.pipe.tasks.computeExposureSummaryStats.ComputeExposureSummaryStatsConfig.fiducialZeroPoint
static
Initial value:
= pexConfig.DictField(
keytype=str,
itemtype=float,
doc="Fiducial zero point assumed when calculating effective exposure time. "
"Keyed by band.",
default={'u': 25.0, 'g': 25.0, 'r': 25.0, 'i': 25.0, 'z': 25.0, 'y': 25.0},
)

Definition at line 109 of file computeExposureSummaryStats.py.

◆ maxEffectiveTransparency

lsst.pipe.tasks.computeExposureSummaryStats.ComputeExposureSummaryStatsConfig.maxEffectiveTransparency
static
Initial value:
= pexConfig.Field(
dtype=float,
doc="Maximum value allowed for effective transparency scale factor (often inf or 1.0).",
default=float('inf')
)

Definition at line 116 of file computeExposureSummaryStats.py.

◆ psfBadMaskPlanes

lsst.pipe.tasks.computeExposureSummaryStats.ComputeExposureSummaryStatsConfig.psfBadMaskPlanes
static
Initial value:
= pexConfig.ListField(
dtype=str,
doc="Mask planes that, if set, the associated pixel should not be included in the PSF model "
"robutsness metric calculations (namely, maxDistToNearestPsf and psfTraceRadiusDelta).",
default=("BAD", "CR", "EDGE", "INTRP", "NO_DATA", "SAT", "SUSPECT"),
)

Definition at line 89 of file computeExposureSummaryStats.py.

◆ psfGridSampling

lsst.pipe.tasks.computeExposureSummaryStats.ComputeExposureSummaryStatsConfig.psfGridSampling
static
Initial value:
= pexConfig.Field(
dtype=int,
doc="Sampling rate in pixels in each dimension for PSF model robustness metric "
"caclulations grid (the tradeoff is between adequate sampling versus speed).",
default=96,
)

Definition at line 83 of file computeExposureSummaryStats.py.

◆ psfSampling

lsst.pipe.tasks.computeExposureSummaryStats.ComputeExposureSummaryStatsConfig.psfSampling
static
Initial value:
= pexConfig.Field(
dtype=int,
doc="Sampling rate in pixels in each dimension for the maxDistToNearestPsf metric "
"caclulation grid (the tradeoff is between adequate sampling versus speed).",
default=8,
)

Definition at line 77 of file computeExposureSummaryStats.py.

◆ psfShape

lsst.pipe.tasks.computeExposureSummaryStats.ComputeExposureSummaryStatsConfig.psfShape
static
Initial value:
= pexConfig.Field(
doc="Base name of columns to use for the PSF shape in the PSF statistics computation.",
dtype=str,
default="slot_PsfShape"
)

Definition at line 72 of file computeExposureSummaryStats.py.

◆ sigmaClip

lsst.pipe.tasks.computeExposureSummaryStats.ComputeExposureSummaryStatsConfig.sigmaClip
static
Initial value:
= pexConfig.Field(
dtype=float,
doc="Sigma for outlier rejection for sky noise.",
default=3.0,
)

Definition at line 43 of file computeExposureSummaryStats.py.

◆ starSelection

lsst.pipe.tasks.computeExposureSummaryStats.ComputeExposureSummaryStatsConfig.starSelection
static
Initial value:
= pexConfig.Field(
doc="Field to select full list of sources used for PSF modeling.",
dtype=str,
default="calib_psf_used",
)

Definition at line 58 of file computeExposureSummaryStats.py.

◆ starSelector

lsst.pipe.tasks.computeExposureSummaryStats.ComputeExposureSummaryStatsConfig.starSelector
static
Initial value:
= pexConfig.ConfigurableField(
target=ScienceSourceSelectorTask,
doc="Selection of sources to compute PSF star statistics.",
)

Definition at line 63 of file computeExposureSummaryStats.py.

◆ starShape

lsst.pipe.tasks.computeExposureSummaryStats.ComputeExposureSummaryStatsConfig.starShape
static
Initial value:
= pexConfig.Field(
doc="Base name of columns to use for the source shape in the PSF statistics computation.",
dtype=str,
default="slot_Shape"
)

Definition at line 67 of file computeExposureSummaryStats.py.


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