diff options
| author | shivesh <s.p.mandalia@qmul.ac.uk> | 2018-09-06 16:24:21 -0500 |
|---|---|---|
| committer | shivesh <s.p.mandalia@qmul.ac.uk> | 2018-09-06 16:24:21 -0500 |
| commit | 84c05583ad3d582d107fe09be700311ea466b1af (patch) | |
| tree | efcab9f139e016b7a1fc7c5a7c0b5f69b88fb5e9 /submitter | |
| parent | 73cffc2bd330761d796cb30726cf83d3f336d5a9 (diff) | |
| parent | d194af1fcbafa61b14888a661b8325840605a8fd (diff) | |
| download | GolemFlavor-84c05583ad3d582d107fe09be700311ea466b1af.tar.gz GolemFlavor-84c05583ad3d582d107fe09be700311ea466b1af.zip | |
Merge branch 'master' of github.com:ShiveshM/flavour_ratio
Diffstat (limited to 'submitter')
| -rw-r--r-- | submitter/sens_dag.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/submitter/sens_dag.py b/submitter/sens_dag.py index d77b409..b3dcda8 100644 --- a/submitter/sens_dag.py +++ b/submitter/sens_dag.py @@ -30,7 +30,7 @@ GLOBAL_PARAMS.update(dict( run_method = 'fixed_angle', # full, fixed_angle, corr_angle stat_method = 'bayesian', sens_bins = 20, - seed = 'None' + seed = None )) # MultiNest @@ -41,9 +41,9 @@ GLOBAL_PARAMS.update(dict( )) # FR -# dimension = [3] -dimension = [3, 6] -# dimension = [4, 5, 7, 8] +dimension = [3] +# dimension = [3, 6] +# dimension = [3, 4, 5, 6, 7, 8] GLOBAL_PARAMS.update(dict( threads = 1, binning = '6e4 1e7 20', @@ -77,7 +77,7 @@ outfile = 'dagman_FR_SENS_{0}_{1}_{2}_{3}'.format( GLOBAL_PARAMS['stat_method'], GLOBAL_PARAMS['run_method'], GLOBAL_PARAMS['likelihood'], GLOBAL_PARAMS['data'] ) -# outfile += '_100TeV' +outfile += '_seed2' outfile += '.submit' golemfitsourcepath = os.environ['GOLEMSOURCEPATH'] + '/GolemFit' condor_script = golemfitsourcepath + '/scripts/flavour_ratio/submitter/sens_submit.sub' @@ -101,7 +101,7 @@ with open(outfile, 'w') as f: output = outchain_head + '/fix_ifr/' if GLOBAL_PARAMS['likelihood'].lower() == 'gaussian': output += '{0}/'.format(str(GLOBAL_PARAMS['sigma_ratio']).replace('.', '_')) - # output += '100TeV/' + output += 'seed2/' for r in xrange(sens_runs): print 'run', r f.write('JOB\tjob{0}\t{1}\n'.format(job_number, condor_script)) |
