Skip to content

Commit df8897f

Browse files
shahor02Benedikt Volkel
authored andcommitted
Fix passing some ConfigurableParams to sim_workflow
1 parent 0565639 commit df8897f

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

MC/bin/o2dpg_sim_workflow.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1010,7 +1010,7 @@ def getDigiTaskName(det):
10101010

10111011
ITSTPCMATCHtask=createTask(name='itstpcMatch_'+str(tf), needs=[TPCRECOtask['name'], ITSRECOtask['name'], FT0RECOtask['name']], tf=tf, cwd=timeframeworkdir, lab=["RECO"], mem='8000', relative_cpu=3/8)
10121012
ITSTPCMATCHtask['cmd'] = '${O2_ROOT}/bin/o2-tpcits-match-workflow ' + getDPL_global_options(bigshm=True) + ' --tpc-track-reader \"tpctracks.root\" --tpc-native-cluster-reader \"--infile tpc-native-clusters.root\" --use-ft0' \
1013-
+ putConfigValuesNew(['MFTClustererParam', 'ITSCATrackerParam', 'tpcitsMatch', 'TPCGasParam', 'TPCCorrMap', 'ITSClustererParam, GPU_rec_tpc, trackTuneParams'], {"NameConf.mDirMatLUT" : ".."}) \
1013+
+ putConfigValuesNew(['MFTClustererParam', 'ITSCATrackerParam', 'tpcitsMatch', 'TPCGasParam', 'TPCCorrMap', 'ITSClustererParam', 'GPU_rec_tpc', 'trackTuneParams', 'ft0tag'], {"NameConf.mDirMatLUT" : ".."}) \
10141014
+ tpc_corr_scaling_options
10151015
workflow['stages'].append(ITSTPCMATCHtask)
10161016

@@ -1026,6 +1026,7 @@ def getDigiTaskName(det):
10261026
'ITSCATrackerParam',
10271027
'trackTuneParams',
10281028
'GPU_rec_tpc',
1029+
'ft0tag',
10291030
'TPCGasParam',
10301031
'TPCCorrMap'], {"NameConf.mDirMatLUT" : ".."}) \
10311032
+ " --track-sources " + trd_track_sources \
@@ -1153,7 +1154,7 @@ def getDigiTaskName(det):
11531154

11541155
PVFINDERtask = createTask(name='pvfinder_'+str(tf), needs=pvfinderneeds, tf=tf, cwd=timeframeworkdir, lab=["RECO"], cpu=NWORKERS, mem='4000')
11551156
PVFINDERtask['cmd'] = '${O2_ROOT}/bin/o2-primary-vertexing-workflow ' \
1156-
+ getDPL_global_options() + putConfigValuesNew(['ITSAlpideParam','MFTAlpideParam', 'pvertexer', 'TPCGasParam', 'TPCCorrMap'], {"NameConf.mDirMatLUT" : ".."})
1157+
+ getDPL_global_options() + putConfigValuesNew(['ITSAlpideParam','MFTAlpideParam', 'pvertexer', 'TPCGasParam', 'TPCCorrMap', 'ft0tag'], {"NameConf.mDirMatLUT" : ".."})
11571158
PVFINDERtask['cmd'] += ' --vertexing-sources ' + pvfinder_sources + ' --vertex-track-matching-sources ' + pvfinder_matching_sources + (' --combine-source-devices','')[args.no_combine_dpl_devices]
11581159
PVFINDERtask['cmd'] += ('',' --disable-mc')[args.no_mc_labels]
11591160
workflow['stages'].append(PVFINDERtask)

0 commit comments

Comments
 (0)