1 2 3 4 5 6 7 8 9 10 11 | class GMOS_IFU_TWILIGHT(DataClassification):
name="GMOS_IFU_TWILIGHT"
usage = """
Applies to all IFU twilight flat datasets from the GMOS instruments
"""
parent = "GMOS_IFU"
requirement = AND([ ISCLASS("GMOS_IFU"),
PHU(OBSTYPE="FLAT"),
PHU(OBJECT="Twilight") ])
newtypes.append(GMOS_IFU_TWILIGHT())
|