Skip to content

Commit b6958b2

Browse files
committed
Revert "add TOF calib infos"
This reverts commit 02fc68b due to a runtime error in the TOF workflow. We'll put it back once the problems are solved.
1 parent 85a5a6f commit b6958b2

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

MC/bin/o2dpg_sim_workflow.py

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -562,18 +562,13 @@ def createRestDigiTask(name, det='ALLSMALLER'):
562562
workflow['stages'].append(TRDTRACKINGtask)
563563

564564
TOFRECOtask = createTask(name='tofmatch_'+str(tf), needs=[ITSTPCMATCHtask['name'], det_to_digitask["TOF"]['name']], tf=tf, cwd=timeframeworkdir, lab=["RECO"], mem='1500')
565-
TOFRECOtask['cmd'] = 'o2-tof-reco-workflow ' + getDPL_global_options(nosmallrate=False) + ' --calib-cluster'
566-
TOFRECOtask['cmd'] += ' | o2-tof-cluster-calib-workflow ' + getDPL_global_options(nosmallrate=False)
565+
TOFRECOtask['cmd'] = 'o2-tof-reco-workflow ' + getDPL_global_options(nosmallrate=False)
567566
workflow['stages'].append(TOFRECOtask)
568567

569568
TOFTPCMATCHERtask = createTask(name='toftpcmatch_'+str(tf), needs=[TOFRECOtask['name'], TPCRECOtask['name']], tf=tf, cwd=timeframeworkdir, lab=["RECO"], mem='1000')
570-
TOFTPCMATCHERtask['cmd'] = 'o2-tof-matcher-workflow ' + getDPL_global_options() + ' --output-type matching-info'
569+
TOFTPCMATCHERtask['cmd'] = 'o2-tof-matcher-workflow ' + getDPL_global_options()
571570
workflow['stages'].append(TOFTPCMATCHERtask)
572571

573-
TOFTPCMATCHERtaskCalib = createTask(name='tofitstpcmatch_'+str(tf), needs=[TOFRECOtask['name'], TPCRECOtask['name']], tf=tf, cwd=timeframeworkdir, lab=["RECO"], mem='1000')
574-
TOFTPCMATCHERtaskCalib['cmd'] = 'o2-tof-matcher-workflow ' + getDPL_global_options() + ' --output-type calib-info --track-sources ITS-TPC'
575-
workflow['stages'].append(TOFTPCMATCHERtaskCalib)
576-
577572
MFTRECOtask = createTask(name='mftreco_'+str(tf), needs=[det_to_digitask["MFT"]['name']], tf=tf, cwd=timeframeworkdir, lab=["RECO"], mem='1500')
578573
MFTRECOtask['cmd'] = 'o2-mft-reco-workflow ' + getDPL_global_options(nosmallrate=False)
579574
workflow['stages'].append(MFTRECOtask)

0 commit comments

Comments
 (0)