You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parser.add_argument('forward', nargs=argparse.REMAINDER) # forward args passed to actual workflow creation
316
317
args=parser.parse_args()
317
318
print (args)
@@ -398,8 +399,10 @@ def main():
398
399
# we finally pass forward to the unanchored MC workflow creation
399
400
# TODO: this needs to be done in a pythonic way clearly
400
401
# NOTE: forwardargs can - in principle - contain some of the arguments that are appended here. However, the last passed argument wins, so they would be overwritten.
echo_error "Problem during CCDB prefetching of ${CCDBOBJECTS_IDEAL_MC}. Exiting."
245
+
exit${CCDB_RC}
246
+
fi
245
247
fi
246
248
247
249
# TODO This can potentially be removed or if needed, should be taken over by o2dpg_sim_workflow_anchored.py and O2_dpg_workflow_runner.py
248
-
echo"run with echo in pipe"|${O2_ROOT}/bin/o2-create-aligned-geometry-workflow --configKeyValues "HBFUtils.startTime=${TIMESTAMP}" --condition-remap=file://${ALICEO2_CCDB_LOCALCACHE}=ITS/Calib/Align -b --run
250
+
if [ "${ENABLE_PARALLEL_WORLD}"=="0" ];then
251
+
echo"run with echo in pipe"|${O2_ROOT}/bin/o2-create-aligned-geometry-workflow --configKeyValues "HBFUtils.startTime=${TIMESTAMP}" --condition-remap=file://${ALICEO2_CCDB_LOCALCACHE}=ITS/Calib/Align -b --run
252
+
else
253
+
echo"run with echo in pipe"|${O2_ROOT}/bin/o2-create-aligned-geometry-workflow --configKeyValues "HBFUtils.startTime=${TIMESTAMP}" -b --run
0 commit comments