1 2 3 4 5 6 7 8 9 | class NICI_SDI(DataClassification):
name="NICI_SDI"
usage = "Applies to imaging datasets from the NICI instrument."
parent = "NICI"
# DICHROIC PHU keyword value contains the string '50/50'
requirement = ISCLASS('NICI') & PHU( {'{re}.*?DICHROIC': ".*?50/50.*?" }) & \
PHU(CRMODE='FOLLOW') & PHU({'{prohibit}OBSTYPE':'FLAT'})
newtypes.append(NICI_SDI())
|