-
Notifications
You must be signed in to change notification settings - Fork 52
/
readout-dataflow.yaml
executable file
·2318 lines (2318 loc) · 81.1 KB
/
readout-dataflow.yaml
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
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
name: !public readout-dataflow
description: !public "Main workflow template for ALICE data taking"
defaults:
###############################
# General Configuration Panel
###############################
dcs_enabled: !public
value: "false"
type: bool
label: "DCS"
description: "Enable/disable DCS SOR/EOR commands"
widget: checkBox
panel: General_Configuration
index: 0
dd_enabled: !public
value: "true"
type: bool
label: "Data Distribution (FLP)"
description: "Enable/disable Data Distribution components running on FLPs (StfBuilder and StfSender)"
widget: checkBox
panel: General_Configuration
index: 1
epn_enabled: !public # TODO: this should be the single var that enables both ODC and DD Scheduler
value: "false"
type: bool
label: "EPN"
description: "Enable/disable EPN"
widget: checkBox
panel: General_Configuration
index: 2
qc_remote_enabled: !public # TODO: if false, all per-detector remote QC workflows vars should be disabled
value: "false"
type: bool
label: "QC node workflows"
description: "Enable/disable running workflows on the QC nodes"
widget: checkBox
panel: "General_Configuration"
index: 3
trg_enabled: !public
value: "false"
type: bool
label: "TRG"
description: "Enable/disable TRG"
widget: checkBox
panel: General_Configuration
index: 4
trg_global_run_enabled: !public
value: "false"
type: bool
label: "TRG Global Run"
description: "If enabled, send commands to CTP. If disabled, send commands to LTU."
widget: checkBox
panel: General_Configuration
visibleif: $$trg_enabled === "true"
index: 5
run_type: !public # enum from AliECS common/runtype
value: "PHYSICS"
type: string
label: "Run Type"
description: "Run type"
widget: comboBox
panel: General_Configuration
values:
- NONE
- CALIBRATION_ITHR_TUNING
- CALIBRATION_VCASN_TUNING
- CALIBRATION_THR_SCAN
- CALIBRATION_DIGITAL_SCAN
- CALIBRATION_ANALOG_SCAN
- CALIBRATION_FHR
- CALIBRATION_ALPIDE_SCAN
- CALIBRATION_PULSE_LENGTH
- CALIBRATION_VRESETD
- COSMICS
- LASER
- NOISE
- PEDESTAL
- PHYSICS
- PULSER
- TECHNICAL
- SYNTHETIC
index: 6
ctp_readout_enabled: !public
value: "false"
type: bool
label: "CTP Readout"
description: "Enable/disable CTP readout"
widget: checkBox
panel: General_Configuration
index: 7
###############################
# DCS and FLP Workflows Panel
###############################
cpv_dpl_workflow: !public
value: "none"
type: string
label: "CPV FLP workflow"
description: "Workflow to execute on the FLPs of this detector"
widget: dropDownBox
panel: "FLPs_Workflows"
values:
- none
- cpv-compressor
- cpv-pedestal-calib-qc
- cpv-pedestal-calib-qc-expert
- cpv-noise-calib-qc
- cpv-physics
- cpv-physics-testing
- minimal-dpl
- qc-daq
- qcmn-daq-local
cpv_qc_remote_workflow: !public
value: "none"
type: string
label: "CPV QC node workflow"
description: "Workflow to execute on QC servers for this detector"
widget: dropDownBox
panel: "QC_Nodes_Workflows"
values:
- none
- cpv-physics-qcmn-epn-remote
- qcmn-daq-remote
visibleif: $$qc_remote_enabled === "true"
ctp_dpl_workflow: !public
value: "none"
type: string
label: "CTP FLP workflow"
description: "Workflow to execute on the FLPs of this detector"
widget: dropDownBox
panel: "FLPs_Workflows"
values:
- none
- ctp-reco
- ctp-reco-HI-ZNC-TCE
- ctp-reco-3dec
- ctp-reco-3dec-HI-ZNC-TCE
- ctp-reco-6dec-HI-ZNC-TCE
- ctp-reco-12dec-HI-ZNC-TCE
- ctp-reco-qc
- ctp-reco-3dec-qc
- ctp-reco-HI-ZNC-TCE-qc
- ctp-reco-3dec-HI-ZNC-TCE-qc
- ctp-reco-6dec-HI-ZNC-TCE-qc
- ctp-reco-12dec-HI-ZNC-TCE-qc
- minimal-dpl
- ctp-raw-qc
ctp_qc_remote_workflow: !public
value: "none"
type: string
label: "CTP QC node workflow"
description: "Workflow to execute on QC servers for this detector"
widget: dropDownBox
panel: "QC_Nodes_Workflows"
values:
- none
- ctp-qcmn-remote
visibleif: $$qc_remote_enabled === "true"
cpv_dcs_sor_parameters: !public
value: "{}"
type: string
label: "CPV SOR parameters"
description: "additional parameters for the DCS SOR"
widget: editBox
panel: DCS
visibleif: $$dcs_enabled === "true"
cpv_dcs_eor_parameters: !public
value: "{}"
type: string
label: "CPV EOR parameters"
description: "additional parameters for the DCS EOR"
widget: editBox
panel: DCS
visibleif: $$dcs_enabled === "true"
emc_dpl_workflow: !public
value: "none"
type: string
label: "EMCAL FLP workflow"
description: "Workflow to execute on the FLPs of this detector"
widget: dropDownBox
panel: "FLPs_Workflows"
values:
- none
- minimal-dpl
- qc-daq
- qcmn-daq-local
- emc-qcmn-flp-local
emc_qc_remote_workflow: !public
value: "none"
type: string
label: "EMCAL QC node workflow"
description: "Workflow to execute on QC servers for this detector"
widget: dropDownBox
panel: "QC_Nodes_Workflows"
values:
- none
- emc-pedestal-calib-qc
- emc-qcmn-flp-remote
- emc-qcmn-epn-remote
- emc-qcmn-epnall-remote
- emc-qcmn-epnall-withCTP-remote
- emc-qcmn-epnall-PbPb-remote
- emc-qcmn-epnall-withCTP-PbPb-remote
- emc-qcmn-flpepn-remote
- qcmn-daq-remote
visibleif: $$qc_remote_enabled === "true"
emc_dcs_sor_parameters: !public
value: "{}"
type: string
label: "EMCAL SOR parameters"
description: "additional parameters for the DCS SOR"
widget: editBox
panel: DCS
visibleif: $$dcs_enabled === "true"
emc_dcs_eor_parameters: !public
value: "{}"
type: string
label: "EMCAL EOR parameters"
description: "additional parameters for the DCS EOR"
widget: editBox
panel: DCS
visibleif: $$dcs_enabled === "true"
fdd_dpl_workflow: !public
value: "none"
type: string
label: "FDD FLP workflow"
description: "Workflow to execute on the FLPs of this detector"
widget: dropDownBox
panel: "FLPs_Workflows"
values:
- none
- fdd-digits-pipe
- fdd-digits-pipe-qc-raw
- fdd-digits-pipe-ds-qc
- fdd-digits-pipe-ds-qc-raw
- fdd-digits-qc
- fdd-ds-digits-pipe-qc-raw
- minimal-dpl
- qc-daq
- qcmn-daq-local
fdd_qc_remote_workflow: !public
value: "none"
type: string
label: "FDD QC node workflow"
description: "Workflow to execute on QC servers for this detector"
widget: dropDownBox
panel: "QC_Nodes_Workflows"
values:
- none
- fdd-qc-post-processing-remote
- fdd-qcmn-epn-post-processing-remote
- fdd-qcmn-remote
- qcmn-daq-remote
visibleif: $$qc_remote_enabled === "true"
fdd_dcs_sor_parameters: !public
value: "{}"
type: string
label: "FDD SOR parameters"
description: "additional parameters for the DCS SOR"
widget: editBox
panel: DCS
visibleif: $$dcs_enabled === "true"
fdd_dcs_eor_parameters: !public
value: "{}"
type: string
label: "FDD EOR parameters"
description: "additional parameters for the DCS EOR"
widget: editBox
panel: DCS
visibleif: $$dcs_enabled === "true"
foc_dpl_workflow:
value: "none"
type: string
label: "FOC FLP workflow"
description: "Workflow to execute on the FLPs of this detector"
widget: dropDownBox
panel: "FLPs_Workflows"
values:
- none
- minimal-dpl
- qc-daq
- foc-pad-pedestal-calib
- foc-reconstructor
- foc-reconstructor-qc
- foc-qc
ft0_dpl_workflow: !public
value: "none"
type: string
label: "FT0 FLP workflow"
description: "Workflow to execute on the FLPs of this detector"
widget: dropDownBox
panel: "FLPs_Workflows"
values:
- none
- ft0-digits-pipe
- ft0-digits-pipe-ds-qc
- ft0-digits-pipe-qc-raw
- ft0-digits-pipe-ds-qc-raw
- ft0-decoder-pipe
- ft0-decoder-pipe-ds-qc
- ft0-decoder-pipe-ds-qc-raw
- ft0-digits-qc
- ft0-ds-digits-pipe-qc-raw
- minimal-dpl
- qc-daq
- qcmn-daq-local
ft0_qc_remote_workflow: !public
value: "none"
type: string
label: "FT0 QC node workflow"
description: "Workflow to execute on QC servers for this detector"
widget: dropDownBox
panel: "QC_Nodes_Workflows"
values:
- none
- ft0-qc-post-processing-remote
- ft0-qcmn-epn-post-processing-remote
- ft0-qcmn-remote
- qcmn-daq-remote
visibleif: $$qc_remote_enabled === "true"
ft0_dcs_sor_parameters: !public
value: "{}"
type: string
label: "FT0 SOR parameters"
description: "additional parameters for the DCS SOR"
widget: editBox
panel: DCS
visibleif: $$dcs_enabled === "true"
ft0_dcs_eor_parameters: !public
value: "{}"
type: string
label: "FT0 EOR parameters"
description: "additional parameters for the DCS EOR"
widget: editBox
panel: DCS
visibleif: $$dcs_enabled === "true"
fv0_dpl_workflow: !public
value: "none"
type: string
label: "FV0 FLP workflow"
description: "Workflow to execute on the FLPs of this detector"
widget: dropDownBox
panel: "FLPs_Workflows"
values:
- none
- fv0-digits-pipe
- fv0-digits-pipe-qc-raw
- fv0-digits-pipe-ds-qc
- fv0-digits-pipe-ds-qc-raw
- fv0-digits-qc
- fv0-ds-digits-pipe-qc-raw
- minimal-dpl
- qc-daq
- qcmn-daq-local
fv0_qc_remote_workflow: !public
value: "none"
type: string
label: "FV0 QC node workflow"
description: "Workflow to execute on QC servers for this detector"
widget: dropDownBox
panel: "QC_Nodes_Workflows"
values:
- none
- fv0-qc-post-processing-remote
- fv0-qcmn-epn-post-processing-remote
- fv0-qcmn-remote
- qcmn-daq-remote
visibleif: $$qc_remote_enabled === "true"
fv0_dcs_sor_parameters: !public
value: "{}"
type: string
label: "FV0 SOR parameters"
description: "additional parameters for the DCS SOR"
widget: editBox
panel: DCS
visibleif: $$dcs_enabled === "true"
fv0_dcs_eor_parameters: !public
value: "{}"
type: string
label: "FV0 EOR parameters"
description: "additional parameters for the DCS EOR"
widget: editBox
panel: DCS
visibleif: $$dcs_enabled === "true"
its_dpl_workflow: !public
value: "none"
type: string
label: "ITS FLP workflow"
description: "Workflow to execute on the FLPs of this detector"
widget: dropDownBox
panel: "FLPs_Workflows"
values:
- none
- its-qc-fhr-fee
- its-qc-fhr-fee-no-ds
- its-qcmn-fhr-fee-local
- its-qcmn-fhr-fee-no-ds-local
- its-qcmn-fhr-fee-no-ds-entire-local
- its-qcmn-fee-no-ds-local
- minimal-dpl
- qc-daq
- qcmn-daq-local
its_qc_remote_workflow: !public
value: "none"
type: string
label: "ITS QC node workflow"
description: "Workflow to execute on QC servers for this detector"
widget: dropDownBox
panel: "QC_Nodes_Workflows"
values:
- none
- its-qcmn-fhr-fee-remote
- its-qcmn-fhr-fee-no-ds-remote
- its-qcmn-fhr-fee-no-ds-entire-remote
- its-qcmn-fee-no-ds-remote
- its-qcmn-cluster-track-remote
- its-qcmn-flp-epn-remote
- its-qcmn-fee-epn-remote
- its-qcmn-flp-epn-no-ds-remote
- its-qcmn-epn-remote
- its-qcmn-flp-epn-no-ds-nocluster-remote
- its-qcmn-full-remote
- its-qcmn-epn-calibration-remote
- qcmn-daq-remote
visibleif: $$qc_remote_enabled === "true"
its_dcs_sor_parameters: !public
value: "{}"
type: string
label: "ITS SOR parameters"
description: "additional parameters for the DCS SOR"
widget: editBox
panel: DCS
visibleif: $$dcs_enabled === "true"
its_dcs_eor_parameters: !public
value: "{}"
type: string
label: "ITS EOR parameters"
description: "additional parameters for the DCS EOR"
widget: editBox
panel: DCS
visibleif: $$dcs_enabled === "true"
hmp_dpl_workflow: !public
value: "none"
type: string
label: "HMPID FLP workflow"
description: "Workflow to execute on the FLPs of this detector"
widget: dropDownBox
panel: "FLPs_Workflows"
values:
- none
- hmpid-raw-qc
- hmpid-raw-qcmn-local
- minimal-dpl
- qc-daq
- qcmn-daq-local
- hmpid-raw-to-pedestals
hmp_qc_remote_workflow: !public
value: "none"
type: string
label: "HMPID QC node workflow"
description: "Workflow to execute on QC servers for this detector"
widget: dropDownBox
panel: "QC_Nodes_Workflows"
values:
- none
- hmpid-raw-qcmn-remote
- qcmn-daq-remote
visibleif: $$qc_remote_enabled === "true"
hmp_dcs_sor_parameters: !public
value: "{}"
type: string
label: "HMPID SOR parameters"
description: "additional parameters for the DCS SOR"
widget: editBox
panel: DCS
visibleif: $$dcs_enabled === "true"
hmp_dcs_eor_parameters: !public
value: "{}"
type: string
label: "HMPID EOR parameters"
description: "additional parameters for the DCS EOR"
widget: editBox
panel: DCS
visibleif: $$dcs_enabled === "true"
mch_dpl_workflow: !public
value: "none"
type: string
label: "MCH FLP workflow"
description: "Workflow to execute on the FLPs of this detector"
widget: dropDownBox
panel: "FLPs_Workflows"
values:
- none
- minimal-dpl
- qc-daq
- qcmn-daq-local
mch_qc_remote_workflow: !public
value: "none"
type: string
label: "MCH QC node workflow"
description: "Workflow to execute on QC servers for this detector"
widget: dropDownBox
panel: "QC_Nodes_Workflows"
values:
- none
- mch-qcmn-epn-digits-remote
- mch-qcmn-epn-full-remote
- mch-qcmn-epn-full-track-matching-remote
- qcmn-daq-remote
visibleif: $$qc_remote_enabled === "true"
mch_dcs_sor_parameters: !public
value: "{}"
type: string
label: "MCH SOR parameters"
description: "additional parameters for the DCS SOR"
widget: editBox
panel: DCS
visibleif: $$dcs_enabled === "true"
mch_dcs_eor_parameters: !public
value: "{}"
type: string
label: "MCH EOR parameters"
description: "additional parameters for the DCS EOR"
widget: editBox
panel: DCS
visibleif: $$dcs_enabled === "true"
mft_dpl_workflow: !public
value: "none"
type: string
label: "MFT FLP workflow"
description: "Workflow to execute on the FLPs of this detector"
widget: dropDownBox
panel: "FLPs_Workflows"
values:
- none
- mft-full-qcmn-local
- mft-noise-qcmn-local
- mft-full-no-tracks-qcmn-local
- mft-readout-qcmn-local
- mft-digits-qcmn-local
- minimal-dpl
- qc-daq
- qcmn-daq-local
mft_qc_remote_workflow: !public
value: "none"
type: string
label: "MFT QC node workflow"
description: "Workflow to execute on QC servers for this detector"
widget: dropDownBox
panel: "QC_Nodes_Workflows"
values:
- none
- mft-full-qcmn-remote
- mft-noise-qcmn-remote
- mft-full-no-tracks-qcmn-remote
- mft-readout-qcmn-remote
- mft-digits-qcmn-remote
- qcmn-daq-remote
visibleif: $$qc_remote_enabled === "true"
mft_dcs_sor_parameters: !public
value: "{}"
type: string
label: "MFT SOR parameters"
description: "additional parameters for the DCS SOR"
widget: editBox
panel: DCS
visibleif: $$dcs_enabled === "true"
mft_dcs_eor_parameters: !public
value: "{}"
type: string
label: "MFT EOR parameters"
description: "additional parameters for the DCS EOR"
widget: editBox
panel: DCS
visibleif: $$dcs_enabled === "true"
mid_dpl_workflow: !public
value: "none"
type: string
label: "MID FLP workflow"
description: "Workflow to execute on the FLPs of this detector"
widget: dropDownBox
panel: "FLPs_Workflows"
values:
- none
- mid-raw-decoder
- minimal-dpl
- qc-daq
- qcmn-daq-local
mid_qc_remote_workflow: !public
value: "none"
type: string
label: "MID QC node workflow"
description: "Workflow to execute on QC servers for this detector"
widget: dropDownBox
panel: "QC_Nodes_Workflows"
values:
- none
- mid-qcmn-epn-digits
- mid-digits-qcmn-remote
- mid-full-qcmn-remote
- qcmn-daq-remote
- mid-calib-qcmn-remote
visibleif: $$qc_remote_enabled === "true"
mid_dcs_sor_parameters: !public
value: "{}"
type: string
label: "MID SOR parameters"
description: "additional parameters for the DCS SOR"
widget: editBox
panel: DCS
visibleif: $$dcs_enabled === "true"
mid_dcs_eor_parameters: !public
value: "{}"
type: string
label: "MID EOR parameters"
description: "additional parameters for the DCS EOR"
widget: editBox
panel: DCS
visibleif: $$dcs_enabled === "true"
phs_dpl_workflow: !public
value: "none"
type: string
label: "PHOS FLP workflow"
description: "Workflow to execute on the FLPs of this detector"
widget: dropDownBox
panel: "FLPs_Workflows"
values:
- none
- phos-compressor-raw-qc
- phos-compressor-raw-qcmn-local
- phos-compressor-raw-qcmnt3-local
- phos-compressor-raw-qct3
- phos-compressor
- phos-compressort3
- phos-raw-clusters-local
- minimal-dpl
- qc-daq
- qcmn-daq-local
phs_qc_remote_workflow: !public
value: "none"
type: string
label: "PHOS QC node workflow"
description: "Workflow to execute on QC servers for this detector"
widget: dropDownBox
panel: "QC_Nodes_Workflows"
values:
- none
- phos-compressor-raw-qcmn-remote
- phos-compressor-raw-qcmnt3-remote
- phos-raw-clusters-remote
- phos-raw-clusters-epn-remote
- qcmn-daq-remote
visibleif: $$qc_remote_enabled === "true"
phs_dcs_sor_parameters: !public
value: "{}"
type: string
label: "PHOS SOR parameters"
description: "additional parameters for the DCS SOR"
widget: editBox
panel: DCS
visibleif: $$dcs_enabled === "true"
phs_dcs_eor_parameters: !public
value: "{}"
type: string
label: "PHOS EOR parameters"
description: "additional parameters for the DCS EOR"
widget: editBox
panel: DCS
visibleif: $$dcs_enabled === "true"
tof_dpl_workflow: !public
value: "none"
type: string
label: "TOF FLP workflow"
description: "Workflow to execute on the FLPs of this detector"
widget: dropDownBox
panel: "FLPs_Workflows"
values:
- none
- tof-compressor
- tof-full-qcmn-local
- tof-full-qcmn-paranoid-local
- tof-full-qcmn-paran-3cmp-local
- tof-full-qcmn-paran-6cmp-local
- tof-full-qcmn-paran-10cmp-local
- tof-full-qcmn-paran-15cmp-local
- tof-full-qcmn-cdump-15cmp-local
- tof-full-qcmn-cdump-bckp-local
- tof-full-qcmn-15cmp-local
- tof-full-qcmn-paran-20cmp-local
- tof-full-qcmn-paran-25cmp-local
- tof-qcmn-compressor-local
- minimal-dpl
- qc-daq
- qcmn-daq-local
tof_qc_remote_workflow: !public
value: "none"
type: string
label: "TOF QC node workflow"
description: "Workflow to execute on QC servers for this detector"
widget: dropDownBox
panel: "QC_Nodes_Workflows"
values:
- none
- qcmn-daq-remote
- tof-full-qcmn-remote
- tof-full-epn-qcmn-remote
- tof-qcmn-compressor-remote
visibleif: $$qc_remote_enabled === "true"
tof_dcs_sor_parameters: !public
value: "{}"
type: string
label: "TOF SOR parameters"
description: "additional parameters for the DCS SOR"
widget: editBox
panel: DCS
visibleif: $$dcs_enabled === "true"
tof_dcs_eor_parameters: !public
value: "{}"
type: string
label: "TOF EOR parameters"
description: "additional parameters for the DCS EOR"
widget: editBox
panel: DCS
visibleif: $$dcs_enabled === "true"
tpc_dpl_workflow: !public
value: "none"
type: string
label: "TPC FLP workflow"
description: "Workflow to execute on the FLPs of this detector"
widget: dropDownBox
panel: "FLPs_Workflows"
values:
- none
- minimal-dpl
- qc-daq
- qcmn-daq-local
- tpc-idc-sac-full-split
tpc_qc_remote_workflow: !public
value: "none"
type: string
label: "TPC QC node workflow"
description: "Workflow to execute on QC servers for this detector"
widget: dropDownBox
panel: "QC_Nodes_Workflows"
values:
- none
- qcmn-daq-remote
- tpc-full-qcmn-remote
- tpc-full-cosmics-qcmn-remote
- tpc-full-synthetic-qcmn-remote
- tpc-full-replay-qcmn-remote
- tpc-calib-remote
- tpc-laser-calib-remote
- tpc-pedestal-calib-remote
- tpc-pulser-calib-remote
- tpc-krypton-qcmn-remote
visibleif: $$qc_remote_enabled === "true"
tpc_dcs_sor_parameters: !public
value: "{}"
type: string
label: "TPC SOR parameters"
description: "additional parameters for the DCS SOR"
widget: editBox
panel: DCS
visibleif: $$dcs_enabled === "true"
tpc_dcs_eor_parameters: !public
value: "{}"
type: string
label: "TPC EOR parameters"
description: "additional parameters for the DCS EOR"
widget: editBox
panel: DCS
visibleif: $$dcs_enabled === "true"
trd_dpl_workflow: !public
value: "none"
type: string
label: "TRD FLP workflow"
description: "Workflow to execute on the FLPs of this detector"
widget: dropDownBox
panel: "FLPs_Workflows"
values:
- none
- minimal-dpl
- qc-daq
- qcmn-daq-local
trd_qc_remote_workflow: !public
value: "none"
type: string
label: "TRD QC node workflow"
description: "Workflow to execute on QC servers for this detector"
widget: dropDownBox
panel: "QC_Nodes_Workflows"
values:
- none
- qcmn-daq-remote
- trd-full-qcmn-epn
- trd-full-qcmn-epn-test
visibleif: $$qc_remote_enabled === "true"
trd_dcs_sor_parameters: !public
value: "{}"
type: string
label: "TRD SOR parameters"
description: "additional parameters for the DCS SOR"
widget: editBox
panel: DCS
visibleif: $$dcs_enabled === "true"
trd_dcs_eor_parameters: !public
value: "{}"
type: string
label: "TRD EOR parameters"
description: "additional parameters for the DCS EOR"
widget: editBox
panel: DCS
visibleif: $$dcs_enabled === "true"
tst_dpl_workflow: !public
value: "none"
type: string
label: "TST FLP workflow"
description: "Workflow to execute on the FLPs of this detector"
widget: dropDownBox
panel: "FLPs_Workflows"
values:
- none
- minimal-dpl
- qc-daq
- qcmn-daq-local
tst_qc_remote_workflow: !public
value: "none"
type: string
label: "TST QC node workflow"
description: "Workflow to execute on QC servers for this detector"
widget: dropDownBox
panel: "QC_Nodes_Workflows"
values:
- none
- qcmn-daq-remote
visibleif: $$qc_remote_enabled === "true"
zdc_dpl_workflow: !public
value: "none"
type: string
label: "ZDC FLP workflow"
description: "Workflow to execute on the FLPs of this detector"
widget: dropDownBox
panel: "FLPs_Workflows"
values:
- none
- minimal-dpl
- zdc-raw-qc
- zdc-full-qcmn-local
- qc-daq
- qcmn-daq-local
zdc_qc_remote_workflow: !public
value: "none"
type: string
label: "ZDC QC node workflow"
description: "Workflow to execute on QC servers for this detector"
widget: dropDownBox
panel: "QC_Nodes_Workflows"
values:
- none
- zdc-rec-epn
- zdc-full-qcmn-remote
- qcmn-daq-remote
visibleif: $$qc_remote_enabled === "true"
zdc_dcs_sor_parameters: !public
value: "{}"
type: string
label: "ZDC SOR parameters"
description: "additional parameters for the DCS SOR"
widget: editBox
panel: DCS
visibleif: $$dcs_enabled === "true"
zdc_dcs_eor_parameters: !public
value: "{}"
type: string
label: "ZDC EOR parameters"
description: "additional parameters for the DCS EOR"
widget: editBox
panel: DCS
visibleif: $$dcs_enabled === "true"
glo_vtx_qc_enabled: !public
value: "false"
type: bool
label: "GLO Vertexing QC"
description: "Enable/disable QC node workflow for Vertexing QC. Also needs ITS present!"
widget: checkBox
panel: "QC_Nodes_Workflows"
index: 20
visibleif: $$qc_remote_enabled === "true"
glo_itstpc_mtch_qc_enabled: !public
value: "false"
type: bool
label: "GLO ITS-TPC Matching QC"
description: "Enable/disable QC node workflow for ITS-TPC Matching QC. Deployed only if ITS present!"
widget: checkBox
panel: "QC_Nodes_Workflows"
index: 21
visibleif: $$qc_remote_enabled === "true"
glo_fwd_mtch_qc_enabled: !public
value: "false"
type: bool
label: "GLO Forward Matching QC"
description: "Enable/disable QC node workflow for forward Matching QC. Deployed only if MCH present!"
widget: checkBox
panel: "QC_Nodes_Workflows"
index: 22
visibleif: $$qc_remote_enabled === "true"
glo_mean_vtx_calib_post_proc_qc_enabled: !public
value: "false"
type: bool
label: "GLO Mean Vertex calib post-processing QC"
description: "Enable/disable QC node workflow for processing the Mean Vertex calibration objects. Deployed only if ITS present!"
widget: checkBox
panel: "QC_Nodes_Workflows"
index: 23
visibleif: $$qc_remote_enabled === "true"
glo_big_screen_qc_enabled: !public
value: "false"
type: bool
label: "QC Big Screen"
description: "Enable/disable QC Big Screen"
widget: checkBox
panel: "QC_Nodes_Workflows"
index: 24
visibleif: $$qc_remote_enabled === "true"
glo_data_size_qc_enabled: !public
value: "false"
type: bool
label: "QC Data Sizes"
description: "Enable/disable QC Data Sizes"
widget: checkBox
panel: "QC_Nodes_Workflows"
index: 25
visibleif: $$qc_remote_enabled === "true"
glo_release_validation_qc_enabled: !public
value: "false"
type: bool
label: "Release Validation"
description: "Enable/disable release validation"
widget: checkBox
panel: "QC_Nodes_Workflows"
index: 26
visibleif: $$qc_remote_enabled === "true"
###############################
# TRG Panel
###############################
trg_load_parameters: !public
value: "GLOBAL.pd"
type: string
label: "CTP Configuration"
description: "Configuration file for the TRG/CTP Global Run"
widget: comboBox
values:
- "GLOBAL.pd"
panel: TRG
index: 1
visibleif: $$trg_enabled === "true" && $$trg_global_run_enabled === "true"
trg_runtime_config_file: !public
value: ""
type: string
label: "LTU Configuration"
description: "configuration file for the LTU Standalone Run"
widget: editBox
panel: TRG
visibleif: $$trg_enabled === "true" && $$trg_global_run_enabled === "false"
index: 2
# !! Not used by the ctpd !!
# trg_run_mode: !public
# value: "none"
# type: string
# label: "TRG Start Run Trigger Mode"
# description: "config for the TRG Run Start"
# widget: dropDownBox
# panel: TRG
# values:
# - none
# - trig
# - cont
# trg_run_ph_bc: !public
# value: ""
# type: string
# label: "TRG Start Run Ph Bc"
# description: "BC-downscaled rate of physics triggers"
# widget: editBox
# panel: TRG
# trg_run_ph_rnd: !public
# value: ""
# type: string
# label: "TRG Start PH RND"
# description: "rate of physics triggers generated randomly"
# widget: editBox
# panel: TRG
###############################
# Logging Panel
###############################
infologger_severity: !public
value: info
type: string
label: "DPL log level"
description: "Minimum DPL logging severity which is sent to InfoLogger"
widget: dropDownBox