LSST Applications g034a557a3c+0df69e75ff,g0afe43252f+b86e4b8053,g11f7dcd041+017865fdd3,g1cd03abf6b+1c8dc8730a,g1ce3e0751c+f991eae79d,g28da252d5a+a136f03385,g2bbee38e9b+b6588ad223,g2bc492864f+b6588ad223,g2cdde0e794+8523d0dbb4,g347aa1857d+b6588ad223,g35bb328faa+b86e4b8053,g3a166c0a6a+b6588ad223,g461a3dce89+b86e4b8053,g52b1c1532d+b86e4b8053,g6233c72cae+da9c58a417,g7f3b0d46df+ad13c1b82d,g80478fca09+f29c5d6c70,g858d7b2824+4fc997592f,g8cd86fa7b1+5f14beadf5,g965a9036f2+4fc997592f,g979bb04a14+87f76c17e6,g9ddcbc5298+f24b38b85a,gae0086650b+b86e4b8053,gbb886bcc26+77117948e7,gc28159a63d+b6588ad223,gc30aee3386+a2f0f6cab9,gcaf7e4fdec+4fc997592f,gcd45df26be+4fc997592f,gcdd4ae20e8+0acf6430b1,gcf0d15dbbd+0acf6430b1,gdaeeff99f8+006e14e809,gdbce86181e+467b805b48,ge3d4d395c2+224150c836,ge5f7162a3a+1d9667e7ad,ge6cb8fbbf7+0992c83eee,ge79ae78c31+b6588ad223,gf048a9a2f4+41d6ddaca1,gf0baf85859+b4cca3d10f,w.2024.30
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
 
 minPsfApRadiusPix
 
 psfApCorrFieldName
 
 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 135 of file computeExposureSummaryStats.py.

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

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 115 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 108 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 122 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 129 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 89 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 96 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 102 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: