LSSTApplications  17.0+10,17.0+52,17.0+91,18.0.0+11,18.0.0+16,18.0.0+38,18.0.0+4,18.0.0-2-ge43143a+8,18.1.0-1-g0001055+4,18.1.0-1-g1349e88+13,18.1.0-1-g2505f39+10,18.1.0-1-g380d4d4+13,18.1.0-1-g5315e5e,18.1.0-1-g5e4b7ea+4,18.1.0-1-g7e8fceb,18.1.0-1-g85f8cd4+10,18.1.0-1-g9a6769a+4,18.1.0-1-ga1a4c1a+9,18.1.0-1-gd55f500+5,18.1.0-1-ge10677a+10,18.1.0-11-gb2589d7b,18.1.0-13-g451e75588+2,18.1.0-13-gbfe7f7f+4,18.1.0-14-g2e73c10+1,18.1.0-2-g31c43f9+10,18.1.0-2-g919ecaf,18.1.0-2-g9c63283+13,18.1.0-2-gdf0b915+13,18.1.0-2-gfefb8b5+2,18.1.0-3-g52aa583+4,18.1.0-3-g8f4a2b1+4,18.1.0-3-g9cb968e+12,18.1.0-3-gab23065,18.1.0-4-g7bbbad0+4,18.1.0-5-g510c42a+12,18.1.0-5-gaeab27e+13,18.1.0-6-gc4bdb98+2,18.1.0-6-gdda7f3e+15,18.1.0-9-g9613d271+1,w.2019.34
LSSTDataManagementBasePackage
Public Member Functions | Static Public Attributes | List of all members
lsst.pipe.tasks.multiBand.DetectCoaddSourcesConfig Class Reference

Configuration parameters for the DetectCoaddSourcesTask. More...

Inheritance diagram for lsst.pipe.tasks.multiBand.DetectCoaddSourcesConfig:

Public Member Functions

def setDefaults (self)
 

Static Public Attributes

 doScaleVariance = Field(dtype=bool, default=True, doc="Scale variance plane using empirical noise?")
 
 scaleVariance = ConfigurableField(target=ScaleVarianceTask, doc="Variance rescaling")
 
 detection = ConfigurableField(target=DynamicDetectionTask, doc="Source detection")
 
 coaddName = Field(dtype=str, default="deep", doc="Name of coadd")
 
 doInsertFakes
 
 insertFakes
 
 detectionSchema
 
 exposure
 
 outputBackgrounds
 
 outputSources
 
 outputExposure
 
 hasFakes
 

Detailed Description

Configuration parameters for the DetectCoaddSourcesTask.

Definition at line 68 of file multiBand.py.

Member Function Documentation

◆ setDefaults()

def lsst.pipe.tasks.multiBand.DetectCoaddSourcesConfig.setDefaults (   self)

Definition at line 123 of file multiBand.py.

123  def setDefaults(self):
124  super().setDefaults()
125  self.quantum.dimensions = ("tract", "patch", "abstract_filter", "skymap")
126  self.formatTemplateNames({"inputCoaddName": "deep", "outputCoaddName": "deep"})
127  self.detection.thresholdType = "pixel_stdev"
128  self.detection.isotropicGrow = True
129  # Coadds are made from background-subtracted CCDs, so any background subtraction should be very basic
130  self.detection.reEstimateBackground = False
131  self.detection.background.useApprox = False
132  self.detection.background.binSize = 4096
133  self.detection.background.undersampleStyle = 'REDUCE_INTERP_ORDER'
134  self.detection.doTempWideBackground = True # Suppress large footprints that overwhelm the deblender
135 

Member Data Documentation

◆ coaddName

lsst.pipe.tasks.multiBand.DetectCoaddSourcesConfig.coaddName = Field(dtype=str, default="deep", doc="Name of coadd")
static

Definition at line 77 of file multiBand.py.

◆ detection

lsst.pipe.tasks.multiBand.DetectCoaddSourcesConfig.detection = ConfigurableField(target=DynamicDetectionTask, doc="Source detection")
static

Definition at line 76 of file multiBand.py.

◆ detectionSchema

lsst.pipe.tasks.multiBand.DetectCoaddSourcesConfig.detectionSchema
static
Initial value:
doc="Schema of the detection catalog",
nameTemplate="{outputCoaddName}Coadd_det_schema",
storageClass="SourceCatalog",
)

Definition at line 83 of file multiBand.py.

◆ doInsertFakes

lsst.pipe.tasks.multiBand.DetectCoaddSourcesConfig.doInsertFakes
static
Initial value:
= Field(dtype=bool, default=False,
doc="Run fake sources injection task")

Definition at line 78 of file multiBand.py.

◆ doScaleVariance

lsst.pipe.tasks.multiBand.DetectCoaddSourcesConfig.doScaleVariance = Field(dtype=bool, default=True, doc="Scale variance plane using empirical noise?")
static

Definition at line 74 of file multiBand.py.

◆ exposure

lsst.pipe.tasks.multiBand.DetectCoaddSourcesConfig.exposure
static
Initial value:
doc="Exposure on which detections are to be performed",
nameTemplate="{inputCoaddName}Coadd",
scalar=True,
storageClass="ExposureF",
dimensions=("tract", "patch", "abstract_filter", "skymap")
)

Definition at line 88 of file multiBand.py.

◆ hasFakes

lsst.pipe.tasks.multiBand.DetectCoaddSourcesConfig.hasFakes
static
Initial value:
= Field(
dtype=bool,
default=False,
doc="Should be set to True if fake sources have been inserted into the input data."
)

Definition at line 117 of file multiBand.py.

◆ insertFakes

lsst.pipe.tasks.multiBand.DetectCoaddSourcesConfig.insertFakes
static
Initial value:
= ConfigurableField(target=BaseFakeSourcesTask,
doc="Injection of fake sources for testing "
"purposes (must be retargeted)")

Definition at line 80 of file multiBand.py.

◆ outputBackgrounds

lsst.pipe.tasks.multiBand.DetectCoaddSourcesConfig.outputBackgrounds
static
Initial value:
doc="Output Backgrounds used in detection",
nameTemplate="{outputCoaddName}Coadd_calexp_background",
scalar=True,
storageClass="Background",
dimensions=("tract", "patch", "abstract_filter", "skymap")
)

Definition at line 95 of file multiBand.py.

◆ outputExposure

lsst.pipe.tasks.multiBand.DetectCoaddSourcesConfig.outputExposure
static
Initial value:
doc="Exposure post detection",
nameTemplate="{outputCoaddName}Coadd_calexp",
scalar=True,
storageClass="ExposureF",
dimensions=("tract", "patch", "abstract_filter", "skymap")
)

Definition at line 109 of file multiBand.py.

◆ outputSources

lsst.pipe.tasks.multiBand.DetectCoaddSourcesConfig.outputSources
static
Initial value:
doc="Detected sources catalog",
nameTemplate="{outputCoaddName}Coadd_det",
scalar=True,
storageClass="SourceCatalog",
dimensions=("tract", "patch", "abstract_filter", "skymap")
)

Definition at line 102 of file multiBand.py.

◆ scaleVariance

lsst.pipe.tasks.multiBand.DetectCoaddSourcesConfig.scaleVariance = ConfigurableField(target=ScaleVarianceTask, doc="Variance rescaling")
static

Definition at line 75 of file multiBand.py.


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