File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -650,8 +650,10 @@ def main():
650650 # needs to be handled as further below:
651651 energyarg = (" -eCM " + str (eCM )) if A1 == A2 else (" -eA " + str (eA ) + " -eB " + str (eB ))
652652 forwardargs += " -tf " + str (args .tf ) + " --sor " + str (effective_run_start ) + " --timestamp " + str (timestamp ) + " --production-offset " + str (prod_offset ) + " -run " + str (args .run_number ) + " --run-anchored --first-orbit " \
653- + str (GLOparams ["FirstOrbit" ]) + " --orbitsPerTF " + str (GLOparams ["OrbitsPerTF" ]) + " -col " + str (ColSystem ) + str (energyarg )
654- # the following options can be overwritten/influence from the outside
653+ + str (GLOparams ["FirstOrbit" ]) + " --orbitsPerTF " + str (GLOparams ["OrbitsPerTF" ]) + str (energyarg )
654+ # the following options can be overwritten/influenced from the outside
655+ if not '-col' in forwardargs :
656+ forwardargs += ' -col ' + ColSystem
655657 if not '--readoutDets' in forwardargs :
656658 forwardargs += ' --readoutDets ' + GLOparams ['detList' ]
657659 if not '-field' in forwardargs :
You can’t perform that action at this time.
0 commit comments