Skip to content

Commit 9bee255

Browse files
committed
Add conditionally ITS and MFT deadmap builders to dpl-workflow.sh
1 parent ff4d2d5 commit 9bee255

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

Detectors/ITSMFT/common/workflow/src/deadmap-builder-workflow.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ void customize(std::vector<o2::framework::ConfigParamSpec>& workflowOptions)
2222
ConfigParamSpec{"runmft", VariantType::Bool, false, {"Expect MFT data"}},
2323
ConfigParamSpec{"source", VariantType::String, "chipsstatus", {"Loop over: digits, clusters or chipsstatus"}},
2424
ConfigParamSpec{"configKeyValues", VariantType::String, "", {"Semicolon separated key=value strings"}}};
25-
25+
2626
std::swap(workflowOptions, options);
2727
}
2828

prodtests/full-system-test/dpl-workflow.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -588,6 +588,11 @@ workflow_has_parameter GPU_DISPLAY && [[ $NUMAID == 0 ]] && add_W o2-gpu-display
588588
AODPROD_OPT+=" $STRTRACKING "
589589
workflow_has_parameter AOD && [[ ! -z "$AOD_INPUT" ]] && add_W o2-aod-producer-workflow "$AODPROD_OPT --info-sources $AOD_INPUT $DISABLE_ROOT_INPUT --aod-writer-keep dangling --aod-writer-resfile \"AO2D\" --aod-writer-resmode UPDATE $DISABLE_MC --pipeline $(get_N aod-producer-workflow AOD REST 1 AODPROD)"
590590

591+
# extra workflows in case we want to extra ITS/MFT info for dead channel maps to then go to CCDB for MC
592+
[[ $ALIEN_JDL_PROCESSITSDEADMAP == 1 ]] && has_detector ITS && add_W o2-itsmft-deadmap-builder-workflow " --local-output --output-dir . --source clusters --tf-sampling 1000"
593+
[[ $ALIEN_JDL_PROCESSMFTDEADMAP == 1 ]] && has_detector MFT && add_W o2-itsmft-deadmap-builder-workflow " --runmft --local-output --output-dir . --source clusters --tf-sampling 1000"
594+
595+
591596
# ---------------------------------------------------------------------------------------------------------------------
592597
# Quality Control
593598
workflow_has_parameter QC && { source $O2DPG_ROOT/DATA/production/qc-workflow.sh; [[ $? != 0 ]] && echo "qc-workflow.sh failed" 1>&2 && exit 1; }

0 commit comments

Comments
 (0)