Skip to content

Commit 5e1a959

Browse files
authored
MFT: Fixing the json selection (#533)
1 parent b21015a commit 5e1a959

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

DATA/production/qc-workflow.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ elif [[ -z $QC_JSON_FROM_OUTSIDE ]]; then
1111
if [[ $EPNSYNCMODE == 1 || "0$GEN_TOPO_LOAD_QC_JSON_FROM_CONSUL" == "01" ]]; then
1212
[[ -z "$QC_JSON_TPC" ]] && QC_JSON_TPC=consul://o2/components/qc/ANY/any/tpc-full-qcmn
1313
[[ -z "$QC_JSON_ITS" ]] && QC_JSON_ITS=consul://o2/components/qc/ANY/any/its-qcmn-epn-full
14-
[[ -z "$QC_JSON_MFT" ]] && QC_JSON_MFT=consul://o2/components/qc/ANY/any/mft-full-qcmn
15-
if has_detector MFT && has_processing_step MFT_RECO; then
16-
[[ -z "$QC_JSON_MFT" ]] && QC_JSON_MFT=consul://o2/components/qc/ANY/any/mft-track-full-qcmn
17-
else
18-
[[ -z "$QC_JSON_MFT" ]] && QC_JSON_MFT=consul://o2/components/qc/ANY/any/mft-full-qcmn
14+
if [[ -z "$QC_JSON_MFT" ]]; then
15+
if has_detector MFT && has_processing_step MFT_RECO; then
16+
QC_JSON_MFT=consul://o2/components/qc/ANY/any/mft-track-full-qcmn
17+
else
18+
QC_JSON_MFT=consul://o2/components/qc/ANY/any/mft-full-qcmn
19+
fi
1920
fi
20-
2121
if [[ -z "$QC_JSON_TOF" ]]; then
2222
if has_detector_flp_processing TOF; then
2323
QC_JSON_TOF=consul://o2/components/qc/ANY/any/tof-full-qcmn

0 commit comments

Comments
 (0)