Skip to content

Commit 68cc088

Browse files
committed
Add MCH reco
1 parent 62e1a37 commit 68cc088

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
@@ -574,7 +574,11 @@ def createRestDigiTask(name, det='ALLSMALLER'):
574574
MFTRECOtask['cmd'] = 'o2-mft-reco-workflow ' + getDPL_global_options()
575575
workflow['stages'].append(MFTRECOtask)
576576

577-
pvfinderneeds = [ITSTPCMATCHtask['name'], FT0RECOtask['name'], TOFTPCMATCHERtask['name'], MFTRECOtask['name'], TRDTRACKINGtask['name']]
577+
MCHRECOtask = createTask(name='mchreco_'+str(tf), needs=[det_to_digitask["MCH"]['name']], tf=tf, cwd=timeframeworkdir, lab=["RECO"], mem='1500')
578+
MCHRECOtask['cmd'] = 'o2-mch-reco-workflow ' + getDPL_global_options()
579+
workflow['stages'].append(MCHRECOtask)
580+
581+
pvfinderneeds = [ITSTPCMATCHtask['name'], FT0RECOtask['name'], TOFTPCMATCHERtask['name'], MFTRECOtask['name'], MCHRECOtask['name'], TRDTRACKINGtask['name']]
578582
PVFINDERtask = createTask(name='pvfinder_'+str(tf), needs=pvfinderneeds, tf=tf, cwd=timeframeworkdir, lab=["RECO"], cpu=NWORKERS, mem='4000')
579583
PVFINDERtask['cmd'] = 'o2-primary-vertexing-workflow ' + getDPL_global_options()
580584
# PVFINDERtask['cmd'] += ' --vertexing-sources "ITS,ITS-TPC,ITS-TPC-TOF" --vetex-track-matching-sources "ITS,ITS-TPC,ITS-TPC-TOF"'

0 commit comments

Comments
 (0)