Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions DATA/production/configurations/asyncReco/setenv_extra.sh
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,15 @@ if [[ $remappingITS == 1 ]] || [[ $remappingMFT == 1 ]]; then
REMAPPING=$REMAPPING\"
fi

# generic remapping string
if [[ -n "$ALIEN_JDL_REMAPPINGS" ]]; then
if [[ -n "$REMAPPING" ]]; then
REMAPPING="${REMAPPING::-1};$ALIEN_JDL_REMAPPINGS\""
else
REMAPPING="--condition-remap \"$ALIEN_JDL_REMAPPINGS\""
fi
fi

echo "Remapping = $REMAPPING"

# needed if we need more wf
Expand Down Expand Up @@ -352,6 +361,10 @@ elif [[ $ALIGNLEVEL == 1 ]]; then
CONFIG_EXTRA_PROCESS_o2_gpu_reco_workflow+="GPU_rec_tpc.dEdxClusterRejectionFlagMask=$ALIEN_JDL_TPCDEDXCLMASK;"
fi

if [[ -n "$ALIEN_JDL_TPCCLUSTERFILTER" ]]; then
CONFIG_EXTRA_PROCESS_o2_gpu_reco_workflow+="GPU_proc.tpcUseOldCPUDecoding=1;GPU_proc.tpcApplyClusterFilterOnCPU=$ALIEN_JDL_TPCCLUSTERFILTER;"
fi

#-------------------------------------- TPC corrections -----------------------------------------------
# we need to provide to TPC
# 1) interaction rate info (lumi) used for scaling or errors and possible of the corrections : INST_IR_FOR_TPC
Expand Down