Skip to content

Commit 211b2ae

Browse files
authored
[EMCAL-1118] Fixes in EMCAL pedestal run scripts (#1563)
- Fix multiprocessing setting in processor workflow - Attach QC to aggregator
1 parent addb388 commit 211b2ae

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

DATA/production/calib/emc-pedestal-aggregator.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,14 @@ if [[ $RUNTYPE == "SYNTHETIC" || "${GEN_TOPO_DEPLOYMENT_TYPE:-}" == "ALICE_STAGI
1616
CCDBPATH2="http://ccdb-test.cern.ch:8080"
1717
fi
1818

19+
QC_CONFIG="/o2/components/qc/ANY/any/emc-pedestal-qc"
20+
1921
WORKFLOW=
2022
add_W o2-dpl-raw-proxy "--proxy-name emc-pedestal-input-proxy --dataspec \"$PROXY_INSPEC\" --network-interface ib0 --channel-config \"name=emc-pedestal-input-proxy,method=bind,type=pull,rateLogging=1,transport=zeromq\"" "" 0
2123
add_W o2-calibration-emcal-pedestal-calib-workflow
2224
add_W o2-calibration-ccdb-populator-workflow "--ccdb-path=\"$CCDBPATH1\" --sspec-min 0 --sspec-max 0"
2325
add_W o2-calibration-ccdb-populator-workflow "--ccdb-path=\"$CCDBPATH2\" --sspec-min 1 --sspec-max 1 --name-extention dcs"
26+
add_QC_from_consul "${QC_CONFIG}"
2427
WORKFLOW+="o2-dpl-run $ARGS_ALL $GLOBALDPLOPT"
2528

2629
if [ $WORKFLOWMODE == "print" ]; then

DATA/production/calib/emc-pedestal-processing.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ PROXY_INSPEC="A:EMC/RAWDATA;dd:FLP/DISTSUBTIMEFRAME/0;eos:***/INFORMATION"
1010

1111
PROXY_OUTSPEC="downstream:EMC/PEDDATA/0"
1212

13-
[[ -z $NEMCPROCPIPELINES ]] && NEMCPROCPIPELINES=2
13+
[[ -z $NEMCPROCPIPELINES ]] && NEMCPROCPIPELINES=30
1414

1515
WORKFLOW=
1616
add_W o2-dpl-raw-proxy "--dataspec \"$PROXY_INSPEC\" --inject-missing-data --channel-config \"name=readout-proxy,type=pull,method=connect,address=ipc://@$INRAWCHANNAME,transport=shmem,rateLogging=1\"" "" 0
17-
add_W o2-calibration-emcal-pedestal-processor-workflow "--pipeline calibration-emcal-pedestal-processor-workflow:${NITSDECTPIPELINES}"
17+
add_W o2-calibration-emcal-pedestal-processor-workflow "--pipeline PedestalProcessor:${NEMCPROCPIPELINES}"
1818
add_W o2-dpl-output-proxy "--dataspec \"$PROXY_OUTSPEC\" --proxy-channel-name emc-pedestal-input-proxy --channel-config \"name=emc-pedestal-input-proxy,method=connect,type=push,transport=zeromq,rateLogging=1\"" "" 0
1919
WORKFLOW+="o2-dpl-run ${ARGS_ALL} ${GLOBALDPLOPT}"
2020

0 commit comments

Comments
 (0)