forked from AliceO2Group/Run3AnalysisValidation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
workflows.yml
528 lines (403 loc) · 16.4 KB
/
workflows.yml
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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
---
options:
global: "" # used once at the end of the command
local: # used for every workflow
- "-b"
- "--configuration json://$JSON"
- "--aod-memory-rate-limit 2000000000"
- "--shm-segment-size 16000000000"
- "--resources-monitoring 2"
- "--min-failure-level error"
workflows:
# dummy workflow with the full list of options
o2-analysis-workflow:
executable: o2-analysis-workflow # workflow command, if different from the dictionary node name above
dependencies: [] # dictionary nodes that this workflow needs as direct dependencies (format: str, list)
requires_mc: no # yes/no whether the workflow can only run on MC or not
options: "--option" # command line options (format: str, list), see more detailed format below
# options:
# default: ""
# real: ""
# mc: "--doMC"
tables: [] # descriptions of tables to be saved in the output tree (format: str, list), see more detailed format below
# tables:
# default: []
# real: []
# mc: []
# Skimming
o2-analysis-hf-track-index-skim-creator: &skim_creator
executable: o2-analysis-hf-track-index-skim-creator
dependencies:
- o2-analysis-track-dca_runX
- o2-analysis-trackselection_runX
- o2-analysis-track-to-collision-associator
tables: [HF2PRONG/1, HF3PRONG/1, HFCASCADE/1, HFCASCLF2PRONG, HFCASCLF3PRONG, HFCUTSTATUS2P, HFCUTSTATUS3P, HFPVREFIT2PRONG, HFPVREFIT3PRONG, HFPVREFITTRACK, HFSELCOLLISION, HFSELTRACK]
o2-analysis-hf-track-index-skim-creator_v0:
<<: *skim_creator
dependencies:
- o2-analysis-track-dca_runX
- o2-analysis-trackselection_runX
- o2-analysis-track-to-collision-associator
- o2-analysis-lf-lambdakzerobuilder
# Candidate creators
o2-analysis-hf-candidate-creator-2prong: &cand_creator_2p
executable: o2-analysis-hf-candidate-creator-2prong
dependencies: o2-analysis-hf-track-index-skim-creator_skimX
tables:
default: [HFCAND2PBASE, HFCAND2PEXT]
mc: [HFCAND2PMCREC, HFCAND2PMCGEN]
o2-analysis-hf-candidate-creator-2prong_derived:
<<: *cand_creator_2p
dependencies: o2-analysis-track-dca_runX
o2-analysis-hf-candidate-creator-3prong: &cand_creator_3p
executable: o2-analysis-hf-candidate-creator-3prong
dependencies: o2-analysis-hf-track-index-skim-creator_skimX
tables:
default: [HFCAND3PBASE, HFCAND3PEXT]
mc: [HFCAND3PMCREC, HFCAND3PMCGEN]
o2-analysis-hf-candidate-creator-3prong_derived:
<<: *cand_creator_3p
dependencies: o2-analysis-track-dca_runX
o2-analysis-hf-candidate-creator-dstar: {}
o2-analysis-hf-candidate-creator-cascade:
dependencies: o2-analysis-hf-track-index-skim-creator_skimX
tables:
default: [HFCANDCASCBASE, HFCANDCASCEXT]
mc: [HFCANDCASCMCREC, HFCANDCASCMCGEN]
o2-analysis-hf-candidate-creator-x:
dependencies: o2-analysis-hf-candidate-selector-jpsi_runX
tables:
default: [HFCANDXBASE, HFCANDXEXT]
mc: [HFCANDXMCREC, HFCANDXMCGEN]
o2-analysis-hf-candidate-creator-xicc:
dependencies: o2-analysis-hf-candidate-selector-xic-to-p-k-pi
requires_mc: yes
options:
mc: "--doMC"
tables:
default: [HFCANDXICCBASE, HFCANDXICCEXT]
mc: [HFCANDXICCMCREC, HFCANDXICCMCGEN]
o2-analysis-hf-candidate-creator-chic:
dependencies: o2-analysis-hf-candidate-selector-jpsi_runX
tables:
default: [HFCANDCHICBASE, HFCANDCHICEXT]
mc: [HFCANDCHICMCREC, HFCANDCHICMCGEN]
o2-analysis-hf-candidate-creator-b0:
dependencies: o2-analysis-hf-candidate-selector-dplus-to-pi-k-pi
tables:
default: [HFCANDB0BASE, HFCANDB0EXT]
mc: [HFCANDB0MCREC, HFCANDB0MCGEN]
o2-analysis-hf-candidate-creator-bplus:
dependencies: o2-analysis-hf-candidate-selector-d0
tables:
default: [HFCANDBPLUSBASE, HFCANDBPLUSEXT]
mc: [HFCANDBPMCREC, HFCANDBPMCGEN]
o2-analysis-hf-candidate-creator-lb:
dependencies: o2-analysis-hf-candidate-selector-lc
tables:
default: [HFCANDLB, HFCANDLBEXT]
mc: [HFCANDLBMCREC, HFCANDLBMCGEN]
# Selectors
o2-analysis-hf-candidate-selector-d0: &selector_2prong
dependencies:
- o2-analysis-hf-candidate-creator-2prong_derX
- o2-analysis-pid-tpc-full
- o2-analysis-pid-tof-full_runX
tables: HFSELD0
o2-analysis-hf-candidate-selector-jpsi_run3: &selector_jpsi
<<: *selector_2prong
executable: o2-analysis-hf-candidate-selector-jpsi
tables: HFSELJPSI
o2-analysis-hf-candidate-selector-jpsi_run2:
<<: *selector_jpsi
o2-analysis-hf-candidate-selector-jpsi_run5:
<<: *selector_jpsi
options: --isAlice3
o2-analysis-hf-candidate-selector-dplus-to-pi-k-pi: &selector_3prong
dependencies:
- o2-analysis-hf-candidate-creator-3prong_derX
- o2-analysis-pid-tpc-full
- o2-analysis-pid-tof-full_runX
tables: HFSELDPLUS
o2-analysis-hf-candidate-selector-ds-to-k-k-pi:
<<: *selector_3prong
tables: HFSELDS
o2-analysis-hf-candidate-selector-lb-to-lc-pi:
dependencies: o2-analysis-hf-candidate-creator-lb
tables: HFSELLB
o2-analysis-hf-candidate-selector-lc:
dependencies:
- o2-analysis-hf-candidate-creator-3prong_derX
- o2-analysis-pid-tpc-full
- o2-analysis-pid-tof-full_runX
- o2-analysis-pid-bayes
tables: HFSELLC
o2-analysis-hf-candidate-selector-xic-to-p-k-pi:
<<: *selector_3prong
tables: HFSELXIC
o2-analysis-hf-candidate-selector-lc-to-k0s-p:
dependencies:
- o2-analysis-hf-candidate-creator-cascade
- o2-analysis-pid-tpc-full
- o2-analysis-pid-tof-full_runX
- o2-analysis-pid-bayes
tables: HFSELLCK0SP
o2-analysis-hf-candidate-selector-x-to-jpsi-pi-pi:
dependencies: o2-analysis-hf-candidate-creator-x
tables: HFSELX
o2-analysis-hf-candidate-selector-xicc-to-p-k-pi-pi:
dependencies: o2-analysis-hf-candidate-creator-xicc
requires_mc: yes
tables: HFSELXICC
o2-analysis-hf-candidate-selector-chic-to-jpsi-gamma:
dependencies: o2-analysis-hf-candidate-creator-chic
tables: HFSELCHIC
o2-analysis-hf-candidate-selector-b0-to-d-pi:
dependencies: o2-analysis-hf-candidate-creator-b0
tables: HFSELB0
o2-analysis-hf-candidate-selector-bplus-to-d0-pi:
dependencies: o2-analysis-hf-candidate-creator-bplus
tables: HFSELBPLUS
# Analysis tasks
o2-analysis-hf-task-d0:
dependencies: o2-analysis-hf-candidate-selector-d0
o2-analysis-hf-task-jpsi:
options:
mc: "--doMC"
dependencies: o2-analysis-hf-candidate-selector-jpsi_runX
o2-analysis-hf-task-dplus:
dependencies: o2-analysis-hf-candidate-selector-dplus-to-pi-k-pi
o2-analysis-hf-task-ds:
dependencies: o2-analysis-hf-candidate-selector-ds-to-k-k-pi
o2-analysis-hf-task-lc:
dependencies: o2-analysis-hf-candidate-selector-lc
o2-analysis-hf-task-lb:
dependencies: [o2-analysis-hf-candidate-selector-lb-to-lc-pi, o2-analysis-centrality_runX]
o2-analysis-hf-task-xic:
dependencies: o2-analysis-hf-candidate-selector-xic-to-p-k-pi
o2-analysis-hf-task-b0:
dependencies: o2-analysis-hf-candidate-selector-b0-to-d-pi
o2-analysis-hf-task-bplus:
dependencies: o2-analysis-hf-candidate-selector-bplus-to-d0-pi
o2-analysis-hf-task-x:
options:
mc: "--doMC"
dependencies: o2-analysis-hf-candidate-selector-x-to-jpsi-pi-pi
o2-analysis-hf-task-lc-to-k0s-p:
dependencies: o2-analysis-hf-candidate-selector-lc-to-k0s-p
o2-analysis-hf-task-xicc:
requires_mc: yes
options:
mc: "--doMC"
dependencies: o2-analysis-hf-candidate-selector-xicc-to-p-k-pi-pi
o2-analysis-hf-task-chic:
options:
mc: "--doMC"
dependencies: o2-analysis-hf-candidate-selector-chic-to-jpsi-gamma
# Tree creators
o2-analysis-hf-tree-creator-d0-to-k-pi:
dependencies: o2-analysis-hf-candidate-selector-d0
tables: [HFCAND2PFull, HFCAND2PFullE, HFCAND2PFullP]
o2-analysis-hf-tree-creator-lc-to-p-k-pi:
dependencies: o2-analysis-hf-candidate-selector-lc
tables: [HFCAND3PFull, HFCAND3PFullE, HFCAND3PFullP]
o2-analysis-hf-tree-creator-lc-to-k0s-p:
dependencies: o2-analysis-hf-candidate-selector-lc-to-k0s-p
tables: [HFCANDCASCLITE, HFCANDCASCFULL, HFCANDCASCFULLE, HFCANDCASCFULLP]
o2-analysis-hf-tree-creator-bplus-to-d0-pi:
requires_mc: yes
dependencies: o2-analysis-hf-candidate-selector-bplus-to-d0-pi
tables: [HFCANDBPFull, HFCANDBPFullE, HFCANDBPFullP]
o2-analysis-hf-tree-creator-lb-to-lc-pi:
requires_mc: yes
dependencies: o2-analysis-hf-candidate-selector-lb-to-lc-pi
tables: [HFCANDLbFull, HFCANDLbFullE, HFCANDLbFullP]
o2-analysis-hf-tree-creator-x-to-jpsi-pi-pi:
requires_mc: yes
dependencies: o2-analysis-hf-candidate-selector-x-to-jpsi-pi-pi
tables: [HFCANDXFull, HFCANDXFullE, HFCANDXFullP]
o2-analysis-hf-tree-creator-xicc-to-p-k-pi-pi:
requires_mc: yes
dependencies: o2-analysis-hf-candidate-selector-xicc-to-p-k-pi-pi
tables: [HFCANDXiccFull, HFCANDXiccFullE, HFCANDXiccFullP]
o2-analysis-hf-tree-creator-chic-to-jpsi-gamma:
requires_mc: yes
dependencies: o2-analysis-hf-candidate-selector-chic-to-jpsi-gamma
tables: [HFCANDChicFull, HFCANDChicFullE, HFCANDChicFullP]
# D meson correlations
o2-analysis-hf-correlator-d0-d0bar: &d0d0barcorr
executable: o2-analysis-hf-correlator-d0-d0bar
dependencies: o2-analysis-hf-candidate-selector-d0
tables: [DDBARPAIR, DDBARRECOINFO]
o2-analysis-hf-correlator-d0-d0bar_mc-rec:
<<: *d0d0barcorr
options: "--doMCRec"
o2-analysis-hf-correlator-d0-d0bar_mc-gen:
<<: *d0d0barcorr
options: "--doMCGen"
tables: DDBARPAIR
o2-analysis-hf-correlator-dplus-dminus: &dplusdminus
executable: o2-analysis-hf-correlator-dplus-dminus
dependencies: o2-analysis-hf-candidate-selector-dplus-to-pi-k-pi
tables: [DDBARPAIR, DDBARRECOINFO]
o2-analysis-hf-correlator-dplus-dminus_mc-rec:
<<: *dplusdminus
requires_mc: yes
o2-analysis-hf-correlator-dplus-dminus_mc-gen:
<<: *dplusdminus
requires_mc: yes
tables: DDBARPAIR
o2-analysis-hf-correlator-d0-hadrons:
dependencies: o2-analysis-hf-candidate-selector-d0
tables: [DHADRONPAIR, DHADRONRECOINFO]
o2-analysis-hf-correlator-dplus-hadrons:
dependencies: o2-analysis-hf-candidate-selector-dplus-to-pi-k-pi
o2-analysis-hf-correlator-ds-hadrons:
dependencies: o2-analysis-hf-candidate-selector-ds-to-k-k-pi
o2-analysis-hf-task-correlation-d-dbar: &taskddbar
executable: o2-analysis-hf-task-correlation-d-dbar
o2-analysis-hf-task-correlation-d-dbar_mc-rec:
<<: *taskddbar
requires_mc: yes
o2-analysis-hf-task-correlation-d-dbar_mc-gen:
<<: *taskddbar
requires_mc: yes
o2-analysis-hf-task-correlation-d0-hadrons:
dependencies: o2-analysis-hf-correlator-d0-hadrons
o2-analysis-hf-task-flow:
dependencies:
- o2-analysis-hf-candidate-selector-d0
- o2-analysis-multiplicity-table_runX
# Jets
o2-analysis-je-jet-finder-d0-data-charged: &jethf
dependencies: [o2-analysis-event-selection, o2-analysis-hf-candidate-selector-d0]
tables: [D0JET, D0JETCONSTS, D0JETCONSTSUB]
o2-analysis-je-jet-finder-d0-mcd-charged:
<<: *jethf
requires_mc: yes
tables: [D0DJET, D0DJETCONSTS, D0DJETCONSTSUB]
o2-analysis-je-jet-finder-d0-mcp-charged:
<<: *jethf
requires_mc: yes
tables: [D0PJET, D0PJETCONSTS, D0PJETCONSTSUB]
o2-analysis-je-jet-finder-hf-qa_data:
executable: o2-analysis-je-jet-finder-hf-qa
dependencies: o2-analysis-je-jet-finder-d0-data-charged
o2-analysis-je-jet-finder-hf-qa_mc:
executable: o2-analysis-je-jet-finder-hf-qa
dependencies: [o2-analysis-je-jet-finder-d0-mcd-charged, o2-analysis-je-jet-finder-d0-mcp-charged]
requires_mc: yes
o2-analysis-je-jet-matching:
dependencies: [o2-analysis-je-jet-finder-d0-mcd-charged, o2-analysis-je-jet-finder-d0-mcp-charged]
requires_mc: yes
tables: [D0JETMP2D, D0JETMD2P]
o2-analysis-je-jet-substructure-hf_data:
executable: o2-analysis-je-jet-substructure-hf
dependencies: [o2-analysis-hf-candidate-selector-d0, o2-analysis-je-jet-finder-d0-data-charged]
tables: D0SS
o2-analysis-je-jet-substructure-hf_mcd:
executable: o2-analysis-je-jet-substructure-hf
dependencies: [o2-analysis-hf-candidate-selector-d0, o2-analysis-je-jet-finder-d0-mcd-charged]
requires_mc: yes
tables: D0MCDSS
o2-analysis-je-jet-substructure-hf_mcp:
executable: o2-analysis-je-jet-substructure-hf
dependencies: [o2-analysis-hf-candidate-selector-d0, o2-analysis-je-jet-finder-d0-mcp-charged]
requires_mc: yes
tables: D0MCPSS
o2-analysis-je-jet-substructure-hf-output_data:
executable: o2-analysis-je-jet-substructure-hf-output
dependencies: o2-analysis-je-jet-substructure-hf_data
tables: [D0O, D0SSO]
o2-analysis-je-jet-substructure-hf-output_mcd:
executable: o2-analysis-je-jet-substructure-hf-output
dependencies: o2-analysis-je-jet-substructure-hf_mcd
requires_mc: yes
tables: [D0MCDO, D0MCDSSO]
o2-analysis-je-jet-substructure-hf-output_mcp:
executable: o2-analysis-je-jet-substructure-hf-output
dependencies: o2-analysis-je-jet-substructure-hf_mcp
requires_mc: yes
tables: [D0MCPO, D0MCPSSO]
# QA
o2-analysis-qa-efficiency:
requires_mc: yes
dependencies: [o2-analysis-event-selection, o2-analysis-trackselection_runX]
o2-analysis-qa-event-track:
requires_mc: yes
dependencies: [o2-analysis-event-selection, o2-analysis-trackselection_runX, o2-analysis-pid-tof-base]
o2-analysis-hf-task-qa-pid-rejection:
requires_mc: yes
dependencies: [o2-analysis-hf-track-index-skim-creator_skimX, o2-analysis-pid-tpc-full, o2-analysis-pid-tof-full_runX]
o2-analysis-pid-tof-qa-mc:
requires_mc: yes
dependencies: [o2-analysis-pid-tof-full_runX, o2-analysis-pid-tof-beta]
o2-analysis-hf-task-mc-validation:
requires_mc: yes
dependencies: [o2-analysis-hf-candidate-creator-2prong_derX, o2-analysis-hf-candidate-creator-3prong_derX]
# Helper tasks
o2-analysis-track-to-collision-associator:
tables: HFTRACKASSOC
o2-analysis-timestamp: {}
o2-analysis-trackselection_run2:
executable: o2-analysis-trackselection
dependencies: o2-analysis-track-dca_run2
o2-analysis-trackselection_run3:
executable: o2-analysis-trackselection
dependencies: o2-analysis-track-dca_run3
o2-analysis-trackselection_run5:
executable: o2-analysis-alice3-trackselection
o2-analysis-track-dca_run2:
executable: o2-analysis-trackextension
dependencies: o2-analysis-timestamp
o2-analysis-track-dca_run3:
executable: o2-analysis-track-propagation
dependencies: o2-analysis-timestamp
o2-analysis-track-dca_run5:
executable: o2-analysis-alice3-trackextension
o2-analysis-centrality_run2:
executable: o2-analysis-centrality-table
o2-analysis-centrality_run3:
executable: o2-analysis-centrality-table
o2-analysis-centrality_run5:
executable: o2-analysis-alice3-centrality
dependencies: o2-analysis-track-dca_run5
o2-analysis-event-selection:
dependencies: o2-analysis-timestamp
o2-analysis-multiplicity-table_run2:
executable: o2-analysis-multiplicity-table
o2-analysis-multiplicity-table_run3:
executable: o2-analysis-multiplicity-table
dependencies: o2-analysis-event-selection
o2-analysis-ft0-corrected-table: {}
# PID
o2-analysis-pid-tpc-base: {}
o2-analysis-pid-tpc-full:
dependencies: [o2-analysis-pid-tpc-base, o2-analysis-timestamp]
o2-analysis-pid-tof-base_run2:
executable: o2-analysis-pid-tof-base
dependencies: o2-analysis-event-selection
o2-analysis-pid-tof-base_run3:
executable: o2-analysis-pid-tof-base
dependencies: [o2-analysis-event-selection, o2-analysis-ft0-corrected-table]
o2-analysis-pid-tof-full_run2:
executable: o2-analysis-pid-tof-full
dependencies: [o2-analysis-pid-tof-base_run2, o2-analysis-timestamp]
o2-analysis-pid-tof-full_run3:
executable: o2-analysis-pid-tof-full
dependencies: [o2-analysis-pid-tof-base_run3, o2-analysis-timestamp]
o2-analysis-pid-tof-full_run5:
executable: o2-analysis-alice3-pid-tof
o2-analysis-pid-bayes:
dependencies: [o2-analysis-pid-tof-full_runX, o2-analysis-pid-tpc-full, o2-analysis-multiplicity-table_runX]
o2-analysis-pid-tof-beta: {}
# Converters
o2-analysis-mc-converter: {}
o2-analysis-fdd-converter: {}
o2-analysis-collision-converter: {}
o2-analysis-zdc-converter: {}
o2-analysis-bc-converter: {}
o2-analysis-tracks-extra-converter: {}
# LF
o2-analysis-lf-lambdakzerobuilder:
dependencies: [o2-analysis-timestamp, o2-analysis-track-dca_runX, o2-analysis-pid-tpc-full]