We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68a8aa7 commit 8586190Copy full SHA for 8586190
1 file changed
MC/bin/o2dpg_sim_workflow.py
@@ -741,10 +741,10 @@ def getDigiTaskName(det):
741
# -----------
742
tpcreconeeds=[]
743
if not args.combine_tpc_clusterization:
744
- # We treat TPC clusterization in multiple (sector) steps in order to stay within the memory limit
745
- # We seem to be needing to ask for 2 sectors at least, otherwise there is a problem with the branch naming.
+ # We treat TPC clusterization in multiple (sector) steps in order to
+ # stay within the memory limit or to parallelize over sector from outside (not yet supported within cluster algo)
746
tpcclustertasks=[]
747
- sectorpertask=6
+ sectorpertask=18
748
for s in range(0,35,sectorpertask):
749
taskname = 'tpcclusterpart' + str((int)(s/sectorpertask)) + '_' + str(tf)
750
tpcclustertasks.append(taskname)
0 commit comments