From 8cd2511f9f6cc6291bc48ce621494ff45cdbb0bb Mon Sep 17 00:00:00 2001 From: Chiara Zampolli Date: Tue, 3 Dec 2024 11:13:19 +0100 Subject: [PATCH] Possibility to apply TF selection in async reco --- .../configurations/asyncReco/setenv_extra.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/DATA/production/configurations/asyncReco/setenv_extra.sh b/DATA/production/configurations/asyncReco/setenv_extra.sh index 56a473d53..c12945115 100644 --- a/DATA/production/configurations/asyncReco/setenv_extra.sh +++ b/DATA/production/configurations/asyncReco/setenv_extra.sh @@ -126,6 +126,16 @@ export ADD_EXTRA_WORKFLOW= # other ad-hoc settings for CTF reader export ARGS_EXTRA_PROCESS_o2_ctf_reader_workflow+=" --allow-missing-detectors $REMAPPING" + +# possibility to only process some TFs +if [[ -z ${ALIEN_JDL_RUN_TIME_SPAN_FILE+x} ]]; then + export ARGS_EXTRA_PROCESS_o2_ctf_reader_workflow+=" --run-time-span-file $ALIEN_JDL_RUN_TIME_SPAN_FILE " +fi +if [[ ${ALIEN_JDL_INVERT_IRFRAME_SELECTION} == 1 ]]; then + export ARGS_EXTRA_PROCESS_o2_ctf_reader_workflow+=" --invert-irframe-selection " +fi + +# other settings echo RUN = $RUNNUMBER if [[ $RUNNUMBER -ge 521889 ]]; then export ARGS_EXTRA_PROCESS_o2_ctf_reader_workflow+=" --its-digits --mft-digits"