コード例 #1
0
    def set_type(self, t):
        """ set the dm type

        :param t: (str) : type of dm
        """
        self.__type = scons.check_enum(scons.DmType, t)
コード例 #2
0
    def set_type_pattern(self, t):
        """ set the pattern type

        :param t: (str) : type of pattern
        """
        self.__type_pattern = scons.check_enum(scons.PatternType, t)
コード例 #3
0
    def set_influType(self, t):
        """ Set the influence function type for pzt DM

        :param t: (str) : centroider type
        """
        self.__influType = scons.check_enum(scons.InfluType, t)
コード例 #4
0
    def set_type_kl(self, t):
        """ Set the type of KL used for computation

        :param t: (string) : KL types : kolmo or karman
        """
        self.__type_kl = scons.check_enum(scons.KLType, t)
コード例 #5
0
    def set_type_ap(self, t):
        """ Set the EELT aperture type

        :param t: (str) : EELT aperture type
        """
        self.__type_ap = const.check_enum(const.ApertureType, t)
コード例 #6
0
    def set_spiders_type(self, spider):
        """ Set the secondary supports type

        :param spider: (str) : secondary supports type
        """
        self.__spiders_type = const.check_enum(const.SpiderType, spider)
コード例 #7
0
    def set_type_fct(self, t):
        """ TODO: docstring

        :param t: (string) : type
        """
        self.__type_fct = scons.check_enum(scons.CentroiderFctType, t)
コード例 #8
0
    def set_type(self, t):
        """ Set the centroider type

        :param t: (string) : type
        """
        self.__type = scons.check_enum(scons.CentroiderType, t)
コード例 #9
0
    def set_proftype(self, p):
        """ Set the type of sodium profile

        :param p: (str) : type of sodium profile "gauss", "exp", etc ...
        """
        self.__proftype = scons.check_enum(scons.ProfType, p)
コード例 #10
0
    def set_fstop(self, f):
        """ Set the size of field stop

        :param f: (str) : size of field stop in arcsec
        """
        self.__fstop = scons.check_enum(scons.FieldStopType, f)
コード例 #11
0
    def set_type(self, type):
        """ Set the type of wfs

        :param t: (str) : type of wfs ("sh" or "pyr")
        """
        self.__type = scons.check_enum(scons.WFSType, type)