From c2e429180a0ab943717d66f4af02dcc30ed30bc8 Mon Sep 17 00:00:00 2001 From: Robert Muenzer Date: Tue, 18 Jun 2024 10:26:47 +0200 Subject: [PATCH 1/2] Add min adc value for tpc-pedestal --- DATA/production/calib/tpc-pedestal.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/DATA/production/calib/tpc-pedestal.sh b/DATA/production/calib/tpc-pedestal.sh index 161d27d7a..3a1ca1071 100755 --- a/DATA/production/calib/tpc-pedestal.sh +++ b/DATA/production/calib/tpc-pedestal.sh @@ -19,6 +19,8 @@ HOST=localhost #QC_CONFIG="consul-json://alio2-cr1-hv-con01.cern.ch:8500/o2/components/qc/ANY/any/tpc-pedestal-calib-qcmn" QC_CONFIG="components/qc/ANY/any/tpc-pedestal-calib-qcmn" +CALIB_CONFIG="TPCCalibPedestal.ADCMin=20" + max_events=50 publish_after=400 @@ -37,7 +39,7 @@ fi WORKFLOW= add_W o2-dpl-raw-proxy "--dataspec \"$PROXY_INSPEC\" --inject-missing-data --channel-config \"name=readout-proxy,type=pull,method=connect,address=ipc://@tf-builder-pipe-0,transport=shmem,rateLogging=1\"" "" 0 -add_W o2-tpc-calib-pad-raw "--input-spec \"$CALIB_INSPEC\" --publish-after-tfs ${publish_after} --max-events ${max_events} --lanes 36" +add_W o2-tpc-calib-pad-raw "--input-spec \"$CALIB_INSPEC\" --configKeyValues \"${CALIB_CONFIG}\" --publish-after-tfs ${publish_after} --max-events ${max_events} --lanes 36" add_W o2-calibration-ccdb-populator-workflow "--ccdb-path \"http://o2-ccdb.internal\" " "" 0 add_QC_from_apricot "${QC_CONFIG}" "--local --host localhost" From 1d42d9fce462dabc4f1fc83b503e61317ccac825 Mon Sep 17 00:00:00 2001 From: Robert Muenzer Date: Tue, 18 Jun 2024 18:34:18 +0200 Subject: [PATCH 2/2] correct syntax --- DATA/production/calib/tpc-pedestal.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DATA/production/calib/tpc-pedestal.sh b/DATA/production/calib/tpc-pedestal.sh index 3a1ca1071..5c7d7e55f 100755 --- a/DATA/production/calib/tpc-pedestal.sh +++ b/DATA/production/calib/tpc-pedestal.sh @@ -39,7 +39,7 @@ fi WORKFLOW= add_W o2-dpl-raw-proxy "--dataspec \"$PROXY_INSPEC\" --inject-missing-data --channel-config \"name=readout-proxy,type=pull,method=connect,address=ipc://@tf-builder-pipe-0,transport=shmem,rateLogging=1\"" "" 0 -add_W o2-tpc-calib-pad-raw "--input-spec \"$CALIB_INSPEC\" --configKeyValues \"${CALIB_CONFIG}\" --publish-after-tfs ${publish_after} --max-events ${max_events} --lanes 36" +add_W o2-tpc-calib-pad-raw "--input-spec \"$CALIB_INSPEC\" --publish-after-tfs ${publish_after} --max-events ${max_events} --lanes 36" "${CALIB_CONFIG}" add_W o2-calibration-ccdb-populator-workflow "--ccdb-path \"http://o2-ccdb.internal\" " "" 0 add_QC_from_apricot "${QC_CONFIG}" "--local --host localhost"