File tree Expand file tree Collapse file tree
DATA/production/configurations/asyncReco Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,6 +12,11 @@ if [[ $ALIEN_JDL_USEGPUS != 1 ]]; then
1212 export DPL_DEFAULT_PIPELINE_LENGTH=16
1313fi
1414
15+ # check if this is a production on skimmed data
16+ if grep -q /skimmed/ wn.xml ; then
17+ export ON_SKIMMED_DATA=1;
18+ fi
19+
1520# detector list
1621if [[ -n $ALIEN_JDL_WORKFLOWDETECTORS ]]; then
1722 export WORKFLOW_DETECTORS=$ALIEN_JDL_WORKFLOWDETECTORS
@@ -561,7 +566,13 @@ if [[ $ALIEN_JDL_EXTRACTTIMESERIES == 1 ]]; then
561566 if [[ ! -z " $ALIEN_JDL_ENABLEUNBINNEDTIMESERIES " ]]; then
562567 export ARGS_EXTRA_PROCESS_o2_tpc_time_series_workflow=" $ARGS_EXTRA_PROCESS_o2_tpc_time_series_workflow --enable-unbinned-root-output --sample-unbinned-tsallis --threads 1"
563568 fi
564- if [[ ! -z " $ALIEN_JDL_SAMPLINGFACTORTIMESERIES " ]]; then
569+ if [[ $ON_SKIMMED_DATA == 1]] || [[ ! -z " $ALIEN_JDL_SAMPLINGFACTORTIMESERIES " ]] ; then
570+ if [[ $ON_SKIMMED_DATA == 1]] ; then
571+ SAMPLINGFACTORTIMESERIES=0.1f
572+ fi
573+ if [[ ! -z " $ALIEN_JDL_SAMPLINGFACTORTIMESERIES " ]]; then # this takes priority
574+ export SAMPLINGFACTORTIMESERIES=${ALIEN_JDL_SAMPLINGFACTORTIMESERIES}
575+ fi
565576 export ARGS_EXTRA_PROCESS_o2_tpc_time_series_workflow=" $ARGS_EXTRA_PROCESS_o2_tpc_time_series_workflow --sampling-factor ${ALIEN_JDL_SAMPLINGFACTORTIMESERIES} "
566577 fi
567578fi
You can’t perform that action at this time.
0 commit comments