@@ -496,13 +496,18 @@ def createRestDigiTask(name, det='ALLSMALLER'):
496496 workflow ['stages' ].append (TRDTRACKINGtask )
497497
498498 TOFRECOtask = createTask (name = 'tofmatch_' + str (tf ), needs = [ITSTPCMATCHtask ['name' ], det_to_digitask ["TOF" ]['name' ]], tf = tf , cwd = timeframeworkdir , lab = ["RECO" ], mem = '1500' )
499- TOFRECOtask ['cmd' ] = 'o2-tof-reco-workflow ' + getDPL_global_options (nosmallrate = False )
499+ TOFRECOtask ['cmd' ] = 'o2-tof-reco-workflow ' + getDPL_global_options (nosmallrate = False ) + ' --calib-cluster'
500+ TOFRECOtask ['cmd' ] += ' | o2-tof-cluster-calib-workflow ' + getDPL_global_options (nosmallrate = False )
500501 workflow ['stages' ].append (TOFRECOtask )
501502
502503 TOFTPCMATCHERtask = createTask (name = 'toftpcmatch_' + str (tf ), needs = [TOFRECOtask ['name' ], TPCRECOtask ['name' ]], tf = tf , cwd = timeframeworkdir , lab = ["RECO" ], mem = '1000' )
503- TOFTPCMATCHERtask ['cmd' ] = 'o2-tof-matcher-workflow ' + getDPL_global_options ()
504+ TOFTPCMATCHERtask ['cmd' ] = 'o2-tof-matcher-workflow ' + getDPL_global_options () + ' --output-type matching-info'
504505 workflow ['stages' ].append (TOFTPCMATCHERtask )
505506
507+ TOFTPCMATCHERtaskCalib = createTask (name = 'tofitstpcmatch_' + str (tf ), needs = [TOFRECOtask ['name' ], TPCRECOtask ['name' ]], tf = tf , cwd = timeframeworkdir , lab = ["RECO" ], mem = '1000' )
508+ TOFTPCMATCHERtaskCalib ['cmd' ] = 'o2-tof-matcher-workflow ' + getDPL_global_options () + ' --output-type calib-info --track-sources ITS-TPC'
509+ workflow ['stages' ].append (TOFTPCMATCHERtaskCalib )
510+
506511 MFTRECOtask = createTask (name = 'mftreco_' + str (tf ), needs = [det_to_digitask ["MFT" ]['name' ]], tf = tf , cwd = timeframeworkdir , lab = ["RECO" ], mem = '1500' )
507512 MFTRECOtask ['cmd' ] = 'o2-mft-reco-workflow ' + getDPL_global_options (nosmallrate = False )
508513 workflow ['stages' ].append (MFTRECOtask )
0 commit comments