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.meas.base.forcedPhotCcd.ForcedPhotCcdConfig Class Reference
Inheritance diagram for lsst.meas.base.forcedPhotCcd.ForcedPhotCcdConfig:
lsst.meas.base.forcedPhotImage.ForcedPhotImageConfig lsst.pipe.base.config.PipelineTaskConfig

Public Member Functions

def setDefaults (self)
 
def formatTemplateNames (self, templateParamsDict)
 

Static Public Attributes

 doApplyUberCal
 
 inputSchema
 
 outputSchema
 
 exposure
 
 refCat
 
 refWcs
 
 measCat
 
 references
 
 measurement
 
 coaddName
 
 doApCorr
 
 applyApCorr
 
 catalogCalculation
 
 quantum
 

Detailed Description

Definition at line 141 of file forcedPhotCcd.py.

Member Function Documentation

◆ formatTemplateNames()

def lsst.pipe.base.config.PipelineTaskConfig.formatTemplateNames (   self,
  templateParamsDict 
)
inherited

Definition at line 326 of file config.py.

326  def formatTemplateNames(self, templateParamsDict):
327  # Look up the stored parameters for the specific instance of this config
328  # class
329  storedParamsDict = PIPELINETASK_CONFIG_TEMPLATE_DICT.setdefault(id(self), {})
330  storedParamsDict.update(templateParamsDict)
331  for key, value in self.items():
332  if isinstance(value, _BaseDatasetTypeConfig) and value.nameTemplate != '':
333  value.name = value.nameTemplate.format(**storedParamsDict)
334 
335 
table::Key< int > id
Definition: Detector.cc:166

◆ setDefaults()

def lsst.meas.base.forcedPhotCcd.ForcedPhotCcdConfig.setDefaults (   self)

Definition at line 148 of file forcedPhotCcd.py.

148  def setDefaults(self):
149  super().setDefaults()
150 
151  # Override the Gen3 datasets from ForcedPhotImageTaskConfig.
152  # When these nameTemplate values are used in ForcedPhotCoadd,
153  # there is a coadd name that may change, depending on the
154  # coadd type. For CCD forced photometry, there will likely
155  # only ever be a single calexp type, but for consistency, use
156  # the nameTemplate with nothing to substitute.
157  self.outputSchema.nameTemplate = "forced_src_schema"
158  self.exposure.nameTemplate = "{inputName}"
159  self.exposure.dimensions = ["instrument", "visit", "detector"]
160  self.measCat.nameTemplate = "forced_src"
161  self.measCat.dimensions = ["instrument", "visit", "detector", "skymap", "tract"]
162 
163  self.formatTemplateNames({"inputName": "calexp",
164  "inputCoaddName": "deep"})
165  self.quantum.dimensions = ("instrument", "visit", "detector", "skymap", "tract")
166 
167 

Member Data Documentation

◆ applyApCorr

lsst.meas.base.forcedPhotImage.ForcedPhotImageConfig.applyApCorr
staticinherited
Initial value:
= lsst.pex.config.ConfigurableField(
target=ApplyApCorrTask,
doc="Subtask to apply aperture corrections"
)

Definition at line 104 of file forcedPhotImage.py.

◆ catalogCalculation

lsst.meas.base.forcedPhotImage.ForcedPhotImageConfig.catalogCalculation
staticinherited
Initial value:
= lsst.pex.config.ConfigurableField(
target=CatalogCalculationTask,
doc="Subtask to run catalogCalculation plugins on catalog"
)

Definition at line 108 of file forcedPhotImage.py.

◆ coaddName

lsst.meas.base.forcedPhotImage.ForcedPhotImageConfig.coaddName
staticinherited
Initial value:
= lsst.pex.config.Field(
doc="coadd name: typically one of deep or goodSeeing",
dtype=str,
default="deep",
)

Definition at line 94 of file forcedPhotImage.py.

◆ doApCorr

lsst.meas.base.forcedPhotImage.ForcedPhotImageConfig.doApCorr
staticinherited
Initial value:
= lsst.pex.config.Field(
dtype=bool,
default=True,
doc="Run subtask to apply aperture corrections"
)

Definition at line 99 of file forcedPhotImage.py.

◆ doApplyUberCal

lsst.meas.base.forcedPhotCcd.ForcedPhotCcdConfig.doApplyUberCal
static
Initial value:
= lsst.pex.config.Field(
dtype=bool,
doc="Apply meas_mosaic ubercal results to input calexps?",
default=False
)

Definition at line 142 of file forcedPhotCcd.py.

◆ exposure

lsst.meas.base.forcedPhotImage.ForcedPhotImageConfig.exposure
staticinherited
Initial value:
= lsst.pipe.base.InputDatasetField(
doc="Input exposure to perform photometry on.",
nameTemplate="{inputCoaddName}Coadd",
scalar=True,
storageClass="ExposureF",
dimensions=["abstract_filter", "skymap", "tract", "patch"],
)

Definition at line 55 of file forcedPhotImage.py.

◆ inputSchema

lsst.meas.base.forcedPhotImage.ForcedPhotImageConfig.inputSchema
staticinherited
Initial value:
= lsst.pipe.base.InitInputDatasetField(
doc="Schema for the input measurement catalogs.",
nameTemplate="{inputCoaddName}Coadd_ref_schema",
storageClass="SourceCatalog",
)

Definition at line 45 of file forcedPhotImage.py.

◆ measCat

lsst.meas.base.forcedPhotImage.ForcedPhotImageConfig.measCat
staticinherited
Initial value:
= lsst.pipe.base.OutputDatasetField(
doc="Output forced photometry catalog.",
nameTemplate="{outputCoaddName}Coadd_forced_src",
scalar=True,
storageClass="SourceCatalog",
dimensions=["abstract_filter", "skymap", "tract", "patch"],
)

Definition at line 77 of file forcedPhotImage.py.

◆ measurement

lsst.meas.base.forcedPhotImage.ForcedPhotImageConfig.measurement
staticinherited
Initial value:
= lsst.pex.config.ConfigurableField(
target=ForcedMeasurementTask,
doc="subtask to do forced measurement"
)

Definition at line 90 of file forcedPhotImage.py.

◆ outputSchema

lsst.meas.base.forcedPhotImage.ForcedPhotImageConfig.outputSchema
staticinherited
Initial value:
= lsst.pipe.base.InitOutputDatasetField(
doc="Schema for the output forced measurement catalogs.",
nameTemplate="{outputCoaddName}Coadd_forced_src_schema",
storageClass="SourceCatalog",
)

Definition at line 50 of file forcedPhotImage.py.

◆ quantum

lsst.pipe.base.config.PipelineTaskConfig.quantum
staticinherited
Initial value:
= pexConfig.ConfigField(dtype=QuantumConfig,
doc="configuration for PipelineTask quantum")

Definition at line 323 of file config.py.

◆ refCat

lsst.meas.base.forcedPhotImage.ForcedPhotImageConfig.refCat
staticinherited
Initial value:
= lsst.pipe.base.InputDatasetField(
doc="Catalog of shapes and positions at which to force photometry.",
nameTemplate="{inputCoaddName}Coadd_ref",
scalar=True,
storageClass="SourceCatalog",
dimensions=["skymap", "tract", "patch"],
)

Definition at line 62 of file forcedPhotImage.py.

◆ references

lsst.meas.base.forcedPhotImage.ForcedPhotImageConfig.references
staticinherited
Initial value:
= lsst.pex.config.ConfigurableField(
target=MultiBandReferencesTask,
doc="subtask to retrieve reference source catalog"
)

Definition at line 86 of file forcedPhotImage.py.

◆ refWcs

lsst.meas.base.forcedPhotImage.ForcedPhotImageConfig.refWcs
staticinherited
Initial value:
= lsst.pipe.base.InputDatasetField(
doc="Reference world coordinate system.",
nameTemplate="{inputCoaddName}Coadd",
scalar=True,
manualLoad=True,
storageClass="ExposureF",
dimensions=["abstract_filter", "skymap", "tract", "patch"],
)

Definition at line 69 of file forcedPhotImage.py.


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