diff options
| author | shivesh <s.p.mandalia@qmul.ac.uk> | 2019-04-17 09:28:31 -0500 |
|---|---|---|
| committer | shivesh <s.p.mandalia@qmul.ac.uk> | 2019-04-17 09:28:31 -0500 |
| commit | 8b9bed6c80bde554028c4a7c07d2078177bcffb9 (patch) | |
| tree | 05d6f9d1f4bfed8758054497dee14b0e74471f02 /submitter | |
| parent | d84021c3f136d657e708a31b816f6d6409a9c241 (diff) | |
| download | GolemFlavor-8b9bed6c80bde554028c4a7c07d2078177bcffb9.tar.gz GolemFlavor-8b9bed6c80bde554028c4a7c07d2078177bcffb9.zip | |
Wed 17 Apr 09:28:30 CDT 2019
Diffstat (limited to 'submitter')
| -rw-r--r-- | submitter/sens_dag.py | 24 | ||||
| -rw-r--r-- | submitter/sens_submit.sub | 5 |
2 files changed, 16 insertions, 13 deletions
diff --git a/submitter/sens_dag.py b/submitter/sens_dag.py index a4ec65c..601985d 100644 --- a/submitter/sens_dag.py +++ b/submitter/sens_dag.py @@ -9,26 +9,27 @@ import numpy as np # (0, 1, 0), # ] -MASK_X = (0.3, 0.8) -x_segments = 50 +XLIMS = (0., 0.3) +x_segments = 100 x_array = np.linspace(0, 1, x_segments) sources = [] for x in x_array: - if x > MASK_X[0] and x < MASK_X[1]: continue - sources.append([x, 1-x, 0]) + if x >= XLIMS[0] and x <= XLIMS[1]: + sources.append([x, 1-x, 0]) dims = [ 6 ] textures = [ - 'OEU', 'OET', 'OUT' + # 'OEU', 'OET', 'OUT' + 'OET' ] datadir = '/data/user/smandalia/flavour_ratio/data/sensitivity' -prefix = '' -# prefix = '_noprior' +# prefix = '' +prefix = '_OET' golemfitsourcepath = os.environ['GOLEMSOURCEPATH'] + '/GolemFit' condor_script = golemfitsourcepath + '/scripts/flavour_ratio/submitter/sens_submit.sub' @@ -44,17 +45,18 @@ GLOBAL_PARAMS.update(dict( # MultiNest GLOBAL_PARAMS.update(dict( - mn_live_points = 1000, + # mn_live_points = 1000, # mn_live_points = 600, - # mn_live_points = 200, + mn_live_points = 200, # mn_tolerance = 0.1, mn_tolerance = 0.3, - mn_output = './mnrun' + mn_output = './mnrun', + run_mn = 'True' )) # FR GLOBAL_PARAMS.update(dict( - threads = 2, + threads = 1, binning = '6e4 1e7 20', no_bsm = 'False' )) diff --git a/submitter/sens_submit.sub b/submitter/sens_submit.sub index 7d21c96..315ef39 100644 --- a/submitter/sens_submit.sub +++ b/submitter/sens_submit.sub @@ -1,5 +1,5 @@ Executable = /data/user/smandalia/GolemTools/sources/GolemFit/scripts/flavour_ratio/sens.py -Arguments = "--ast $(ast) --data $(data) --dimension $(dimension) --no-bsm $(no_bsm) --datadir $(datadir) --seed $(seed) --source-ratio $(sr0) $(sr1) $(sr2) --threads $(threads) --binning $(binning) --texture $(texture) --segments $(segments) --eval-segment $(eval_segment) --stat-method $(stat_method) --mn-live-points $(mn_live_points) --mn-tolerance $(mn_tolerance) --mn-output $(mn_output)" +Arguments = "--ast $(ast) --data $(data) --dimension $(dimension) --no-bsm $(no_bsm) --datadir $(datadir) --seed $(seed) --source-ratio $(sr0) $(sr1) $(sr2) --threads $(threads) --binning $(binning) --texture $(texture) --segments $(segments) --eval-segment $(eval_segment) --stat-method $(stat_method) --mn-live-points $(mn_live_points) --mn-tolerance $(mn_tolerance) --mn-output $(mn_output) --run-mn $(run_mn)" # All logs will go to a single file log = /scratch/smandalia/flavour_ratio/submitter/logs/job_$(Cluster).log @@ -10,13 +10,14 @@ getenv = True # environment = "X509_USER_PROXY=x509up_u14830" request_memory = 3GB -request_cpus = 2 +request_cpus = 1 initialdir = /home/smandalia/condor Universe = vanilla Notification = never +# +AccountingGroup="quicktest.$ENV(USER)" # +AccountingGroup="sanctioned.$ENV(USER)" # run on both SL5 and 6 # +WantRHEL6 = True |
