diff options
| author | shivesh <s.p.mandalia@qmul.ac.uk> | 2018-05-06 21:22:47 -0500 |
|---|---|---|
| committer | shivesh <s.p.mandalia@qmul.ac.uk> | 2018-05-06 21:22:47 -0500 |
| commit | 932a8691e16eb904e3eec61daae08d72c2039f10 (patch) | |
| tree | f82f6fab18bbffbcd8b12f071f597e5cec2302b4 /submitter/mcmc_dag.py | |
| parent | a1ab1014c7b2d6be8beffa99b47a57b74b90b876 (diff) | |
| download | GolemFlavor-932a8691e16eb904e3eec61daae08d72c2039f10.tar.gz GolemFlavor-932a8691e16eb904e3eec61daae08d72c2039f10.zip | |
Sun May 6 21:22:46 CDT 2018
Diffstat (limited to 'submitter/mcmc_dag.py')
| -rw-r--r-- | submitter/mcmc_dag.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/submitter/mcmc_dag.py b/submitter/mcmc_dag.py index 7f6eae6..d06e920 100644 --- a/submitter/mcmc_dag.py +++ b/submitter/mcmc_dag.py @@ -35,6 +35,7 @@ GLOBAL_PARAMS.update(dict( # FR dimension = [3, 6] +# dimension = [4, 5, 7, 8] GLOBAL_PARAMS.update(dict( threads = 1, binning = '1e4 1e7 5', @@ -44,7 +45,7 @@ GLOBAL_PARAMS.update(dict( spectral_index = -2, fix_mixing = 'False', fix_mixing_almost = 'False', - fold_index = 'False' + fold_index = 'True' )) # Likelihood @@ -65,7 +66,7 @@ GLOBAL_PARAMS.update(dict( plot_elements = 'False', )) -outfile = 'dagman_FR_MCMC.submit' +outfile = 'dagman_FR_MCMC_{0}.submit'.format(GLOBAL_PARAMS['likelihood']) golemfitsourcepath = os.environ['GOLEMSOURCEPATH'] + '/GolemFit' condor_script = golemfitsourcepath + '/scripts/flavour_ratio/submitter/mcmc_submit.sub' @@ -115,3 +116,5 @@ with open(outfile, 'w') as f: f.write('VARS\tjob{0}\t{1}="{2}"\n'.format(job_number, key, GLOBAL_PARAMS[key])) f.write('VARS\tjob{0}\toutfile="{1}"\n'.format(job_number, outchains)) job_number += 1 + + print 'dag file = {0}'.format(outfile) |
