Skip to content

Commit 0129de1

Browse files
committed
add MFT reco - now needed by AOD
1 parent 72a1dc1 commit 0129de1

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

MC/bin/o2dpg_sim_workflow.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -455,8 +455,14 @@ def createRestDigiTask(name, det='ALLSMALLER'):
455455
TOFTPCMATCHERtask['cmd'] = 'o2-tof-matcher-tpc ' + getDPL_global_options()
456456
workflow['stages'].append(TOFTPCMATCHERtask)
457457

458-
PVFINDERtask = createTask(name='pvfinder_'+str(tf), needs=[ITSTPCMATCHtask['name'], FT0RECOtask['name'], TOFTPCMATCHERtask['name']], tf=tf, cwd=timeframeworkdir, lab=["RECO"], cpu='8', mem='4000')
458+
MFTRECOtask = createTask(name='mftreco_'+str(tf), needs=[det_to_digitask["MFT"]['name']], tf=tf, cwd=timeframeworkdir, lab=["RECO"])
459+
MFTRECOtask['cmd'] = 'o2-mft-reco-workflow ' + getDPL_global_options(nosmallrate=False)
460+
workflow['stages'].append(MFTRECOtask)
461+
462+
pvfinderneeds = [ITSTPCMATCHtask['name'], FT0RECOtask['name'], TOFTPCMATCHERtask['name'], MFTRECOtask['name']]
463+
PVFINDERtask = createTask(name='pvfinder_'+str(tf), needs=pvfinderneeds, tf=tf, cwd=timeframeworkdir, lab=["RECO"], cpu='8', mem='4000')
459464
PVFINDERtask['cmd'] = 'o2-primary-vertexing-workflow ' + getDPL_global_options(nosmallrate=False)
465+
# PVFINDERtask['cmd'] += ' --vertexing-sources "ITS,ITS-TPC,ITS-TPC-TOF" --vetex-track-matching-sources "ITS,ITS-TPC,ITS-TPC-TOF"'
460466
workflow['stages'].append(PVFINDERtask)
461467

462468
# -----------

0 commit comments

Comments
 (0)