aboutsummaryrefslogtreecommitdiffstats
path: root/plot_sens.py
diff options
context:
space:
mode:
authorshivesh <s.p.mandalia@qmul.ac.uk>2018-09-06 16:24:21 -0500
committershivesh <s.p.mandalia@qmul.ac.uk>2018-09-06 16:24:21 -0500
commit84c05583ad3d582d107fe09be700311ea466b1af (patch)
treeefcab9f139e016b7a1fc7c5a7c0b5f69b88fb5e9 /plot_sens.py
parent73cffc2bd330761d796cb30726cf83d3f336d5a9 (diff)
parentd194af1fcbafa61b14888a661b8325840605a8fd (diff)
downloadGolemFlavor-84c05583ad3d582d107fe09be700311ea466b1af.tar.gz
GolemFlavor-84c05583ad3d582d107fe09be700311ea466b1af.zip
Merge branch 'master' of github.com:ShiveshM/flavour_ratio
Diffstat (limited to 'plot_sens.py')
-rwxr-xr-xplot_sens.py12
1 files changed, 7 insertions, 5 deletions
diff --git a/plot_sens.py b/plot_sens.py
index b685175..a297e17 100755
--- a/plot_sens.py
+++ b/plot_sens.py
@@ -231,7 +231,8 @@ def main():
infile += '/gaussian/'
if args.likelihood is Likelihood.GAUSSIAN:
infile += '{0}/'.format(str(args.sigma_ratio).replace('.', '_'))
- infile += '/DIM{0}/fix_ifr/{1}/{2}/{3}/fr_stat'.format(
+ # infile += '/DIM{0}/fix_ifr/{1}/{2}/{3}/fr_stat'.format(
+ infile += '/DIM{0}/fix_ifr/seed2/{1}/{2}/{3}/fr_stat'.format(
# infile += '/DIM{0}/fix_ifr/100TeV/{1}/{2}/{3}/fr_stat'.format(
dim, *map(misc_utils.parse_enum, [args.stat_method, args.run_method, args.data])
) + misc_utils.gen_identifier(argsc)
@@ -278,7 +279,8 @@ def main():
base_infile += '/gaussian/'
if args.likelihood is Likelihood.GAUSSIAN:
base_infile += '{0}/'.format(str(args.sigma_ratio).replace('.', '_'))
- base_infile += '/DIM{0}/fix_ifr'.format(dim)
+ # base_infile += '/DIM{0}/fix_ifr'.format(dim)
+ base_infile += '/DIM{0}/fix_ifr/seed2'.format(dim)
# base_infile += '/DIM{0}/fix_ifr/100TeV'.format(dim)
for isrc, src in enumerate(args.source_ratios):
@@ -345,14 +347,14 @@ def main():
plot_utils.plot_sens_full(
data = data,
outfile = baseoutfile + '/FULL',
- outformat = ['png'],
+ outformat = ['png', 'pdf'],
args = args,
)
elif args.run_method in fixed_angle_categ:
plot_utils.plot_sens_fixed_angle_pretty(
data = data,
outfile = baseoutfile + '/fixed_angle_pretty',
- outformat = ['png'],
+ outformat = ['png', 'pdf'],
args = args,
)
# plot_utils.plot_sens_fixed_angle(
@@ -365,7 +367,7 @@ def main():
plot_utils.plot_sens_corr_angle(
data = data,
outfile = baseoutfile + '/CORR_ANGLE',
- outformat = ['png'],
+ outformat = ['png', 'pdf'],
args = args,
)