flats_srcurrent does not exist!
On /data/visitor/ihch1728/bm05/20230907/PROCESSED_DATA/w2/w2_0001/
, all information relevant for SRCurrent normalization is present, but nabu claims that SRCurrent metadata is missing.
Upon closer inspection:
# in ProcessConfig
if normalize_srcurrent:
if (
dataset_info.projections_srcurrent is None
or dataset_info.flats_srcurrent is None
or len(dataset_info.flats_srcurrent) == 0
):
self.logger.error("Cannot do SRCurrent normalization: missing flats and/or projections SRCurrent")
normalize_srcurrent = False
# in DatasetAnalyzer
self.flats_srcurrent = None # never modified afterwise
So it cannot work.
Not sure how it went unnoticed ?!