1 2 3 4 5 6 7 8 9 10 11 | class NICI_DARK(DataClassification):
name="NICI_DARK"
# this a description of the intent of the classification
# to what does the classification apply?
usage = '''
Applies to all dark current calibration datasets for NICI instrument.
'''
parent = "NICI_CAL"
requirement = ISCLASS("NICI_DARK_CURRENT", "NICI_DARK_OLD")
newtypes.append( NICI_DARK())
|