Skip to content

Commit e01054c

Browse files
authored
Include TOF-TPC matching in workflow
1 parent b0f1077 commit e01054c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

MC/bin/o2dpg_sim_workflow.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,11 @@ def createRestDigiTask(name):
298298
TOFRECOtask['cmd'] = 'o2-tof-reco-workflow ' + getDPL_global_options()
299299
workflow['stages'].append(TOFRECOtask)
300300

301-
PVFINDERtask = createTask(name='pvfinder_'+str(tf), needs=[ITSTPCMATCHtask['name'], FT0RECOtask['name']], tf=tf, cwd=timeframeworkdir, lab=["RECO"], cpu='4')
301+
TOFTPCMATCHERtask = createTask(name='toftpcmatch_'+str(tf), needs=[TOFRECOtask['name'], TPCRECOtask['name']], tf=tf, cwd=timeframeworkdir, lab=["RECO"])
302+
TOFTPCMATCHERtask['cmd'] = 'o2-tof-matcher-tpc ' + getDPL_global_options()
303+
workflow['stages'].append(TOFTPCMATCHERtask)
304+
305+
PVFINDERtask = createTask(name='pvfinder_'+str(tf), needs=[ITSTPCMATCHtask['name'], FT0RECOtask['name'], TOFTPCMATCHERtask['name']], tf=tf, cwd=timeframeworkdir, lab=["RECO"], cpu='4')
302306
PVFINDERtask['cmd'] = 'o2-primary-vertexing-workflow ' + getDPL_global_options()
303307
workflow['stages'].append(PVFINDERtask)
304308

0 commit comments

Comments
 (0)