Skip to content

Commit

Permalink
ZDC: Add configuration file PbPb, modify configuration file pp, add s…
Browse files Browse the repository at this point in the history
…election configuration file with Beamtype, reduce bin histograms.
  • Loading branch information
cpuggion84 committed Jun 7, 2024
1 parent 3212a61 commit 56bbd79
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 10 deletions.
25 changes: 16 additions & 9 deletions DATA/production/qc-async/zdc.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@
"name": "not_applicable"
},
"Activity": {
"number": "42",
"type": "2"
},
"monitoring": {
"url": "influxdb-unix:///tmp/telegraf.sock"
Expand All @@ -37,15 +35,23 @@
},
"taskParameters": {
"ADC": "3025;-100;12000",
"ADCZEM": "3025;-100;12000",
"ADCH": "1100;-100;1000",
"TDCT": "2400;-25;25",
"TDCT": "2400;-13.5;11.45",
"TDCA": "2050;-0.5;4099.5",
"TDCAH": "2000;-0.5;3999.5",
"ADCSUMvsTC": "605;-100;12000;605;-100;12000",
"ADCvsTDCT": "240;-25;25;605;-100;12000",
"TDCDIFF": "240;-25;25;240;-25;25",
"TDCAvsTDCT": "480;-25;25;500;-1;3999",
"TDCAvsTDCA": "500;-1;3999;500;-1;3999",
"TDCAH": "520;-20;500",
"TDCAZEM": "2050;-0.5;4099.5",
"ADCSUMvsTC": "121;-100;12000;121;-100;12000",
"ADCZEMvsADCZEM": "121;-100;12000;121;-100;12000",
"ADCZEMvsTC": "121;-100;12000;121;-100;12000",
"ADCvsTDCT": "120;-13.5;11.45;121;-100;12000",
"ADCZEMvsTDCT": "120;-13.5;11.45;121;-100;12000",
"TDCDIFF": "240;-27;22.90;240;-27;22.90",
"TDCAvsTDCT": "120;-13.5;11.45;125;-1;3999",
"TDCAZEMvsTDCT": "120;-13.5;11.45;125;-1;3999",
"TDCAvsTDCA": "125;-1;3999;125;-1;3999",
"TDCAZEMvsTDCAZEM": "125;-1;3999;125;-1;3999",
"TDCAZEMvsTDCA": "125;-1;3999;125;-1;3999",
"CENTR_ZNA": "200;-2;2;200;-2;2",
"CENTR_ZNC": "200;-2;2;200;-2;2",
"CENTR_ZPA": "2240;0;22.4",
Expand All @@ -55,3 +61,4 @@
}
}
}

8 changes: 7 additions & 1 deletion DATA/production/qc-workflow.sh
Original file line number Diff line number Diff line change
Expand Up @@ -176,14 +176,20 @@ elif [[ -z ${QC_JSON_FROM_OUTSIDE:-} ]]; then
[[ -z "${QC_JSON_FV0:-}" ]] && QC_JSON_FV0=$O2DPG_ROOT/DATA/production/qc-async/fv0.json
[[ -z "${QC_JSON_FDD:-}" ]] && QC_JSON_FDD=$O2DPG_ROOT/DATA/production/qc-async/fdd.json
[[ -z "${QC_JSON_MID:-}" ]] && QC_JSON_MID=$O2DPG_ROOT/DATA/production/qc-async/mid.json
[[ -z "${QC_JSON_ZDC:-}" ]] && has_processing_step ZDC_RECO && QC_JSON_ZDC=$O2DPG_ROOT/DATA/production/qc-async/zdc.json
if [[ -z "${QC_JSON_EMC:-}" ]]; then
if [[ "$BEAMTYPE" == "PbPb" ]]; then
QC_JSON_EMC=$O2DPG_ROOT/DATA/production/qc-async/emc_PbPb.json
else
QC_JSON_EMC=$O2DPG_ROOT/DATA/production/qc-async/emc.json
fi
fi
if [[ -z "${QC_JSON_ZDC:-}" ]] && has_processing_step ZDC_RECO; then
if [[ "$BEAMTYPE" == "PbPb" ]]; then
QC_JSON_ZDC=$O2DPG_ROOT/DATA/production/qc-async/zdcPbPb.json
else
QC_JSON_ZDC=$O2DPG_ROOT/DATA/production/qc-async/zdc.json
fi
fi
if has_detector_qc MCH && [[ -z "${QC_JSON_MCH:-}" ]]; then
add_QC_JSON MCH_DIGITS $O2DPG_ROOT/DATA/production/qc-async/mch-digits.json
if has_processing_step "MCH_RECO"; then
Expand Down

0 comments on commit 56bbd79

Please sign in to comment.