Skip to content

Commit

Permalink
Bug fix when selecting TFs (#1829)
Browse files Browse the repository at this point in the history
  • Loading branch information
chiarazampolli authored Dec 3, 2024
1 parent 6e7e34a commit 3ad4520
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions DATA/production/configurations/asyncReco/setenv_extra.sh
Original file line number Diff line number Diff line change
Expand Up @@ -128,11 +128,12 @@ export ADD_EXTRA_WORKFLOW=
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
if [[ ! -z ${ALIEN_JDL_RUN_TIME_SPAN_FILE} ]]; 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 "
# the following option makes sense only if we have the previous
if [[ ${ALIEN_JDL_INVERT_IRFRAME_SELECTION} == 1 ]]; then
export ARGS_EXTRA_PROCESS_o2_ctf_reader_workflow+=" --invert-irframe-selection "
fi
fi

# other settings
Expand Down

0 comments on commit 3ad4520

Please sign in to comment.