forked from cernopendata/data-curation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate_fixtures_cross_sections.py
executable file
·378 lines (333 loc) · 19 KB
/
update_fixtures_cross_sections.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
#!/usr/bin/env python3
"""Helper script for creating cross_section JSON field of simulated dataset record fixutres.
This helper script is useful for creating/updating the cross_sections JSON field in
the CMS 2015 simulated datasets found in the CERN Open Data record fixtures.
"""
import os, sys
import subprocess
import click
import json
@click.command()
@click.option(
"--cross_sections_path",
"-c",
required=True,
help="Relative path to the cross-section values json files directory",
)
@click.option(
"--input_path", "-i", required=True, help="Relative path to the input directory"
)
@click.option(
"--output_path", "-o", required=True, help="Relative path to the output directory"
)
def main(cross_sections_path, input_path, output_path): # noqa: D301,D412
"""Update datasets to include the cross_sections JSON field.
Update datasets found at input_path to include the cross_sections JSON field
and store the updated datasets at output_path.
Example:
\b
$ ./utils/update_fixtures_cross_sections.py \\
-c ../MC2015/StandardModelPhysics
-i ../opendata.cern.ch/cernopendata/modules/fixtures/data/records \\
-o ../opendata.cern.ch/cernopendata/modules/fixtures/data/records
"""
# rename cross-section values json files to their corresponding dataset names to make rest of code simpler
total_cross_section_files = 0
sub_categories = os.listdir(cross_sections_path)
# amend target records of all target datasets
if "MC2015/StandardModelPhysics" in cross_sections_path: # for 2015 SM only
for categ in sub_categories:
for json_file_name in os.listdir(f"{cross_sections_path}/{categ}"):
total_cross_section_files += 1
json_file = open(f"{cross_sections_path}/{categ}/{json_file_name}", "r")
json_file_content = json_file.read()
json_file.close()
json_record = json.loads(json_file_content)
dataset = json_record[0]["metadata"]["Dataset"]
new_file_name = f"{dataset.replace('/', '$')}.json"
if new_file_name[0] != "$":
new_file_name = "$" + new_file_name
os.rename(
f"{cross_sections_path}/{categ}/{json_file_name}",
f"{cross_sections_path}/{categ}/{new_file_name}",
)
# find paths to all datasets that need to be updated
find_datasets_cmd = (
f'find {input_path} -type f -name "cms-simulated-datasets-2015*.json"'
)
target_datasets_paths = subprocess.getoutput(find_datasets_cmd).split("\n")
total_datasets_amended = 0
total_format1 = 0
total_format2 = 0
total_format3 = 0
total_format4 = 0
total_format5 = 0
total_format6 = 0
# amend target records of all target datasets
for target_dataset_path in target_datasets_paths:
# read target records
target_dataset_basename = os.path.basename(target_dataset_path)[
: -len(".json")
]
target_dataset_file = open(target_dataset_path, "r")
target_dataset_content = target_dataset_file.read()
target_dataset_file.close()
target_records = json.loads(target_dataset_content)
print(f"Processing {target_dataset_basename}...")
# add cross_section metadata field
new_target_records = []
for record in target_records:
# find the record's corresponding cross-section values json file
cross_sections_file_name = record["title"].replace("/", "$")
find_cross_sections_cmd = f"find {cross_sections_path} -name '{cross_sections_file_name}.json'"
cross_sections_file = subprocess.getoutput(find_cross_sections_cmd)
if not cross_sections_file:
new_target_records.append(record)
continue
cross_sections_json_file = open(f"{cross_sections_file}", "r")
cross_sections_json_content = cross_sections_json_file.read()
cross_sections_json_file.close()
cross_sections_json_record = json.loads(cross_sections_json_content)
cross_sections_json_data = cross_sections_json_record[1]
if cross_sections_json_data["totX_final"] != "0.000e+00":
record["cross_section"] = {}
# check the presence of certain attributes to identify the format the file is in
# see: https://github.com/Ari-mu-l/OpenData/tree/main
# Format 1
if (
"totX_beforeMat" in cross_sections_json_data
and "matchingEff" in cross_sections_json_data
):
total_format1 += 1
record["cross_section"]["total_value"] = (
cross_sections_json_data["totX_final"]
)
record["cross_section"]["total_value_uncertainty"] = (
cross_sections_json_data["totX_final_err"]
)
record["cross_section"]["matching_efficiency"] = (
cross_sections_json_data["matchingEff"]
)
record["cross_section"]["filter_efficiency"] = (
cross_sections_json_data["filterEff_weights"]
)
record["cross_section"]["neg_weight_fraction"] = (
cross_sections_json_data["negWeightFrac"]
)
# Format 2
elif "totX_beforeMat" in cross_sections_json_data:
total_format2 += 1
record["cross_section"]["total_value"] = (
cross_sections_json_data["totX_final"]
)
record["cross_section"]["total_value_uncertainty"] = (
cross_sections_json_data["totX_final_err"]
)
record["cross_section"]["matching_efficiency"] = ""
record["cross_section"]["filter_efficiency"] = (
cross_sections_json_data["filterEff_weights"]
)
record["cross_section"]["neg_weight_fraction"] = ""
# Format 3
elif (
"totX_beforeFilter" in cross_sections_json_data
and "negWeightFrac" in cross_sections_json_data
):
total_format3 += 1
record["cross_section"]["total_value"] = (
cross_sections_json_data["totX_final"]
)
record["cross_section"]["total_value_uncertainty"] = (
cross_sections_json_data["totX_final_err"]
)
record["cross_section"]["matching_efficiency"] = ""
record["cross_section"]["filter_efficiency"] = (
cross_sections_json_data["filterEff_weights"]
)
record["cross_section"]["neg_weight_fraction"] = (
cross_sections_json_data["negWeightFrac"]
)
# Format 6 (unlisted format, but it is there in some json files)
elif "filterEff(weights)" in cross_sections_json_data:
total_format6 += 1
record["cross_section"]["total_value"] = (
cross_sections_json_data["totX_final"]
)
record["cross_section"]["total_value_uncertainty"] = (
cross_sections_json_data["totX_final_err"]
)
record["cross_section"]["matching_efficiency"] = ""
record["cross_section"]["filter_efficiency"] = (
cross_sections_json_data["filterEff(weights)"]
)
record["cross_section"]["neg_weight_fraction"] = ""
# Format 4
elif "totX_beforeFilter" in cross_sections_json_data:
total_format4 += 1
record["cross_section"]["total_value"] = (
cross_sections_json_data["totX_final"]
)
record["cross_section"]["total_value_uncertainty"] = (
cross_sections_json_data["totX_final_err"]
)
record["cross_section"]["matching_efficiency"] = ""
record["cross_section"]["filter_efficiency"] = (
cross_sections_json_data["filterEff_weights"]
)
record["cross_section"]["neg_weight_fraction"] = ""
# Format 5
else:
total_format5 += 1
record["cross_section"]["total_value"] = (
cross_sections_json_data["totX_final"]
)
record["cross_section"]["total_value_uncertainty"] = (
cross_sections_json_data["totX_final_err"]
)
record["cross_section"]["matching_efficiency"] = ""
record["cross_section"]["filter_efficiency"] = (
cross_sections_json_data["filterEff_weights"]
)
record["cross_section"]["neg_weight_fraction"] = ""
total_datasets_amended += 1
new_target_records.append(record)
# save the amended dataset
new_dataset_json = json.dumps(
new_target_records,
indent=2,
sort_keys=True,
ensure_ascii=False,
separators=(",", ": "),
)
updated_dataset_path = f"{output_path}/{target_dataset_basename}.json"
new_dataset_file = open(updated_dataset_path, "w")
new_dataset_file.write(new_dataset_json + "\n")
new_dataset_file.close()
# clean resulting JSON file
if os.path.exists("../opendata.cern.ch/scripts/clean_json_file.py"):
os.system(
f"../opendata.cern.ch/scripts/clean_json_file.py {updated_dataset_path}"
)
print(
f"Total number of cross-section values json files: {total_cross_section_files}, Total number of amended datasets: {total_datasets_amended}"
)
print(f"Total number of datasets amended using Format 1: {total_format1}")
print(f"Total number of datasets amended using Format 2: {total_format2}")
print(f"Total number of datasets amended using Format 3: {total_format3}")
print(f"Total number of datasets amended using Format 4: {total_format4}")
print(f"Total number of datasets amended using Format 5: {total_format5}")
print(f"Total number of datasets amended using Format 6: {total_format6}")
else: # For 2015 Higgs and all 2016
for categ in sub_categories:
for json_file_name in os.listdir(f"{cross_sections_path}/{categ}"):
total_cross_section_files += 1
json_file = open(f"{cross_sections_path}/{categ}/{json_file_name}", "r")
json_file_content = json_file.read()
json_file.close()
json_record = json.loads(json_file_content)
dataset = json_record[1]["Dataset"]
new_file_name = f"{dataset.replace('/', '$')}.json"
if new_file_name[0] != "$":
new_file_name = "$" + new_file_name
os.rename(
f"{cross_sections_path}/{categ}/{json_file_name}",
f"{cross_sections_path}/{categ}/{new_file_name}",
)
# find paths to all datasets that need to be updated
find_datasets_cmd = f'find {input_path} -type f -name "cms-simulated-datasets-2015*.json"' # TODO: change to 2016 if updating 2016
if ("2015" in find_datasets_cmd) and ("2016" in cross_sections_path):
sys.exit(
"Error: Using 2016 xsec to update 2015 json files. Update cms-simulated-datasets-2015*.json to cms-simulated-datasets-2016*.json in L265."
)
target_datasets_paths = subprocess.getoutput(find_datasets_cmd).split("\n")
total_datasets_amended = 0
for target_dataset_path in target_datasets_paths:
# read target records
target_dataset_basename = os.path.basename(target_dataset_path)[
: -len(".json")
]
target_dataset_file = open(target_dataset_path, "r")
target_dataset_content = target_dataset_file.read()
target_dataset_file.close()
target_records = json.loads(target_dataset_content)
print(f"Processing {target_dataset_basename}...")
# add cross_section metadata field
new_target_records = []
for record in target_records:
# find the record's corresponding cross-section values json file
cross_sections_file_name = record["title"].replace("/", "$")
find_cross_sections_cmd = f"find {cross_sections_path} -name '{cross_sections_file_name}.json'"
cross_sections_file = subprocess.getoutput(find_cross_sections_cmd)
if not cross_sections_file:
new_target_records.append(record)
continue
cross_sections_json_file = open(f"{cross_sections_file}", "r")
cross_sections_json_content = cross_sections_json_file.read()
cross_sections_json_file.close()
cross_sections_json_record = json.loads(cross_sections_json_content)
cross_sections_json_data = cross_sections_json_record[1]
if cross_sections_json_data["total_value"] != "0.000e+00":
record["cross_section"] = {}
# The following lists alll the columns availalbe in the xsec json files
# UNCOMMENT AND ADD CONDITION IF NEEDED
if cross_sections_json_data["total_value"] != "-9":
record["cross_section"]["total_value"] = (
cross_sections_json_data["total_value"]
)
if cross_sections_json_data["total_value_uncertainty"] != "-9":
record["cross_section"]["total_value_uncertainty"] = (
cross_sections_json_data["total_value_uncertainty"]
)
if cross_sections_json_data["matching_efficiency"] != "-9":
record["cross_section"]["matching_efficiency"] = (
cross_sections_json_data["matching_efficiency"]
)
if cross_sections_json_data["filter_efficiency"] != "-9":
record["cross_section"]["filter_efficiency"] = (
cross_sections_json_data["filter_efficiency"]
)
if cross_sections_json_data["neg_weight_fraction"] != "-9":
record["cross_section"]["neg_weight_fraction"] = (
cross_sections_json_data["neg_weight_fraction"]
)
# if cross_sections_json_data["xsec_before_matching"]!="-9": record["cross_section"]["xsec_before_matching"] = cross_sections_json_data["xsec_before_matching"]
# record["cross_section"]["xsec_before_matching_uncertainty"] = cross_sections_json_data["xsec_before_matching_uncertainty"]
# record["cross_section"]["xsec_after_matching"] = cross_sections_json_data[""]
# record["cross_section"]["xsec_after_matching_uncertainty"] = cross_sections_json_data[""]
# record["cross_section"]["xsec_before_filter"] = cross_sections_json_data[""]
# record["cross_section"]["xsec_before_filter_uncertainty"] = cross_sections_json_data[""]
# record["cross_section"]["matching_efficiency_uncertainty"] = cross_sections_json_data["matching_efficiency_uncertainty"]
# record["cross_section"]["HepMC_filter_efficiency"] = cross_sections_json_data["HepMC_filter_efficiency"]
# record["cross_section"]["HepMC_filter_efficiency_uncertainty"] = cross_sections_json_data["HepMC_filter_efficiency_uncertainty"]
# record["cross_section"]["HepMC_filter_efficiency_evt"] = cross_sections_json_data["HepMC_filter_efficiency_evt"]
# record["cross_section"]["HepMC_filter_efficiency_evt_uncertainty"] = cross_sections_json_data["HepMC_filter_efficiency_evt_uncertainty"]
# record["cross_section"]["filter_efficiency_uncertainty"] = cross_sections_json_data["filter_efficiency_uncertainty"]
# record["cross_section"]["filter_efficiency_evt"] = cross_sections_json_data["filter_efficiency_evt"]
# record["cross_section"]["filter_efficiency_evt_uncertainty"] = cross_sections_json_data["filter_efficiency_evt_uncertainty"]
# record["cross_section"]["neg_weight_fraction_uncertainty"] = cross_sections_json_data["neg_weight_fraction_uncertainty"]
# record["cross_section"]["equivalent_lumi"] = cross_sections_json_data["equivalent_lumi"]
# record["cross_section"]["equivalent_lumi_uncertainty"] = cross_sections_json_data["equivalent_lumi_uncertainty"]
total_datasets_amended += 1
new_target_records.append(record)
# save the amended dataset
new_dataset_json = json.dumps(
new_target_records,
indent=2,
sort_keys=True,
ensure_ascii=False,
separators=(",", ": "),
)
updated_dataset_path = f"{output_path}/{target_dataset_basename}.json"
new_dataset_file = open(updated_dataset_path, "w")
new_dataset_file.write(new_dataset_json + "\n")
new_dataset_file.close()
# clean resulting JSON file
if os.path.exists("../opendata.cern.ch/scripts/clean_json_file.py"):
os.system(
f"../opendata.cern.ch/scripts/clean_json_file.py {updated_dataset_path}"
)
print(
f"Total number of cross-section values json files: {total_cross_section_files}, Total number of amended datasets: {total_datasets_amended}"
)
if __name__ == "__main__":
main()