1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | class GMOS(DataClassification):
name="GMOS"
# this a description of the intent of the classification
# to what does the classification apply?
usage = '''
Applies to all data from either GMOS-North or GMOS-South instruments in any mode.
'''
parent = "GEMINI"
requirement = ISCLASS("GMOS_N") | ISCLASS("GMOS_S")
# equivalent to...
#requirement = OR(
# ClassReq("GMOS_N"),
# ClassReq("GMOS_S")
# )
newtypes.append( GMOS())
|