Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions MC/bin/o2dpg_sim_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -1101,7 +1101,7 @@ def createRestDigiTask(name, det='ALLSMALLER'):
det_to_digitask[det]=t

# detectors serving CTP need to be treated somewhat special since CTP needs
# these inputs at the same time --> still need to be made better
# these inputs at the same time --> still need to be made better.
tneeds = [ContextTask['name']]
if includeQED:
tneeds += [QED_task['name']]
Expand All @@ -1116,6 +1116,7 @@ def createRestDigiTask(name, det='ALLSMALLER'):
'--onlyDet FT0,FV0,EMC,CTP',
f'--interactionRate {INTRATE}',
f'--incontext {CONTEXTFILE}',
f'--store-ctp-lumi {CTPSCALER}',
'--disable-write-ini',
putConfigValues(listOfMainKeys=['EMCSimParam','FV0DigParam','FT0DigParam'], localCF={"DigiParams.seed" : str(TFSEED)}),
('--combine-devices','')[args.no_combine_dpl_devices],
Expand Down Expand Up @@ -1684,8 +1685,10 @@ def getDigiTaskName(det):
getDPL_global_options(bigshm=True),
'--sec-per-slot ' + scdaggreg_secperslot,
'--enable-ctp ',
'--enable-track-input',
'--output-dir ./',
'--output-type ' + scdaggreg_outputtype
'--output-type ' + scdaggreg_outputtype,
'--meta-output-dir /dev/null'
])
workflow['stages'].append(SCDAGGREGtask)

Expand Down
Loading