Configuration parameters for ProcessBrightStarsTask
Definition at line 67 of file processBrightStars.py.
◆ setDefaults()
def lsst.pipe.tasks.processBrightStars.ProcessBrightStarsConfig.setDefaults |
( |
|
self | ) |
|
◆ annularFluxRadii
lsst.pipe.tasks.processBrightStars.ProcessBrightStarsConfig.annularFluxRadii |
|
static |
Initial value:= pexConfig.ListField(
dtype=int,
doc="Inner and outer radii of the annulus used to compute the AnnularFlux for normalization, "
"in pixels.",
default=(40, 50)
)
Definition at line 98 of file processBrightStars.py.
◆ annularFluxStatistic
lsst.pipe.tasks.processBrightStars.ProcessBrightStarsConfig.annularFluxStatistic |
|
static |
Initial value:= pexConfig.ChoiceField(
dtype=str,
doc="Type of statistic to use to compute annular flux.",
default="MEANCLIP",
allowed={
"MEAN": "mean",
"MEDIAN": "median",
"MEANCLIP": "clipped mean",
}
)
Definition at line 104 of file processBrightStars.py.
◆ badMaskPlanes
lsst.pipe.tasks.processBrightStars.ProcessBrightStarsConfig.badMaskPlanes |
|
static |
Initial value:= pexConfig.ListField(
dtype=str,
doc="Mask planes that, if set, lead to associated pixels not being included in the computation of the"
" annular flux.",
default=('BAD', 'CR', 'CROSSTALK', 'EDGE', 'NO_DATA', 'SAT', 'SUSPECT', 'UNMASKEDNAN')
)
Definition at line 124 of file processBrightStars.py.
◆ brightStarStamps
lsst.pipe.tasks.processBrightStars.ProcessBrightStarsConnections.brightStarStamps |
|
staticinherited |
Initial value:= cT.Output(
doc="Set of preprocessed postage stamps, each centered on a single bright star.",
name="brightStarStamps",
storageClass="BrightStarStamps",
dimensions=("visit", "detector")
)
Definition at line 59 of file processBrightStars.py.
◆ inputExposure
lsst.pipe.tasks.processBrightStars.ProcessBrightStarsConnections.inputExposure |
|
staticinherited |
Initial value:= cT.Input(
doc="Input exposure from which to extract bright star stamps",
name="calexp",
storageClass="ExposureF",
dimensions=("visit", "detector")
)
Definition at line 45 of file processBrightStars.py.
◆ magLimit
lsst.pipe.tasks.processBrightStars.ProcessBrightStarsConfig.magLimit |
|
static |
Initial value:= pexConfig.Field(
dtype=float,
doc="Magnitude limit, in Gaia G; all stars brighter than this value will be processed",
default=18
)
Definition at line 71 of file processBrightStars.py.
◆ modelStampBuffer
lsst.pipe.tasks.processBrightStars.ProcessBrightStarsConfig.modelStampBuffer |
|
static |
Initial value:= pexConfig.Field(
dtype=float,
doc="'Buffer' factor to be applied to determine the size of the stamp the processed stars will "
"be saved in. This will also be the size of the extended PSF model.",
default=1.1
)
Definition at line 81 of file processBrightStars.py.
◆ numIter
lsst.pipe.tasks.processBrightStars.ProcessBrightStarsConfig.numIter |
|
static |
Initial value:= pexConfig.Field(
dtype=int,
doc="Number of iterations of outlier rejection; ignored if annularFluxStatistic != 'MEANCLIP'.",
default=3
)
Definition at line 119 of file processBrightStars.py.
◆ numSigmaClip
lsst.pipe.tasks.processBrightStars.ProcessBrightStarsConfig.numSigmaClip |
|
static |
Initial value:= pexConfig.Field(
dtype=float,
doc="Sigma for outlier rejection; ignored if annularFluxStatistic != 'MEANCLIP'.",
default=4
)
Definition at line 114 of file processBrightStars.py.
◆ refCat
lsst.pipe.tasks.processBrightStars.ProcessBrightStarsConnections.refCat |
|
staticinherited |
Initial value:= cT.PrerequisiteInput(
doc="Reference catalog that contains bright star positions",
name="gaia_dr2_20200414",
storageClass="SimpleCatalog",
dimensions=("skypix",),
multiple=True,
deferLoad=True
)
Definition at line 51 of file processBrightStars.py.
◆ refObjLoader
lsst.pipe.tasks.processBrightStars.ProcessBrightStarsConfig.refObjLoader |
|
static |
Initial value:= pexConfig.ConfigurableField(
target=LoadIndexedReferenceObjectsTask,
doc="reference object loader for astrometric calibration",
)
Definition at line 130 of file processBrightStars.py.
◆ stampSize
lsst.pipe.tasks.processBrightStars.ProcessBrightStarsConfig.stampSize |
|
static |
Initial value:= pexConfig.ListField(
dtype=int,
doc="Size of the stamps to be extracted, in pixels",
default=(250, 250)
)
Definition at line 76 of file processBrightStars.py.
◆ warpingKernelName
lsst.pipe.tasks.processBrightStars.ProcessBrightStarsConfig.warpingKernelName |
|
static |
Initial value:= pexConfig.ChoiceField(
dtype=str,
doc="Warping kernel",
default="lanczos5",
allowed={
"bilinear": "bilinear interpolation",
"lanczos3": "Lanczos kernel of order 3",
"lanczos4": "Lanczos kernel of order 4",
"lanczos5": "Lanczos kernel of order 5",
}
)
Definition at line 87 of file processBrightStars.py.
The documentation for this class was generated from the following file: