From bcc0cc720a6e28eeb5b48c2d4ad16924751e75ff Mon Sep 17 00:00:00 2001 From: shivesh Date: Sat, 28 Apr 2018 20:45:22 -0500 Subject: Sat Apr 28 20:45:22 CDT 2018 --- plot_sens.py | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100755 plot_sens.py (limited to 'plot_sens.py') diff --git a/plot_sens.py b/plot_sens.py new file mode 100755 index 0000000..e51d55d --- /dev/null +++ b/plot_sens.py @@ -0,0 +1,30 @@ +#! /usr/bin/env python +# author : S. Mandalia +# s.p.mandalia@qmul.ac.uk +# +# date : April 28, 2018 + +""" +HESE BSM flavour ratio analysis plotting script +""" + +from __future__ import absolute_import, division + +import numpy as np +import matplotlib as mpl +mpl.use('Agg') +from matplotlib import rc +from matplotlib import pyplot as plt +from matplotlib.offsetbox import AnchoredText + +rc('text', usetex=False) +rc('font', **{'family':'serif', 'serif':['Computer Modern'], 'size':18}) + +FRS = [ + (1, 1, 1, 1, 2, 0), + (1, 1, 1, 0, 1, 0), + # (1, 1, 1, 1, 0, 0), + # (1, 1, 1, 0, 0, 1), +] + +DIMENSION = [3, 6] -- cgit v1.2.3