Skip to content
Snippets Groups Projects
Commit 889afba4 authored by moritz's avatar moritz
Browse files

Moritz Huebner: Some slight reformatting and name refactoring

parent b2f516b0
No related branches found
No related tags found
1 merge request!13Source reimplementation
Pipeline #
...@@ -32,8 +32,8 @@ class Result(dict): ...@@ -32,8 +32,8 @@ class Result(dict):
if os.path.isfile(file_name): if os.path.isfile(file_name):
logging.info( logging.info(
'Renaming existing file {} to {}.old' 'Renaming existing file {} to {}.old'
.format(file_name, file_name)) .format(file_name, file_name))
os.rename(file_name, file_name+'.old') os.rename(file_name, file_name + '.old')
logging.info("Saving result to {}".format(file_name)) logging.info("Saving result to {}".format(file_name))
with open(file_name, 'w+') as f: with open(file_name, 'w+') as f:
...@@ -88,8 +88,6 @@ class Sampler: ...@@ -88,8 +88,6 @@ class Sampler:
self.log_summary_for_sampler() self.log_summary_for_sampler()
# print(self.fixed_parameters)
# print(self.search_parameter_keys)
if os.path.isdir(outdir) is False: if os.path.isdir(outdir) is False:
os.makedirs(outdir) os.makedirs(outdir)
...@@ -231,9 +229,9 @@ class Pymultinest(Sampler): ...@@ -231,9 +229,9 @@ class Pymultinest(Sampler):
def run_sampler(likelihood, prior, label='label', outdir='outdir', def run_sampler(likelihood, prior, label='label', outdir='outdir',
sampler='nestle', **sampler_kwargs): sampler='nestle', **sampler_kwargs):
if hasattr(peyote.sampler, sampler.title()): if hasattr(peyote.sampler, sampler.title()):
SamplerClass = getattr(peyote.sampler, sampler.title()) sampler_class = getattr(peyote.sampler, sampler.title())
sampler = SamplerClass(likelihood, prior, sampler, outdir=outdir, sampler = sampler_class(likelihood, prior, sampler, outdir=outdir,
label=label, **sampler_kwargs) label=label, **sampler_kwargs)
result = sampler.run_sampler() result = sampler.run_sampler()
result.save_to_file(outdir=outdir, label=label) result.save_to_file(outdir=outdir, label=label)
return result return result
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment