-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtest_negative_ns.py
More file actions
70 lines (53 loc) · 2.02 KB
/
Copy pathtest_negative_ns.py
File metadata and controls
70 lines (53 loc) · 2.02 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
"""A standard time-integrated analysis is performed, using one year of
IceCube data (IC86_1).
"""
import logging
import unittest
import numpy as np
from flarestack.data.public import icecube_ps_3_year
from flarestack.utils.prepare_catalogue import ps_catalogue_name
from flarestack.core.unblinding import create_unblinder
# Initialise Injectors/LLHs
llh_dict = {
"llh_name": "standard_matrix",
"llh_sig_time_pdf": {"time_pdf_name": "steady"},
"llh_bkg_time_pdf": {
"time_pdf_name": "steady",
},
"llh_energy_pdf": {"energy_pdf_name": "power_law"},
"negative_ns_bool": True,
}
# Loop over sin(dec) values
sindecs = np.linspace(0.5, -0.5, 3)
# These results arise from high-statistics sensitivity calculations,
# and can be considered the "true" answers. The results we obtain will be
# compared to these values.
true_parameters = [
[0.0, 2.3746234433776863],
[-2.136619848284634, 2.0],
[3.118277154641447, 4.0],
]
class TestTimeIntegrated(unittest.TestCase):
def setUp(self):
pass
def test_declination_sensitivity(self):
logging.info("Testing 'standard' LLH class")
# Test three declinations
for j, sindec in enumerate(sindecs):
unblind_dict = {
"name": "tests/test_negative_ns/",
"mh_name": "fixed_weights",
"dataset": icecube_ps_3_year.get_seasons("IC86-2011"),
"catalogue": ps_catalogue_name(sindec),
"llh_dict": llh_dict,
}
ub = create_unblinder(unblind_dict)
key = [x for x in ub.res_dict.keys() if x != "TS"][0]
res = ub.res_dict[key]
logging.info("Best fit values {0}".format(list(res["x"])))
logging.info("Reference best fit {0}".format(true_parameters[j]))
for i, x in enumerate(res["x"]):
if not np.logical_and(res["x"][0] == 0.0, i > 0):
self.assertAlmostEqual(x, true_parameters[j][i], delta=0.1)
if __name__ == "__main__":
unittest.main()