LSST Applications g0000d66e7c+ce78115f25,g0485b4d2cb+c8d56b10d4,g0fba68d861+fcbc158cd0,g1ec0fe41b4+3e153770da,g1fd858c14a+57ee4e1624,g2440f9efcc+8c5ae1fdc5,g35bb328faa+8c5ae1fdc5,g4d2262a081+1e04cc5a47,g53246c7159+8c5ae1fdc5,g55585698de+7a33f081c8,g56a49b3a55+b9d5cac73f,g60b5630c4e+7a33f081c8,g67b6fd64d1+035c836e50,g78460c75b0+7e33a9eb6d,g786e29fd12+668abc6043,g7ac00fbb6c+b938379438,g8352419a5c+8c5ae1fdc5,g8852436030+5ba78a36c9,g89139ef638+035c836e50,g94187f82dc+7a33f081c8,g989de1cb63+035c836e50,g9d31334357+7a33f081c8,g9f33ca652e+e34120223a,ga815be3f0b+911242149a,gabe3b4be73+8856018cbb,gabf8522325+21619da9f3,gb1101e3267+0b44b44611,gb89ab40317+035c836e50,gc91f06edcd+e59fb3c9bc,gcf25f946ba+5ba78a36c9,gd6cbbdb0b4+958adf5c1f,gde0f65d7ad+6c98dcc924,ge278dab8ac+83c63f4893,ge410e46f29+035c836e50,gf35d7ec915+97dd712d81,gf5e32f922b+8c5ae1fdc5,gf67bdafdda+035c836e50,gf6800124b1+1714c04baa,w.2025.19
LSST Data Management Base Package
Loading...
Searching...
No Matches
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
 
 minPsfApRadiusPix
 
 psfApCorrFieldName
 
 psfBadMaskPlanes
 
 fiducialSkyBackground
 
 fiducialPsfSigma
 
 fiducialZeroPoint
 
 maxEffectiveTransparency
 
 magLimSnr
 

Detailed Description

Config for ComputeExposureSummaryTask

Definition at line 42 of file computeExposureSummaryStats.py.

Member Function Documentation

◆ setDefaults()

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

Definition at line 141 of file computeExposureSummaryStats.py.

141 def setDefaults(self):
142 super().setDefaults()
143
144 self.starSelector.setDefaults()
145 self.starSelector.doFlags = True
146 self.starSelector.doSignalToNoise = True
147 self.starSelector.doUnresolved = False
148 self.starSelector.doIsolated = False
149 self.starSelector.doRequireFiniteRaDec = False
150 self.starSelector.doRequirePrimary = False
151
152 self.starSelector.signalToNoise.minimum = 50.0
153 self.starSelector.signalToNoise.maximum = 1000.0
154
155 self.starSelector.flags.bad = ["slot_Shape_flag", "slot_PsfFlux_flag"]
156 # Select stars used for PSF modeling.
157 self.starSelector.flags.good = ["calib_psf_used"]
158
159 self.starSelector.signalToNoise.fluxField = "slot_PsfFlux_instFlux"
160 self.starSelector.signalToNoise.errField = "slot_PsfFlux_instFluxErr"
161
162

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 54 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 49 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 116 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 109 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 123 of file computeExposureSummaryStats.py.

◆ magLimSnr

lsst.pipe.tasks.computeExposureSummaryStats.ComputeExposureSummaryStatsConfig.magLimSnr
static
Initial value:
= pexConfig.Field(
dtype=float,
doc="Signal-to-noise ratio for computing the magnitude limit depth.",
default=5.0
)

Definition at line 135 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 130 of file computeExposureSummaryStats.py.

◆ minPsfApRadiusPix

lsst.pipe.tasks.computeExposureSummaryStats.ComputeExposureSummaryStatsConfig.minPsfApRadiusPix
static
Initial value:
= pexConfig.Field(
dtype=float,
doc="Minimum radius in pixels of the aperture within which to measure the flux of "
"the PSF model for the psfApFluxDelta metric calculation (the radius is computed as "
"max(``minPsfApRadius``, 3*psfSigma)).",
default=2.0,
)

Definition at line 90 of file computeExposureSummaryStats.py.

◆ psfApCorrFieldName

lsst.pipe.tasks.computeExposureSummaryStats.ComputeExposureSummaryStatsConfig.psfApCorrFieldName
static
Initial value:
= pexConfig.Field(
doc="Name of the flux column associated with the aperture correction of the PSF model "
"to use for the psfApCorrSigmaScaledDelta metric calculation.",
dtype=str,
default="base_PsfFlux_instFlux"
)

Definition at line 97 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 103 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 84 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 78 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 73 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 44 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 59 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 64 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 68 of file computeExposureSummaryStats.py.


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