-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhiggs.py
106 lines (89 loc) · 2.81 KB
/
higgs.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# coding: utf-8
"""Single Higgs datasets from the 2016 data-taking campaign with datasets at NanoAOD tier in
version 12, created with custom content at UHH."""
import cmsdb.processes as procs # noqa
from cmsdb.campaigns.run2_2016_HIPM_nano_uhh_v12 import campaign_run2_2016_HIPM_nano_uhh_v12 as cpn # noqa
# ggf
# cpn.add_dataset(
# name="h_ggf_htt_powheg",
# id=14314017,
# processes=[procs.h_ggf_htt],
# keys=[
# "/GluGluHToTauTau_M125_TuneCP5_13TeV-powheg-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa
# ],
# n_files=4,
# n_events=6430000,
# )
# vbf
# cpn.add_dataset(
# name="h_vbf_htt_powheg",
# id=14346935,
# processes=[procs.h_vbf_htt],
# keys=[
# "/VBFHToTauTau_M125_TuneCP5_13TeV-powheg-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa
# ],
# n_files=2,
# n_events=1395000,
# )
# H radiation
# cpn.add_dataset(
# name="zh_htt_powheg",
# id=14284521,
# processes=[procs.zh_htt],
# keys=[
# "/ZHToTauTau_M125_CP5_13TeV-powheg-pythia8_ext1/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa
# ],
# n_files=2,
# n_events=2481740,
# )
# cpn.add_dataset(
# name="wph_htt_powheg",
# id=14337370,
# processes=[procs.wph_htt],
# keys=[
# "/WplusHToTauTau_M125_TuneCP5_13TeV-powheg-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa
# ],
# n_files=2,
# n_events=1915820,
# )
# cpn.add_dataset(
# name="wmh_htt_powheg",
# id=14335155,
# processes=[procs.wmh_htt],
# keys=[
# "/WminusHToTauTau_M125_TuneCP5_13TeV-powheg-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa
# ],
# n_files=2,
# n_events=1976651,
# )
# ttH
# cpn.add_dataset(
# name="tth_htt_powheg",
# id=14340599,
# processes=[procs.tth_htt],
# keys=[
# "/ttHToTauTau_M125_TuneCP5_13TeV-powheg-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa
# ],
# n_files=15,
# n_events=10865700,
# )
# cpn.add_dataset(
# name="tth_hnonbb_powheg",
# id=14278195,
# processes=[procs.tth_hnonbb],
# keys=[
# "/ttHToNonbb_M125_TuneCP5_13TeV-powheg-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa
# ],
# n_files=3,
# n_events=1977996,
# )
# cpn.add_dataset(
# name="tth_hbb_powheg",
# id=14284890,
# processes=[procs.tth_hbb],
# keys=[
# "/ttHTobb_M125_TuneCP5_13TeV-powheg-pythia8/RunIISummer20UL16MiniAODAPVv2-106X_mcRun2_asymptotic_preVFP_v11-v2/NANOAODSIM", # noqa
# ],
# n_files=6,
# n_events=4622000,
# )