aboutsummaryrefslogtreecommitdiffstats
path: root/sens.py
diff options
context:
space:
mode:
authorshivesh <s.p.mandalia@qmul.ac.uk>2018-05-08 15:48:27 -0500
committershivesh <s.p.mandalia@qmul.ac.uk>2018-05-08 15:48:27 -0500
commitf121d8f51bd77d8174a1695bde9e50fd570ce23d (patch)
treefbecd3cb9eb5fe6f9cc60dce03ffcf7eb2310ec2 /sens.py
parent1db253ea053fc8f0f9d3663fc5c774d47c91a137 (diff)
downloadGolemFlavor-f121d8f51bd77d8174a1695bde9e50fd570ce23d.tar.gz
GolemFlavor-f121d8f51bd77d8174a1695bde9e50fd570ce23d.zip
fix bug which was not setting th13 = 0 in the fixed angled runs
Diffstat (limited to 'sens.py')
-rwxr-xr-xsens.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/sens.py b/sens.py
index 1b04275..6145f4a 100755
--- a/sens.py
+++ b/sens.py
@@ -237,6 +237,8 @@ def main():
if idx_scen == 0 or idx_scen == 2:
mmangles[idx_scen].value = np.sin(np.pi/4., dtype=DTYPE)**2
"""s_12^2 or s_23^2"""
+ mmangles[1].value = 1.
+ """c_13^4"""
elif idx_scen == 1:
mmangles[idx_scen].value = np.cos(np.pi/4., dtype=DTYPE)**4
"""c_13^4"""
@@ -248,6 +250,8 @@ def main():
if idx_scen == 0 or idx_scen == 2:
mmangles[idx_scen].value = np.sin(angle)**2
"""s_12^2 or s_23^2"""
+ mmangles[1].value = 1.
+ """c_13^4"""
elif idx_scen == 1:
mmangles[idx_scen].value = np.cos(angle)**4
"""c_13^4"""