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=argparse.ArgumentParser(description='Creates an O2DPG simulation workflow, anchored to a given LHC run. The workflows are time anchored at regular positions within a run as a function of production size, split-id and cycle.')
306
347
@@ -312,6 +353,7 @@ def main():
312
353
parser.add_argument("-tf", type=int, help="number of timeframes per job", default=1)
313
354
parser.add_argument("--ccdb-IRate", type=bool, help="whether to try fetching IRate from CCDB/CTP", default=True)
314
355
parser.add_argument("--trig-eff", type=float, dest="trig_eff", help="Trigger eff needed for IR", default=-1.0)
356
+
parser.add_argument("--run-time-span-file", type=str, dest="run_span_file", help="Run-time-span-file for exclusions of timestamps (bad data periods etc.)", default="")
315
357
parser.add_argument('forward', nargs=argparse.REMAINDER) # forward args passed to actual workflow creation
316
358
args=parser.parse_args()
317
359
print (args)
@@ -329,6 +371,12 @@ def main():
329
371
330
372
# determine timestamp, and production offset for the final MC job to run
0 commit comments