Definition at line 45 of file makeKernel.py.
◆ setDefaults()
| lsst.ip.diffim.makeKernel.MakeKernelConfig.setDefaults |
( |
| self | ) |
|
◆ afwBackgroundConfig
| lsst.ip.diffim.psfMatch.PsfMatchConfig.afwBackgroundConfig |
|
staticinherited |
Initial value:= pexConfig.ConfigField("Controlling the Afw background fitting",
SubtractBackgroundConfig)
Definition at line 59 of file psfMatch.py.
◆ badMaskPlanes
| lsst.ip.diffim.psfMatch.PsfMatchConfig.badMaskPlanes |
|
staticinherited |
Initial value:= pexConfig.ListField(
dtype=str,
doc=,
default=("NO_DATA", "EDGE", "SAT")
)
Definition at line 206 of file psfMatch.py.
◆ calculateKernelUncertainty
| lsst.ip.diffim.psfMatch.PsfMatchConfig.calculateKernelUncertainty |
|
staticinherited |
Initial value:= pexConfig.Field(
dtype=bool,
doc=,
default=False,
)
Definition at line 283 of file psfMatch.py.
◆ candidateCoreRadius
| lsst.ip.diffim.psfMatch.PsfMatchConfig.candidateCoreRadius |
|
staticinherited |
Initial value:= pexConfig.Field(
dtype=int,
doc=,
default=3,
check=lambda x: x >= 1
)
Definition at line 234 of file psfMatch.py.
◆ candidateResidualMeanMax
| lsst.ip.diffim.psfMatch.PsfMatchConfig.candidateResidualMeanMax |
|
staticinherited |
Initial value:= pexConfig.Field(
dtype=float,
doc=,
default=0.25,
check=lambda x: x >= 0.0
)
Definition at line 212 of file psfMatch.py.
◆ candidateResidualStdMax
| lsst.ip.diffim.psfMatch.PsfMatchConfig.candidateResidualStdMax |
|
staticinherited |
Initial value:= pexConfig.Field(
dtype=float,
doc=,
default=1.50,
check=lambda x: x >= 0.0
)
Definition at line 220 of file psfMatch.py.
◆ checkConditionNumber
| lsst.ip.diffim.psfMatch.PsfMatchConfig.checkConditionNumber |
|
staticinherited |
Initial value:= pexConfig.Field(
dtype=bool,
doc=,
default=False,
)
Definition at line 197 of file psfMatch.py.
◆ conditionNumberType
| lsst.ip.diffim.psfMatch.PsfMatchConfig.conditionNumberType |
|
staticinherited |
Initial value:= pexConfig.ChoiceField(
dtype=str,
doc="Use singular values (SVD) or eigen values (EIGENVALUE) to determine condition number",
default="EIGENVALUE",
allowed={
"SVD": "Use singular values",
"EIGENVALUE": "Use eigen values (faster)",
}
)
Definition at line 256 of file psfMatch.py.
◆ constantVarianceWeighting
| lsst.ip.diffim.psfMatch.PsfMatchConfig.constantVarianceWeighting |
|
staticinherited |
Initial value:= pexConfig.Field(
dtype=bool,
doc=,
default=True,
)
Definition at line 277 of file psfMatch.py.
◆ fitForBackground
| lsst.ip.diffim.psfMatch.PsfMatchConfig.fitForBackground |
|
staticinherited |
Initial value:= pexConfig.Field(
dtype=bool,
doc="Include terms (including kernel cross terms) for background in ip_diffim",
default=False,
)
Definition at line 67 of file psfMatch.py.
◆ fwhmExposureBuffer
| lsst.ip.diffim.makeKernel.MakeKernelConfig.fwhmExposureBuffer |
|
static |
Initial value:= lsst.pex.config.Field(
doc="Fractional buffer margin to be left out of all sides of the image during construction"
"of grid to compute average PSF FWHM in an exposure",
dtype=float,
default=0.05,
)
Definition at line 67 of file makeKernel.py.
◆ fwhmExposureGrid
| lsst.ip.diffim.makeKernel.MakeKernelConfig.fwhmExposureGrid |
|
static |
Initial value:= lsst.pex.config.Field(
doc="Grid size to compute the average PSF FWHM in an exposure",
dtype=int,
default=10,
)
Definition at line 62 of file makeKernel.py.
◆ iterateSingleKernel
| lsst.ip.diffim.psfMatch.PsfMatchConfig.iterateSingleKernel |
|
staticinherited |
Initial value:= pexConfig.Field(
dtype=bool,
doc=,
default=False,
)
Definition at line 271 of file psfMatch.py.
◆ kernel
| lsst.ip.diffim.makeKernel.MakeKernelConfig.kernel |
|
static |
Initial value:= lsst.pex.config.ConfigChoiceField(
doc="kernel type",
typemap=dict(
AL=PsfMatchConfigAL,
DF=PsfMatchConfigDF
),
default="AL",
)
Definition at line 46 of file makeKernel.py.
◆ kernelBasisSet
| lsst.ip.diffim.psfMatch.PsfMatchConfig.kernelBasisSet |
|
staticinherited |
Initial value:= pexConfig.ChoiceField(
dtype=str,
doc="Type of basis set for PSF matching kernel.",
default="alard-lupton",
allowed={
"alard-lupton": ,
"delta-function":
}
)
Definition at line 72 of file psfMatch.py.
◆ kernelSize
| lsst.ip.diffim.psfMatch.PsfMatchConfig.kernelSize |
|
staticinherited |
Initial value:= pexConfig.Field(
dtype=int,
doc=,
default=21,
)
Definition at line 87 of file psfMatch.py.
◆ kernelSizeFwhmScaling
| lsst.ip.diffim.psfMatch.PsfMatchConfig.kernelSizeFwhmScaling |
|
staticinherited |
Initial value:= pexConfig.Field(
dtype=float,
doc="Multiplier of the largest AL Gaussian basis sigma to get the kernel bbox (pixel) size.",
default=6.0,
check=lambda x: x >= 1.0
)
Definition at line 98 of file psfMatch.py.
◆ kernelSizeMax
| lsst.ip.diffim.psfMatch.PsfMatchConfig.kernelSizeMax |
|
staticinherited |
Initial value:= pexConfig.Field(
dtype=int,
doc="Maximum kernel bbox (pixel) size.",
default=35,
)
Definition at line 109 of file psfMatch.py.
◆ kernelSizeMin
| lsst.ip.diffim.psfMatch.PsfMatchConfig.kernelSizeMin |
|
staticinherited |
Initial value:= pexConfig.Field(
dtype=int,
doc="Minimum kernel bbox (pixel) size.",
default=21,
)
Definition at line 104 of file psfMatch.py.
◆ kernelSumClipping
| lsst.ip.diffim.psfMatch.PsfMatchConfig.kernelSumClipping |
|
staticinherited |
Initial value:= pexConfig.Field(
dtype=bool,
doc="Do sigma clipping on the ensemble of kernel sums",
default=True,
)
Definition at line 187 of file psfMatch.py.
◆ maxConditionNumber
| lsst.ip.diffim.psfMatch.PsfMatchConfig.maxConditionNumber |
|
staticinherited |
Initial value:= pexConfig.Field(
dtype=float,
doc="Maximum condition number for a well conditioned matrix",
default=5.0e7,
check=lambda x: x >= 0.0
)
Definition at line 250 of file psfMatch.py.
◆ maxKsumSigma
| lsst.ip.diffim.psfMatch.PsfMatchConfig.maxKsumSigma |
|
staticinherited |
Initial value:= pexConfig.Field(
dtype=float,
doc=,
default=3.0,
check=lambda x: x >= 0.0
)
Definition at line 243 of file psfMatch.py.
◆ maxSpatialConditionNumber
| lsst.ip.diffim.psfMatch.PsfMatchConfig.maxSpatialConditionNumber |
|
staticinherited |
Initial value:= pexConfig.Field(
dtype=float,
doc="Maximum condition number for a well conditioned spatial matrix",
default=1.0e10,
check=lambda x: x >= 0.0
)
Definition at line 265 of file psfMatch.py.
◆ maxSpatialIterations
| lsst.ip.diffim.psfMatch.PsfMatchConfig.maxSpatialIterations |
|
staticinherited |
Initial value:= pexConfig.Field(
dtype=int,
doc="Maximum number of iterations for rejecting bad KernelCandidates in spatial fitting",
default=3,
check=lambda x: x >= 1 and x <= 5
)
Definition at line 153 of file psfMatch.py.
◆ nStarPerCell
| lsst.ip.diffim.psfMatch.PsfMatchConfig.nStarPerCell |
|
staticinherited |
Initial value:= pexConfig.Field(
dtype=int,
doc="Maximum number of KernelCandidates in each SpatialCell to use in the spatial fitting. "
"Set to -1 to use all candidates in each cell.",
default=5,
)
Definition at line 147 of file psfMatch.py.
◆ numPrincipalComponents
| lsst.ip.diffim.psfMatch.PsfMatchConfig.numPrincipalComponents |
|
staticinherited |
Initial value:= pexConfig.Field(
dtype=int,
doc=,
default=5,
check=lambda x: x >= 3
)
Definition at line 175 of file psfMatch.py.
◆ scaleByFwhm
| lsst.ip.diffim.psfMatch.PsfMatchConfig.scaleByFwhm |
|
staticinherited |
Initial value:= pexConfig.Field(
dtype=bool,
doc="Scale kernelSize, alardGaussians by input Fwhm",
default=True,
)
Definition at line 93 of file psfMatch.py.
◆ selectDetection
| lsst.ip.diffim.makeKernel.MakeKernelConfig.selectDetection |
|
static |
Initial value:= lsst.pex.config.ConfigurableField(
target=SourceDetectionTask,
doc="Initial detections used to feed stars to kernel fitting",
)
Definition at line 54 of file makeKernel.py.
◆ selectMeasurement
| lsst.ip.diffim.makeKernel.MakeKernelConfig.selectMeasurement |
|
static |
Initial value:= lsst.pex.config.ConfigurableField(
target=SingleFrameMeasurementTask,
doc="Initial measurements used to feed stars to kernel fitting",
)
Definition at line 58 of file makeKernel.py.
◆ singleKernelClipping
| lsst.ip.diffim.psfMatch.PsfMatchConfig.singleKernelClipping |
|
staticinherited |
Initial value:= pexConfig.Field(
dtype=bool,
doc="Do sigma clipping on each raw kernel candidate",
default=True,
)
Definition at line 182 of file psfMatch.py.
◆ sizeCellX
| lsst.ip.diffim.psfMatch.PsfMatchConfig.sizeCellX |
|
staticinherited |
Initial value:= pexConfig.Field(
dtype=int,
doc="Size (rows) in pixels of each SpatialCell for spatial modeling",
default=128,
check=lambda x: x >= 32
)
Definition at line 135 of file psfMatch.py.
◆ sizeCellY
| lsst.ip.diffim.psfMatch.PsfMatchConfig.sizeCellY |
|
staticinherited |
Initial value:= pexConfig.Field(
dtype=int,
doc="Size (columns) in pixels of each SpatialCell for spatial modeling",
default=128,
check=lambda x: x >= 32
)
Definition at line 141 of file psfMatch.py.
◆ spatialBgOrder
| lsst.ip.diffim.psfMatch.PsfMatchConfig.spatialBgOrder |
|
staticinherited |
Initial value:= pexConfig.Field(
dtype=int,
doc="Spatial order of differential background variation",
default=1,
check=lambda x: x >= 0
)
Definition at line 129 of file psfMatch.py.
◆ spatialKernelClipping
| lsst.ip.diffim.psfMatch.PsfMatchConfig.spatialKernelClipping |
|
staticinherited |
Initial value:= pexConfig.Field(
dtype=bool,
doc="Do sigma clipping after building the spatial model",
default=True,
)
Definition at line 192 of file psfMatch.py.
◆ spatialKernelOrder
| lsst.ip.diffim.psfMatch.PsfMatchConfig.spatialKernelOrder |
|
staticinherited |
Initial value:= pexConfig.Field(
dtype=int,
doc="Spatial order of convolution kernel variation",
default=2,
check=lambda x: x >= 0
)
Definition at line 123 of file psfMatch.py.
◆ spatialModelType
| lsst.ip.diffim.psfMatch.PsfMatchConfig.spatialModelType |
|
staticinherited |
Initial value:= pexConfig.ChoiceField(
dtype=str,
doc="Type of spatial functions for kernel and background",
default="chebyshev1",
allowed={
"chebyshev1": "Chebyshev polynomial of the first kind",
"polynomial": "Standard x,y polynomial",
}
)
Definition at line 114 of file psfMatch.py.
◆ subtractMeanForPca
| lsst.ip.diffim.psfMatch.PsfMatchConfig.subtractMeanForPca |
|
staticinherited |
Initial value:= pexConfig.Field(
dtype=bool,
doc="Subtract off the mean feature before doing the Pca",
default=True,
)
Definition at line 170 of file psfMatch.py.
◆ useAfwBackground
| lsst.ip.diffim.psfMatch.PsfMatchConfig.useAfwBackground |
|
staticinherited |
Initial value:= pexConfig.Field(
dtype=bool,
doc="Use afw background subtraction instead of ip_diffim",
default=False,
)
Definition at line 62 of file psfMatch.py.
◆ useBicForKernelBasis
| lsst.ip.diffim.psfMatch.PsfMatchConfig.useBicForKernelBasis |
|
staticinherited |
Initial value:= pexConfig.Field(
dtype=bool,
doc=,
default=False,
)
Definition at line 290 of file psfMatch.py.
◆ useCoreStats
| lsst.ip.diffim.psfMatch.PsfMatchConfig.useCoreStats |
|
staticinherited |
Initial value:= pexConfig.Field(
dtype=bool,
doc=,
default=False,
)
Definition at line 228 of file psfMatch.py.
◆ usePcaForSpatialKernel
| lsst.ip.diffim.psfMatch.PsfMatchConfig.usePcaForSpatialKernel |
|
staticinherited |
Initial value:= pexConfig.Field(
dtype=bool,
doc=,
default=False,
)
Definition at line 159 of file psfMatch.py.
◆ warpingConfig
| lsst.ip.diffim.psfMatch.PsfMatchConfig.warpingConfig |
|
staticinherited |
Initial value:= pexConfig.ConfigField("Config for warping exposures to a common alignment",
afwMath.WarperConfig)
Definition at line 57 of file psfMatch.py.
The documentation for this class was generated from the following file: