diff --git a/python/lsst/cp/verify/repackStats.py b/python/lsst/cp/verify/repackStats.py index 3fe015d..2ebd53e 100644 --- a/python/lsst/cp/verify/repackStats.py +++ b/python/lsst/cp/verify/repackStats.py @@ -133,6 +133,7 @@ def repackDetStats(self, detectorStats, detectorDims): instrument = detDims["instrument"] exposure = detDims["exposure"] detector = detDims["detector"] + mjd = detStats["ISR"]["MJD"] # Get amp stats # AMP {ampName} [CR_NOISE MEAN NOISE] value @@ -140,6 +141,7 @@ def repackDetStats(self, detectorStats, detectorDims): row[ampName] = { "instrument": instrument, "exposure": exposure, + "mjd": mjd, "detector": detector, "amplifier": ampName, "biasMean": stats["MEAN"],