Skip to content

Commit 1ba9a73

Browse files
authored
fix detectorList argument for PbPb
In #2128, I introduced a bug where the detectorList argument did not have a separating space after it.
1 parent d0e1981 commit 1ba9a73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MC/bin/o2dpg_sim_workflow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -818,7 +818,7 @@ def getDPL_global_options(bigshm=False, ccdbbackend=True):
818818
+ ('', ' --timestamp ' + str(args.timestamp))[args.timestamp!=-1] + ' --run ' + str(args.run) \
819819
+ ' --seed ' + str(TFSEED) \
820820
+ ' -g extgen ' \
821-
+ ' --detectorList ' + args.detectorList \
821+
+ ' --detectorList ' + args.detectorList + ' ' \
822822
+ QEDCONFKEY
823823
QED_task['cmd'] += '; RC=$?; QEDXSecCheck=`grep xSectionQED qedgenparam.ini | sed \'s/xSectionQED=//\'`'
824824
QED_task['cmd'] += '; echo "CheckXSection ' + str(QEDXSecExpected[COLTYPE]) + ' = $QEDXSecCheck"; [[ ${RC} == 0 ]]'

0 commit comments

Comments
 (0)