LSST Applications  21.0.0-172-gfb10e10a+18fedfabac,22.0.0+297cba6710,22.0.0+80564b0ff1,22.0.0+8d77f4f51a,22.0.0+a28f4c53b1,22.0.0+dcf3732eb2,22.0.1-1-g7d6de66+2a20fdde0d,22.0.1-1-g8e32f31+297cba6710,22.0.1-1-geca5380+7fa3b7d9b6,22.0.1-12-g44dc1dc+2a20fdde0d,22.0.1-15-g6a90155+515f58c32b,22.0.1-16-g9282f48+790f5f2caa,22.0.1-2-g92698f7+dcf3732eb2,22.0.1-2-ga9b0f51+7fa3b7d9b6,22.0.1-2-gd1925c9+bf4f0e694f,22.0.1-24-g1ad7a390+a9625a72a8,22.0.1-25-g5bf6245+3ad8ecd50b,22.0.1-25-gb120d7b+8b5510f75f,22.0.1-27-g97737f7+2a20fdde0d,22.0.1-32-gf62ce7b1+aa4237961e,22.0.1-4-g0b3f228+2a20fdde0d,22.0.1-4-g243d05b+871c1b8305,22.0.1-4-g3a563be+32dcf1063f,22.0.1-4-g44f2e3d+9e4ab0f4fa,22.0.1-42-gca6935d93+ba5e5ca3eb,22.0.1-5-g15c806e+85460ae5f3,22.0.1-5-g58711c4+611d128589,22.0.1-5-g75bb458+99c117b92f,22.0.1-6-g1c63a23+7fa3b7d9b6,22.0.1-6-g50866e6+84ff5a128b,22.0.1-6-g8d3140d+720564cf76,22.0.1-6-gd805d02+cc5644f571,22.0.1-8-ge5750ce+85460ae5f3,master-g6e05de7fdc+babf819c66,master-g99da0e417a+8d77f4f51a,w.2021.48
LSST Data Management Base Package
Public Member Functions | Static Public Attributes | List of all members
lsst.jointcal.jointcal.JointcalTaskConnections Class Reference
Inheritance diagram for lsst.jointcal.jointcal.JointcalTaskConnections:
lsst.jointcal.jointcal.JointcalConfig

Public Member Functions

def __init__ (self, *config=None)
 

Static Public Attributes

 inputCamera
 
 inputSourceTableVisit
 
 inputVisitSummary
 
 astrometryRefCat
 
 photometryRefCat
 
 outputWcs
 
 outputPhotoCalib
 
 doc
 
 name
 
 storageClass
 
 dimensions
 

Detailed Description

Middleware input/output connections for jointcal data.

Definition at line 222 of file jointcal.py.

Constructor & Destructor Documentation

◆ __init__()

def lsst.jointcal.jointcal.JointcalTaskConnections.__init__ (   self,
config = None 
)

Definition at line 337 of file jointcal.py.

337  def __init__(self, *, config=None):
338  super().__init__(config=config)
339  # When we are only doing one of astrometry or photometry, we don't
340  # need the reference catalog or produce the outputs for the other.
341  # This informs the middleware of that when the QuantumGraph is
342  # generated, so we don't block on getting something we won't need or
343  # create an expectation that downstream tasks will be able to consume
344  # something we won't produce.
345  if not config.doAstrometry:
346  self.prerequisiteInputs.remove("astrometryRefCat")
347  self.outputs.remove("outputWcs")
348  for key in list(self.outputs):
349  if "metricvalue_jointcal_astrometry" in key:
350  self.outputs.remove(key)
351  if not config.doPhotometry:
352  self.prerequisiteInputs.remove("photometryRefCat")
353  self.outputs.remove("outputPhotoCalib")
354  for key in list(self.outputs):
355  if "metricvalue_jointcal_photometry" in key:
356  self.outputs.remove(key)
357 
358 
daf::base::PropertyList * list
Definition: fits.cc:913

Member Data Documentation

◆ astrometryRefCat

lsst.jointcal.jointcal.JointcalTaskConnections.astrometryRefCat
static
Initial value:
= pipeBase.connectionTypes.PrerequisiteInput(
doc="The astrometry reference catalog to match to loaded input catalog sources.",
name="gaia_dr2_20200414",
storageClass="SimpleCatalog",
dimensions=("skypix",),
deferLoad=True,
multiple=True,
lookupFunction=lookupVisitRefCats,
)

Definition at line 251 of file jointcal.py.

◆ dimensions

lsst.jointcal.jointcal.JointcalTaskConnections.dimensions
static

Definition at line 298 of file jointcal.py.

◆ doc

lsst.jointcal.jointcal.JointcalTaskConnections.doc
static

Definition at line 295 of file jointcal.py.

◆ inputCamera

lsst.jointcal.jointcal.JointcalTaskConnections.inputCamera
static
Initial value:
= pipeBase.connectionTypes.PrerequisiteInput(
doc="The camera instrument that took these observations.",
name="camera",
storageClass="Camera",
dimensions=("instrument",),
isCalibration=True,
lookupFunction=lookupStaticCalibrations,
)

Definition at line 225 of file jointcal.py.

◆ inputSourceTableVisit

lsst.jointcal.jointcal.JointcalTaskConnections.inputSourceTableVisit
static
Initial value:
= pipeBase.connectionTypes.Input(
doc="Source table in parquet format, per visit",
name="sourceTable_visit",
storageClass="DataFrame",
dimensions=("instrument", "visit"),
deferLoad=True,
multiple=True,
)

Definition at line 233 of file jointcal.py.

◆ inputVisitSummary

lsst.jointcal.jointcal.JointcalTaskConnections.inputVisitSummary
static
Initial value:
= pipeBase.connectionTypes.Input(
doc=("Per-visit consolidated exposure metadata built from calexps. "
"These catalogs use detector id for the id and must be sorted for "
"fast lookups of a detector."),
name="visitSummary",
storageClass="ExposureCatalog",
dimensions=("instrument", "visit"),
deferLoad=True,
multiple=True,
)

Definition at line 241 of file jointcal.py.

◆ name

lsst.jointcal.jointcal.JointcalTaskConnections.name
static

Definition at line 296 of file jointcal.py.

◆ outputPhotoCalib

lsst.jointcal.jointcal.JointcalTaskConnections.outputPhotoCalib
static
Initial value:
= pipeBase.connectionTypes.Output(
doc=("Per-tract, per-visit photometric calibrations derived from the fitted model."
" These catalogs only contain entries for detectors with an output, and use"
" the detector id for the catalog id, sorted on id for fast lookups of a detector."),
name="jointcalPhotoCalibCatalog",
storageClass="ExposureCatalog",
dimensions=("instrument", "visit", "skymap", "tract"),
multiple=True
)

Definition at line 279 of file jointcal.py.

◆ outputWcs

lsst.jointcal.jointcal.JointcalTaskConnections.outputWcs
static
Initial value:
= pipeBase.connectionTypes.Output(
doc=("Per-tract, per-visit world coordinate systems derived from the fitted model."
" These catalogs only contain entries for detectors with an output, and use"
" the detector id for the catalog id, sorted on id for fast lookups of a detector."),
name="jointcalSkyWcsCatalog",
storageClass="ExposureCatalog",
dimensions=("instrument", "visit", "skymap", "tract"),
multiple=True
)

Definition at line 270 of file jointcal.py.

◆ photometryRefCat

lsst.jointcal.jointcal.JointcalTaskConnections.photometryRefCat
static
Initial value:
= pipeBase.connectionTypes.PrerequisiteInput(
doc="The photometry reference catalog to match to loaded input catalog sources.",
name="ps1_pv3_3pi_20170110",
storageClass="SimpleCatalog",
dimensions=("skypix",),
deferLoad=True,
multiple=True,
lookupFunction=lookupVisitRefCats,
)

Definition at line 260 of file jointcal.py.

◆ storageClass

lsst.jointcal.jointcal.JointcalTaskConnections.storageClass
static

Definition at line 297 of file jointcal.py.


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