We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4e1ea3 commit 3854fc3Copy full SHA for 3854fc3
hbw/config/config_run2.py
@@ -113,10 +113,16 @@ def add_config(
113
})
114
# https://twiki.cern.ch/twiki/bin/viewauth/CMS/PdmVRun3Analysis
115
elif year == 2022:
116
- cfg.x.luminosity = Number(26337, {
117
- "lumi_13TeV_2022": 0.01j,
118
- "lumi_13TeV_correlated": 0.006j,
119
- })
+ if campaign.x.EE == "pre":
+ cfg.x.luminosity = Number(7971, {
+ "lumi_13TeV_2022": 0.01j,
+ "lumi_13TeV_correlated": 0.006j,
120
+ })
121
+ elif campaign.x.EE == "post":
122
+ cfg.x.luminosity = Number(26337, {
123
124
125
126
else:
127
raise NotImplementedError(f"Luminosity for year {year} is not defined.")
128
0 commit comments