Skip to content
Snippets Groups Projects
Commit a3f423c8 authored by James Alexander Clark PhD's avatar James Alexander Clark PhD
Browse files

adding job index as suffix to working directory to guarentee uniqueness for...

adding job index as suffix to working directory to guarentee uniqueness for (e.g.) review tests and repeated injections
parent 0f664d5a
No related branches found
No related tags found
No related merge requests found
......@@ -814,7 +814,8 @@ for t,trigger in enumerate(trigger_list.triggers):
# Make output directory for this trigger
outputDir = 'trigtime_' + str('%.9f'%trigger.trigger_time) + '_' + \
str(float(trigger.hl_time_lag)) + '_' +\
str(float(trigger.hv_time_lag)) #+ str(uuid.uuid4())
str(float(trigger.hv_time_lag)) + '_' + str(t)
#str(float(trigger.hv_time_lag)) #+ str(uuid.uuid4())
if not os.path.exists(outputDir): os.makedirs(outputDir)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment