forked from cms-rwth/VHcc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcfg_genZjets.py
44 lines (41 loc) · 1.21 KB
/
cfg_genZjets.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Local Variables:
# python-indent-offset: 4
# End:
from VHcc.workflows.genZjets import (
NanoProcessor as zjets,
)
cfg = {
"dataset": {
"jsons": ["src/VHcc/metadata/genZjets.json"],
"campaign": "UL17",
"year": "2017",
"filter": {
"samples": [
"DYJetsToLL_M-50_TuneCP5_13TeV-madgraphMLM-pythia8",
"DYJetsToLL_M-50_TuneCP5_13TeV-amcatnloFXFX-pythia8",
"DYJetsToMuMu_M-50_massWgtFix_TuneCP5_13TeV-powhegMiNNLO-pythia8-photos",
"DYJetsToEE_M-50_massWgtFix_TuneCP5_13TeV-powhegMiNNLO-pythia8-photos",
"DYJetsToMuMu_BornSuppressV3_TuneCP5_13TeV-powhegMiNNLO-pythia8-photos",
],
"samples_exclude": [],
},
},
# Input and output files
"workflow": zjets,
"output": "output_zjets",
"run_options": {
"executor": "parsl/condor",
#"executor": "futures",
"workers": 1,
"scaleout": 10,
"walltime": "03:00:00",
"mem_per_worker": 2, # GB
"chunk": 500000,
"max": None,
"skipbadfiles": None,
"voms": None,
"limit": 3,
"retries": 20,
"splitjobs": False,
},
}