aboutsummaryrefslogtreecommitdiffstats
path: root/submitter
diff options
context:
space:
mode:
Diffstat (limited to 'submitter')
-rw-r--r--submitter/sens_dag.py24
-rw-r--r--submitter/sens_submit.sub5
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