1 2 3 4 5 6 7 8 9 10 11 12 13 | class MOS(DataClassification):
name="MOS"
# this a description of the intent of the classification
# to what does the classification apply?
usage = """
Applies to all MOS data which conformed to the required Gemini Generic
MOS Standard
"""
parent = "SPECT"
requirement = OR([ ISCLASS("F2_MOS"),
ISCLASS("GMOS_MOS"),])
newtypes.append(MOS())
|