This Page

3.24. GEMINI Classification SourceΒΆ

Classification
GEMINI
Source Location
ADCONFIG_Gemini/classifications/types/gemdtype.GEMINI.py
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
class GEMINI(DataClassification):
    name="GEMINI"
    # 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.
        '''
    # Added the instrument names directly, so that when we get engineering data that does
    # not have telescope headers in, and thus doesn't identify as GEMINI_NORTH or _SOUTH
    # then it does identify as GEMINI, so that the gemini descriptors associate with it.
    requirement = OR(ISCLASS("GEMINI_NORTH"),
                     ISCLASS("GEMINI_SOUTH"),
                     ISCLASS("GMOS"),
                     ISCLASS("NIRI"),
                     ISCLASS("GNIRS"),
                     ISCLASS("MICHELLE"),
                     ISCLASS("NICI"),
                     ISCLASS("F2"),
                     ISCLASS("NIFS"),
                     ISCLASS("TRECS"),
                     ISCLASS("GSAOI"),
                     ISCLASS("BHROS"))


newtypes.append( GEMINI())