From 8c755422056a99d0f9f59df59ba0226761ec854f Mon Sep 17 00:00:00 2001 From: miranov25 Date: Wed, 29 Jul 2026 10:51:47 +0200 Subject: [PATCH] TPC TimeSeries: propagate track selection cuts from ALIEN JDL MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add ALIEN_JDL variables for o2-tpc-time-series-workflow configuration: ALIEN_JDL_TPCTIMESERIESMINMOMENTUM → TPCTIMESERIES_MIN_MOMENTUM ALIEN_JDL_TPCTIMESERIESMINCLUSTER → TPCTIMESERIES_MIN_CLUSTER ALIEN_JDL_TPCTIMESERIESMAXTGL → TPCTIMESERIES_MAX_TGL ALIEN_JDL_TPCTIMESERIESMULTMAX → TPCTIMESERIES_MULT_MAX Companion to AliceO2 calib-workflow.sh change. --- .../configurations/asyncReco/setenv_extra.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/DATA/production/configurations/asyncReco/setenv_extra.sh b/DATA/production/configurations/asyncReco/setenv_extra.sh index eb1f1bcd1..10c595455 100644 --- a/DATA/production/configurations/asyncReco/setenv_extra.sh +++ b/DATA/production/configurations/asyncReco/setenv_extra.sh @@ -785,6 +785,18 @@ if [[ $ADD_CALIB == "1" ]]; then if [[ -n $ALIEN_JDL_SAMPLINGFACTORTIMESERIES ]]; then export CALIB_ASYNC_SAMPLINGFACTORTIMESERIES=$ALIEN_JDL_SAMPLINGFACTORTIMESERIES fi + if [[ -n $ALIEN_JDL_TPCTIMESERIESMINMOMENTUM ]]; then + export TPCTIMESERIES_MIN_MOMENTUM=$ALIEN_JDL_TPCTIMESERIESMINMOMENTUM + fi + if [[ -n $ALIEN_JDL_TPCTIMESERIESMINCLUSTER ]]; then + export TPCTIMESERIES_MIN_CLUSTER=$ALIEN_JDL_TPCTIMESERIESMINCLUSTER + fi + if [[ -n $ALIEN_JDL_TPCTIMESERIESMAXTGL ]]; then + export TPCTIMESERIES_MAX_TGL=$ALIEN_JDL_TPCTIMESERIESMAXTGL + fi + if [[ -n $ALIEN_JDL_TPCTIMESERIESMULTMAX ]]; then + export TPCTIMESERIES_MULT_MAX=$ALIEN_JDL_TPCTIMESERIESMULTMAX + fi fi if [[ $ALIEN_JDL_DOUPLOADSLOCALLY == 1 ]]; then export CCDB_POPULATOR_UPLOAD_PATH="file://$PWD"