This Page

3.110. SPECT Classification SourceΒΆ

Classification
SPECT
Source Location
ADCONFIG_Gemini/classifications/types/gemdtype.SPECT.py
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
class SPECT(DataClassification):
    name="SPECT"
    # this a description of the intent of the classification
    # to what does the classification apply?
    usage = """
        Applies to all Gemini spectroscopy datasets
        """
    parent = "GENERIC"
    requirement = OR([  ISCLASS("F2_SPECT"),
                        ISCLASS("GMOS_SPECT"),
                        ISCLASS("GNIRS_SPECT"),
                        ISCLASS("MICHELLE_SPECT"),
                        ISCLASS("NIFS_SPECT"),
                        ISCLASS("NIRI_SPECT"),
                        ISCLASS("TRECS_SPECT")])

newtypes.append(SPECT())