hg12FixedG12 = pexConfig.Field(
dtype=float,
default=None,
optional=True,
doc="If set, fix the G12 slope parameter to this value "
"and only fit H. If None (default), both H and G12 "
"are fit.",
)
hg12MagSigmaFloor = pexConfig.Field(
dtype=float,
default=0.0,
doc="Systematic magnitude error floor (mag) added in "
"quadrature to measurement errors before HG12 "
"fitting.",
)
hg12NSigmaClip = pexConfig.Field(
dtype=float,
default=None,
optional=True,
doc="If set, reject outliers beyond this many sigma "
"after an initial robust fit. If None, no clipping.",
)
class ConsolidateSsTablesTask(pipeBase.PipelineTask):
ConfigClass = ConsolidateSsTablesConfig
_DefaultName = "consolidateSsTables"
@timeMethod
def run(self, inputCatalogs, mpcorb):
Definition at line 123 of file consolidateSsTables.py.