1 2 3 4 5 6 7 8 | class NICI_ADI_R(DataClassification):
name="NICI_ADI_R"
usage = "Applies to imaging datasets from the NICI instrument."
parent = "NICI"
# DICHROIC PHU keyword value contains the string 'Open'
requirement = ISCLASS('NICI') & PHU( {'{re}.*?DICHROIC': ".*?Open*?" })
newtypes.append(NICI_ADI_R())
|