Esempio n. 1
0
    def runTest(self):
        """
        Run the redmapper.RunCatalog tests.
        """
        random.seed(seed=12345)

        file_path = 'data_for_tests'
        conffile = 'testconfig.yaml'
        catfile = 'test_cluster_pos.fit'

        config = Configuration(file_path + '/' + conffile)
        config.catfile = file_path + '/' + catfile

        runcat = RunCatalog(config)

        runcat.run(do_percolation_masking=False)

        testing.assert_equal(runcat.cat.mem_match_id, [1, 2, 3])
        testing.assert_almost_equal(runcat.cat.Lambda, [24.16809273, 26.85296822, 13.36757088])
        testing.assert_almost_equal(runcat.cat.lambda_e, [2.50003219, 4.83695221, 2.4651196])
        testing.assert_almost_equal(runcat.cat.z_lambda, [0.22785459, 0.32256541, 0.2176394])
        testing.assert_almost_equal(runcat.cat.z_lambda_e, [0.00631017, 0.01353213, 0.00984608])

        runcat.run(do_percolation_masking=True)

        testing.assert_equal(runcat.cat.mem_match_id, [1, 2, 3])
        testing.assert_almost_equal(runcat.cat.Lambda, [24.22911263, 26.85296822, -1.])
        testing.assert_almost_equal(runcat.cat.lambda_e, [2.50442076, 4.83695221, -1.])
        testing.assert_almost_equal(runcat.cat.z_lambda, [0.22785437, 0.32256407, -1.])
        testing.assert_almost_equal(runcat.cat.z_lambda_e, [0.00630675, 0.01353031, -1.])
Esempio n. 2
0
    def runTest(self):

        file_path = 'data_for_tests'
        conffile = 'testconfig.yaml'
        catfile = 'test_cluster_pos.fit'

        config = Configuration(file_path + '/' + conffile)
        config.catfile = file_path + '/' + catfile

        runcat = RunCatalog(config)

        runcat.run(do_percolation_masking=False)

        testing.assert_equal(runcat.cat.mem_match_id, [1, 2, 3])
        testing.assert_almost_equal(runcat.cat.Lambda,
                                    [23.86299324, 17.3491192, 13.36757088])
        #testing.assert_almost_equal(runcat.cat.lambda_e, [ 2.47804546,  2.00936174, 2.4651196])
        testing.assert_almost_equal(runcat.cat.lambda_e,
                                    [2.47804546, 2.0184479, 2.4651196])
        #testing.assert_almost_equal(runcat.cat.z_lambda, [ 0.22786506,  0.32121494, 0.22311865])
        testing.assert_almost_equal(runcat.cat.z_lambda,
                                    [0.22786506, 0.3215729, 0.22311865])

        #testing.assert_almost_equal(runcat.cat.z_lambda_e, [ 0.00629484,  0.01389629, 0.00969736])
        testing.assert_almost_equal(runcat.cat.z_lambda_e,
                                    [0.00629484, 0.0139078, 0.00969736])

        runcat.run(do_percolation_masking=True)

        testing.assert_equal(runcat.cat.mem_match_id, [1, 2, 3])
        #testing.assert_almost_equal(runcat.cat.Lambda, [ 23.86299324,  17.39488411, -1.0])
        testing.assert_almost_equal(runcat.cat.Lambda,
                                    [23.86299324, 17.3491192, -1.0])
        #testing.assert_almost_equal(runcat.cat.lambda_e, [ 2.47804546,  2.00936174, -1.0])
        testing.assert_almost_equal(runcat.cat.lambda_e,
                                    [2.47804546, 2.0184479, -1.0])
        #testing.assert_almost_equal(runcat.cat.z_lambda, [ 0.22786506,  0.32121494, -1.0])
        testing.assert_almost_equal(runcat.cat.z_lambda,
                                    [0.22786506, 0.3215729, -1.0])
        #testing.assert_almost_equal(runcat.cat.z_lambda_e, [ 0.00629484,  0.01389629, -1.0])
        testing.assert_almost_equal(runcat.cat.z_lambda_e,
                                    [0.00629484, 0.0139078, -1.0])
Esempio n. 3
0
    def runTest(self):
        """
        Run the redmapper.RunCatalog tests.
        """
        random.seed(seed=12345)

        file_path = 'data_for_tests'
        conffile = 'testconfig.yaml'
        catfile = 'test_cluster_pos.fit'

        config = Configuration(file_path + '/' + conffile)
        config.catfile = file_path + '/' + catfile

        runcat = RunCatalog(config)

        runcat.run(do_percolation_masking=False)

        testing.assert_equal(runcat.cat.mem_match_id, [1, 2, 3])
        testing.assert_almost_equal(runcat.cat.Lambda,
                                    [24.16809273, 26.85296822, 13.36757088])
        testing.assert_almost_equal(runcat.cat.lambda_e,
                                    [2.50003219, 4.83695221, 2.4651196])
        testing.assert_almost_equal(runcat.cat.z_lambda,
                                    [0.22785459, 0.32256541, 0.2176394])
        testing.assert_almost_equal(runcat.cat.z_lambda_e,
                                    [0.00631017, 0.01353213, 0.00984608])

        runcat.run(do_percolation_masking=True)

        testing.assert_equal(runcat.cat.mem_match_id, [1, 2, 3])
        testing.assert_almost_equal(runcat.cat.Lambda,
                                    [24.22911263, 26.85296822, -1.])
        testing.assert_almost_equal(runcat.cat.lambda_e,
                                    [2.50442076, 4.83695221, -1.])
        testing.assert_almost_equal(runcat.cat.z_lambda,
                                    [0.22785437, 0.32256407, -1.])
        testing.assert_almost_equal(runcat.cat.z_lambda_e,
                                    [0.00630675, 0.01353031, -1.])