Skip to content

Commit baf36c7

Browse files
committed
Integrate FV0 workflow
1 parent 9f973cf commit baf36c7

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
@@ -607,6 +607,10 @@ def createRestDigiTask(name, det='ALLSMALLER'):
607607
FDDRECOtask['cmd'] = 'o2-fdd-reco-workflow ' + getDPL_global_options()
608608
workflow['stages'].append(FDDRECOtask)
609609

610+
FV0RECOtask = createTask(name='fv0reco_'+str(tf), needs=[det_to_digitask["FV0"]['name']], tf=tf, cwd=timeframeworkdir, lab=["RECO"], mem='1500')
611+
FV0RECOtask['cmd'] = 'o2-fv0-reco-workflow ' + getDPL_global_options()
612+
workflow['stages'].append(FV0RECOtask)
613+
610614
pvfinderneeds = [ITSTPCMATCHtask['name'], FT0RECOtask['name'], TOFTPCMATCHERtask['name'], MFTRECOtask['name'], MCHRECOtask['name'], TRDTRACKINGtask['name'], FDDRECOtask['name'], MIDRECOtask['name']]
611615
PVFINDERtask = createTask(name='pvfinder_'+str(tf), needs=pvfinderneeds, tf=tf, cwd=timeframeworkdir, lab=["RECO"], cpu=NWORKERS, mem='4000')
612616
PVFINDERtask['cmd'] = 'o2-primary-vertexing-workflow ' + getDPL_global_options()
@@ -671,7 +675,7 @@ def createRestDigiTask(name, det='ALLSMALLER'):
671675
# -----------
672676
# produce AOD
673677
# -----------
674-
aodneeds = [PVFINDERtask['name'], SVFINDERtask['name'], TOFRECOtask['name'], TRDTRACKINGtask['name']]
678+
aodneeds = [PVFINDERtask['name'], SVFINDERtask['name'], TOFRECOtask['name'], TRDTRACKINGtask['name'], FV0RECOtask['name']]
675679
if usebkgcache:
676680
aodneeds += [ BKG_KINEDOWNLOADER_TASK['name'] ]
677681

0 commit comments

Comments
 (0)