#!/usr/bin/env python3 import unittest import awkward1 as ak import numpy as np from pathlib import Path from km3net_testdata import data_path from km3io.definitions import fitparameters as kfit from km3io import OfflineReader from km3io.tools import ( to_num, cached_property, unfold_indices, unique, uniquecount, fitinf, count_nested, _find, mask, best_track, get_w2list_param, get_multiplicity, best_jmuon, best_jshower, best_aashower, best_dusjshower, is_CC, ) OFFLINE_FILE = OfflineReader(data_path("offline/km3net_offline.root")) GENHEN_OFFLINE_FILE = OfflineReader( data_path("offline/mcv5.1.genhen_anumuNC.sirene.jte.jchain.aashower.sample.root") ) GSEAGEN_OFFLINE_FILE = OfflineReader(data_path("offline/numucc.root")) class TestFitinf(unittest.TestCase): def setUp(self): self.tracks = OFFLINE_FILE.events.tracks self.fit = self.tracks.fitinf self.best = self.tracks[:, 0] self.best_fit = self.best.fitinf def test_fitinf_from_all_events(self): beta = fitinf(kfit.JGANDALF_BETA0_RAD, self.tracks) assert beta[0][0] == self.fit[0][0][0] assert beta[0][1] == self.fit[0][1][0] assert beta[0][2] == self.fit[0][2][0] def test_fitinf_from_one_event(self): beta = fitinf(kfit.JGANDALF_BETA0_RAD, self.best) assert beta[0] == self.best_fit[0][0] assert beta[1] == self.best_fit[1][0] assert beta[2] == self.best_fit[2][0] def test_fitinf_from_one_event_and_one_track(self): beta = fitinf(kfit.JGANDALF_BETA0_RAD, self.tracks[0][0]) assert beta == self.tracks[0][0].fitinf[0] class TestBestTrackSelection(unittest.TestCase): def setUp(self): self.events = OFFLINE_FILE.events self.one_event = OFFLINE_FILE.events[0] def test_best_track_selection_from_multiple_events_with_explicit_stages_in_list( self, ): best = best_track(self.events.tracks, stages=[1, 3, 5, 4]) assert len(best) == 10 assert best.rec_stages[0] == [1, 3, 5, 4] assert best.rec_stages[1] == [1, 3, 5, 4] assert best.rec_stages[2] == [1, 3, 5, 4] assert best.rec_stages[3] == [1, 3, 5, 4] # test with a shorter set of rec_stages best2 = best_track(self.events.tracks, stages=[1, 3]) assert len(best2) == 10 assert best2.rec_stages[0] == [1, 3] assert best2.rec_stages[1] == [1, 3] assert best2.rec_stages[2] == [1, 3] assert best2.rec_stages[3] == [1, 3] # test the importance of order in rec_stages in lists best3 = best_track(self.events.tracks, stages=[3, 1]) assert len(best3) == 10 assert best3.rec_stages[0] is None assert best3.rec_stages[1] is None assert best3.rec_stages[2] is None assert best3.rec_stages[3] is None def test_best_track_selection_from_multiple_events_with_explicit_stages_in_set( self, ): best = best_track(self.events.tracks, stages={1, 3, 4, 5}) assert len(best) == 10 assert best.rec_stages[0] == [1, 3, 5, 4] assert best.rec_stages[1] == [1, 3, 5, 4] assert best.rec_stages[2] == [1, 3, 5, 4] assert best.rec_stages[3] == [1, 3, 5, 4] # test with a shorter set of rec_stages best2 = best_track(self.events.tracks, stages={1, 3}) assert len(best2) == 10 assert best2.rec_stages[0] == [1, 3] assert best2.rec_stages[1] == [1, 3] assert best2.rec_stages[2] == [1, 3] assert best2.rec_stages[3] == [1, 3] # test the irrelevance of order in rec_stages in sets best3 = best_track(self.events.tracks, stages={3, 1}) assert len(best3) == 10 assert best3.rec_stages[0] == [1, 3] assert best3.rec_stages[1] == [1, 3] assert best3.rec_stages[2] == [1, 3] assert best3.rec_stages[3] == [1, 3] def test_best_track_selection_from_multiple_events_with_start_end(self): best = best_track(self.events.tracks, startend=(1, 4)) assert len(best) == 10 assert best.rec_stages[0] == [1, 3, 5, 4] assert best.rec_stages[1] == [1, 3, 5, 4] assert best.rec_stages[2] == [1, 3, 5, 4] assert best.rec_stages[3] == [1, 3, 5, 4] # test with shorter stages best2 = best_track(self.events.tracks, startend=(1, 3)) assert len(best2) == 10 assert best2.rec_stages[0] == [1, 3] assert best2.rec_stages[1] == [1, 3] assert best2.rec_stages[2] == [1, 3] assert best2.rec_stages[3] == [1, 3] # test the importance of start as a real start of rec_stages best3 = best_track(self.events.tracks, startend=(0, 3)) assert len(best3) == 10 assert best3.rec_stages[0] is None assert best3.rec_stages[1] is None assert best3.rec_stages[2] is None assert best3.rec_stages[3] is None # test the importance of end as a real end of rec_stages best4 = best_track(self.events.tracks, startend=(1, 10)) assert len(best4) == 10 assert best4.rec_stages[0] is None assert best4.rec_stages[1] is None assert best4.rec_stages[2] is None assert best4.rec_stages[3] is None def test_best_track_from_a_single_event(self): # stages as a list best = best_track(self.one_event.tracks, stages=[1, 3, 5, 4]) assert len(best) == 1 assert best.lik == ak.max(self.one_event.tracks.lik) assert best.rec_stages[0] == [1, 3, 5, 4] # stages as a set best2 = best_track(self.one_event.tracks, stages={1, 3, 4, 5}) assert len(best2) == 1 assert best2.lik == ak.max(self.one_event.tracks.lik) assert best2.rec_stages[0] == [1, 3, 5, 4] # stages with start and end best3 = best_track(self.one_event.tracks, startend=(1, 4)) assert len(best3) == 1 assert best3.lik == ak.max(self.one_event.tracks.lik) assert best3.rec_stages[0] == [1, 3, 5, 4] def test_best_track_on_slices_one_event(self): tracks_slice = self.one_event.tracks[self.one_event.tracks.rec_type == 4000] # test stages with list best = best_track(tracks_slice, stages=[1, 3, 5, 4]) assert len(best) == 1 assert best.lik == ak.max(tracks_slice.lik) assert best.rec_stages[0] == [1, 3, 5, 4] # test stages with set best2 = best_track(tracks_slice, stages={1, 3, 4, 5}) assert len(best2) == 1 assert best2.lik == ak.max(tracks_slice.lik) assert best2.rec_stages[0] == [1, 3, 5, 4] def test_best_track_on_slices_with_start_end_one_event(self): tracks_slice = self.one_event.tracks[0:5] best = best_track(tracks_slice, startend=(1, 4)) assert len(best) == 1 assert best.lik == ak.max(tracks_slice.lik) assert best.rec_stages[0][0] == 1 assert best.rec_stages[0][-1] == 4 def test_best_track_on_slices_with_explicit_rec_stages_one_event(self): tracks_slice = self.one_event.tracks[0:5] best = best_track(tracks_slice, stages=[1, 3, 5, 4]) assert best.lik == ak.max(tracks_slice.lik) assert best.rec_stages[0][0] == 1 assert best.rec_stages[0][-1] == 4 def test_best_track_on_slices_multiple_events(self): tracks_slice = self.events.tracks[0:5] # stages in list best = best_track(tracks_slice, stages=[1, 3, 5, 4]) assert len(best) == 5 assert best.lik == ak.max(tracks_slice.lik) assert best.rec_stages[0] == [1, 3, 5, 4] # stages in set best = best_track(tracks_slice, stages={1, 3, 4, 5}) assert len(best) == 5 assert best.lik == ak.max(tracks_slice.lik) assert best.rec_stages[0] == [1, 3, 5, 4] # using start and end best = best_track(tracks_slice, startend=(1, 4)) assert len(best) == 5 assert best.lik == ak.max(tracks_slice.lik) assert best.rec_stages[0] == [1, 3, 5, 4] def test_best_track_raises_when_unknown_stages(self): with self.assertRaises(ValueError): best_track(self.events.tracks) def test_best_track_raises_when_too_many_inputs(self): with self.assertRaises(ValueError): best_track(self.events.tracks, startend=(1, 4), stages=[1, 3, 5, 4]) class TestBestJmuon(unittest.TestCase): def test_best_jmuon(self): best = best_jmuon(OFFLINE_FILE.events.tracks) assert len(best) == 10 assert best.rec_stages[0] == [1, 3, 5, 4] assert best.rec_stages[1] == [1, 3, 5, 4] assert best.rec_stages[2] == [1, 3, 5, 4] assert best.rec_stages[3] == [1, 3, 5, 4] assert best.lik[0] == ak.max(OFFLINE_FILE.events.tracks.lik[0]) assert best.lik[1] == ak.max(OFFLINE_FILE.events.tracks.lik[1]) assert best.lik[2] == ak.max(OFFLINE_FILE.events.tracks.lik[2]) class TestBestJshower(unittest.TestCase): def test_best_jshower(self): # there are no jshower events in this file best = best_jshower(OFFLINE_FILE.events.tracks) assert len(best) == 10 assert best.rec_stages[0] is None assert best.rec_stages[1] is None assert best.rec_stages[2] is None assert best.rec_stages[3] is None assert best.lik[0] is None assert best.lik[1] is None assert best.lik[2] is None class TestBestAashower(unittest.TestCase): def test_best_aashower(self): # there are no aashower events in this file best = best_aashower(OFFLINE_FILE.events.tracks) assert len(best) == 10 assert best.rec_stages[0] is None assert best.rec_stages[1] is None assert best.rec_stages[2] is None assert best.rec_stages[3] is None assert best.lik[0] is None assert best.lik[1] is None assert best.lik[2] is None class TestBestDusjshower(unittest.TestCase): def test_best_dusjshower(self): # there are no aashower events in this file best = best_dusjshower(OFFLINE_FILE.events.tracks) assert len(best) == 10 assert best.rec_stages[0] is None assert best.rec_stages[1] is None assert best.rec_stages[2] is None assert best.rec_stages[3] is None assert best.lik[0] is None assert best.lik[1] is None assert best.lik[2] is None class TestGetMultiplicity(unittest.TestCase): def test_get_multiplicity(self): multiplicity = get_multiplicity(OFFLINE_FILE.events.tracks, [1, 3, 5, 4]) assert len(multiplicity) == 10 assert multiplicity[0] == 1 assert multiplicity[1] == 1 assert multiplicity[2] == 1 assert multiplicity[3] == 1 # test with no nexisting rec_stages multiplicity2 = get_multiplicity(OFFLINE_FILE.events.tracks, [1, 2, 3, 4, 5]) assert len(multiplicity2) == 10 assert multiplicity2[0] == 0 assert multiplicity2[1] == 0 assert multiplicity2[2] == 0 assert multiplicity2[3] == 0 class TestCountNested(unittest.TestCase): def test_count_nested(self): fit = OFFLINE_FILE.events.tracks.fitinf assert count_nested(fit, axis=0) == 10 assert count_nested(fit, axis=1)[0:4] == ak.Array([56, 55, 56, 56]) assert count_nested(fit, axis=2)[0][0:4] == ak.Array([17, 11, 8, 8]) class TestRecStagesMasks(unittest.TestCase): def setUp(self): self.nested = ak.Array( [ [[1, 2, 3], [1, 2, 3], [1]], [[0], [1, 2, 3]], [[0], [0, 1, 3], [0], [1, 2, 3], [1, 2, 3]], ] ) self.tracks = OFFLINE_FILE.events.tracks def test_find(self): builder = ak.ArrayBuilder() _find(self.nested, ak.Array([1, 2, 3]), builder) labels = builder.snapshot() assert labels[0][0] == 1 assert labels[0][1] == 1 assert labels[0][2] == 0 assert labels[1][0] == 0 def test_mask_with_explicit_rec_stages_in_list_with_multiple_events(self): rec_stages = self.tracks.rec_stages stages = [1, 3, 5, 4] masks = mask(self.tracks, stages=stages) assert masks[0][0] == all(rec_stages[0][0] == ak.Array(stages)) assert masks[1][0] == all(rec_stages[1][0] == ak.Array(stages)) assert masks[0][1] == False def test_mask_with_explicit_rec_stages_in_set_with_multiple_events(self): stages = {1, 3, 4, 5} masks = mask(self.tracks, stages=stages) tracks = self.tracks[masks] assert 1 in tracks.rec_stages[0][0] assert 3 in tracks.rec_stages[0][0] assert 4 in tracks.rec_stages[0][0] assert 5 in tracks.rec_stages[0][0] def test_mask_with_start_and_end_of_rec_stages_with_multiple_events(self): rec_stages = self.tracks.rec_stages stages = [1, 3, 5, 4] masks = mask(self.tracks, startend=(1, 4)) assert masks[0][0] == all(rec_stages[0][0] == ak.Array(stages)) assert masks[1][0] == all(rec_stages[1][0] == ak.Array(stages)) assert masks[0][1] == False def test_mask_with_start_and_end_of_rec_stages_signle_event(self): rec_stages = self.tracks.rec_stages[0][0] stages = [1, 3, 5, 4] track = self.tracks[0] masks = mask(track, startend=(1, 4)) assert track[masks].rec_stages[0][0] == 1 assert track[masks].rec_stages[0][-1] == 4 def test_mask_with_explicit_rec_stages_with_single_event(self): rec_stages = self.tracks.rec_stages[0][0] stages = [1, 3] track = self.tracks[0] masks = mask(track, stages=stages) assert track[masks].rec_stages[0][0] == stages[0] assert track[masks].rec_stages[0][1] == stages[1] def test_mask_raises_when_too_many_inputs(self): with self.assertRaises(ValueError): mask(self.tracks, startend=(1, 4), stages=[1, 3, 5, 4]) def test_mask_raises_when_no_inputs(self): with self.assertRaises(ValueError): mask(self.tracks) class TestUnique(unittest.TestCase): def run_random_test_with_dtype(self, dtype): max_range = 100 for i in range(23): low = np.random.randint(0, max_range) high = np.random.randint(low + 1, low + 2 + np.random.randint(max_range)) n = np.random.randint(max_range) arr = np.random.randint(low, high, n).astype(dtype) np_reference = np.sort(np.unique(arr)) result = np.sort(unique(arr, dtype=dtype)) try: np.allclose(np_reference, result, atol=1e-1) except ValueError: print("low:", low) print("high:", high) print("n:", n) print("arr =", list(arr)) print("np.unique(arr) =", np_reference) print("unique(arr) =", result) assert False def test_unique_with_dtype_int8(self): self.run_random_test_with_dtype(np.int8) def test_unique_with_dtype_int16(self): self.run_random_test_with_dtype(np.int16) def test_unique_with_dtype_int32(self): self.run_random_test_with_dtype(np.int32) def test_unique_with_dtype_int64(self): self.run_random_test_with_dtype(np.int64) def test_unique_with_dtype_uint8(self): self.run_random_test_with_dtype(np.uint8) def test_unique_with_dtype_uint16(self): self.run_random_test_with_dtype(np.uint16) def test_unique_with_dtype_uint32(self): self.run_random_test_with_dtype(np.uint32) def test_unique_with_dtype_uint64(self): self.run_random_test_with_dtype(np.uint64) class TestUniqueCount(unittest.TestCase): def test_uniquecount(self): arr = ak.Array([[1, 2, 3], [2, 2, 2], [3, 4, 5, 6, 6], [4, 4, 3, 1]]) assert np.allclose([3, 1, 4, 3], uniquecount(arr)) def test_uniquecount_with_empty_subarrays(self): arr = ak.Array([[1, 2, 3], [2, 2, 2], [], [4, 4, 3, 1]]) assert np.allclose([3, 1, 0, 3], uniquecount(arr)) class TestToNum(unittest.TestCase): def test_to_num(self): self.assertEqual(10, to_num("10")) self.assertEqual(10.5, to_num("10.5")) self.assertEqual("test", to_num("test")) self.assertIsNone(to_num(None)) class TestCachedProperty(unittest.TestCase): def test_cached_property(self): class Test: @cached_property def prop(self): pass self.assertTrue(isinstance(Test.prop, cached_property)) class TestUnfoldIndices(unittest.TestCase): def test_unfold_indices(self): data = range(10) indices = [slice(2, 5), 0] assert data[indices[0]][indices[1]] == unfold_indices(data, indices) indices = [slice(1, 9, 2), slice(1, 4), 2] assert data[indices[0]][indices[1]][indices[2]] == unfold_indices(data, indices) def test_unfold_indices_raises_index_error(self): data = range(10) indices = [slice(2, 5), 99] with self.assertRaises(IndexError): unfold_indices(data, indices) class TestIsCC(unittest.TestCase): def test_is_CC(self): NC_file = is_CC(GENHEN_OFFLINE_FILE) CC_file = is_CC(GSEAGEN_OFFLINE_FILE) # self.assertFalse(all(NC_file) == True) # this test fails because the CC flags are not reliable in old files self.assertTrue(all(CC_file) == True)