From 4938decff8602fb9083649331595c99aea9377da Mon Sep 17 00:00:00 2001 From: Ian Sullivan Date: Mon, 15 Jun 2026 13:22:08 -0700 Subject: [PATCH] Add reliability version to the diaSource schema --- python/lsst/ip/diffim/detectAndMeasure.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/lsst/ip/diffim/detectAndMeasure.py b/python/lsst/ip/diffim/detectAndMeasure.py index 1840a363..7d315112 100644 --- a/python/lsst/ip/diffim/detectAndMeasure.py +++ b/python/lsst/ip/diffim/detectAndMeasure.py @@ -571,6 +571,7 @@ def __init__(self, **kwargs): self.makeSubtask("findGlints") self.schema.addField("glint_trail", "Flag", "DiaSource is part of a glint trail.") self.schema.addField("reliability", type="F", doc="Reliability score of the DiaSource") + self.schema.addField("reliabilityVersion", type=str, size=7, doc="Version of the reliability model") # To get the "merge_*" fields in the schema; have to re-initialize # this later, once we have a peak schema post-detection.