Skip to content

Commit 0905134

Browse files
committed
add FDD and MID reco
1 parent 9d3835d commit 0905134

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

MC/bin/o2dpg_sim_workflow.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,15 @@ def createRestDigiTask(name, det='ALLSMALLER'):
578578
MCHRECOtask['cmd'] = 'o2-mch-reco-workflow ' + getDPL_global_options()
579579
workflow['stages'].append(MCHRECOtask)
580580

581-
pvfinderneeds = [ITSTPCMATCHtask['name'], FT0RECOtask['name'], TOFTPCMATCHERtask['name'], MFTRECOtask['name'], MCHRECOtask['name'], TRDTRACKINGtask['name']]
581+
MIDRECOtask = createTask(name='midreco_'+str(tf), needs=[det_to_digitask["MID"]['name']], tf=tf, cwd=timeframeworkdir, lab=["RECO"], mem='1500')
582+
MIDRECOtask['cmd'] = 'o2-mid-digits-reader-workflow | o2-mid-reco-workflow ' + getDPL_global_options()
583+
workflow['stages'].append(MIDRECOtask)
584+
585+
FDDRECOtask = createTask(name='fddreco_'+str(tf), needs=[det_to_digitask["FDD"]['name']], tf=tf, cwd=timeframeworkdir, lab=["RECO"], mem='1500')
586+
FDDRECOtask['cmd'] = 'o2-fdd-reco-workflow ' + getDPL_global_options()
587+
workflow['stages'].append(FDDRECOtask)
588+
589+
pvfinderneeds = [ITSTPCMATCHtask['name'], FT0RECOtask['name'], TOFTPCMATCHERtask['name'], MFTRECOtask['name'], MCHRECOtask['name'], TRDTRACKINGtask['name'], FDDRECOtask['name'], MIDRECOtask['name']]
582590
PVFINDERtask = createTask(name='pvfinder_'+str(tf), needs=pvfinderneeds, tf=tf, cwd=timeframeworkdir, lab=["RECO"], cpu=NWORKERS, mem='4000')
583591
PVFINDERtask['cmd'] = 'o2-primary-vertexing-workflow ' + getDPL_global_options()
584592
# 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)