コード例 #1
0
ファイル: test_modules.py プロジェクト: ViaFerrata/OrcaSong
    def test_unknown_field(self):
        # (3 x 2) x-t binning
        bin_edges_list = [["aggg", [3.5, 4.5, 5.5, 6.5]],
                          ["time", [0.5, 2, 3.5]]]

        module = modules.ImageMaker(bin_edges_list=bin_edges_list)
        in_blob = {
            "Hits":
            kp.Table({
                "x": [4, 5, 6],
                "time": [1.0, 2.0, 3.0],
                "t0": [0.1, 0.2, 0.3],
                "triggered": [0, 1, 1],
            })
        }

        with self.assertRaises(ValueError):
            module.process(in_blob)
コード例 #2
0
ファイル: test_modules.py プロジェクト: ViaFerrata/OrcaSong
    def test_2d_xt_binning(self):
        # (3 x 2) x-t binning
        bin_edges_list = [["x", [3.5, 4.5, 5.5, 6.5]], ["time", [0.5, 2, 3.5]]]

        module = modules.ImageMaker(bin_edges_list=bin_edges_list)
        in_blob = {
            "Hits":
            kp.Table({
                "x": [4, 5, 6],
                "time": [1.0, 2.0, 3.0],
                "t0": [0.1, 0.2, 0.3],
                "triggered": [0, 1, 1],
            })
        }

        target = {
            "Hits":
            kp.Table({
                "x": [4, 5, 6],
                "time": [1.0, 2.0, 3.0],
                "t0": [0.1, 0.2, 0.3],
                "triggered": [0, 1, 1],
            }),
            "samples":
            np.array([[
                [1, 0],
                [0, 1],
                [0, 1],
            ]]),
        }

        out_blob = module.process(in_blob)
        self.assertSetEqual(set(out_blob.keys()), set(target.keys()))
        np.testing.assert_array_almost_equal(
            np.array(out_blob["Hits"].view("<f8")),
            np.array(target["Hits"].view("<f8")))
        np.testing.assert_array_almost_equal(np.array(out_blob["samples"]),
                                             np.array(target["samples"]))
コード例 #3
0
ファイル: test_modules.py プロジェクト: StefReck/OrcaSong
    def test_1d_binning_no_hits(self):
        # (1, ) t binning
        bin_edges_list = [["time", [3.5, 4.5]]]

        module = modules.ImageMaker(bin_edges_list=bin_edges_list)
        in_blob = {
            "Hits":
            kp.Table({
                'time': [1., 2., 3.],
                "t0": [0.1, 0.2, 0.3],
                "triggered": [0, 1, 1],
            })
        }

        target = {
            "Hits":
            kp.Table({
                'time': [1., 2., 3.],
                "t0": [0.1, 0.2, 0.3],
                "triggered": [0, 1, 1],
            }),
            "samples":
            np.array([
                [
                    0,
                ],
            ])
        }

        out_blob = module.process(in_blob)
        self.assertSetEqual(set(out_blob.keys()), set(target.keys()))
        np.testing.assert_array_almost_equal(
            np.array(out_blob["Hits"].view("<f8")),
            np.array(target["Hits"].view("<f8")))
        np.testing.assert_array_almost_equal(np.array(out_blob["samples"]),
                                             np.array(target["samples"]))