1 2 3 4 5 6 7 8 9 10 11 12 13 14 | class CAL(DataClassification):
name="CAL"
# this a description of the intent of the classification
# to what does the classification apply?
usage = """
Special parent to group generic types (e.g. IMAGE, SPECT, MOS, IFU)
"""
parent = "GENERIC"
requirement = OR([ ISCLASS("F2_CAL"),
ISCLASS("GMOS_CAL"),
ISCLASS("GSAOI_CAL"),
ISCLASS("NICI_CAL")])
newtypes.append(CAL())
|