Skip to content

Commit edeb27d

Browse files
committed
fix a problem in linking Hit files for FV0+FT0 digitization
1 parent 253fb11 commit edeb27d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MC/bin/o2dpg_sim_workflow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -680,7 +680,7 @@ def createRestDigiTask(name, det='ALLSMALLER'):
680680
tneeds = [ContextTask['name']]
681681
t = createTask(name="ft0fv0ctp_digi_" + str(tf), needs=tneeds,
682682
tf=tf, cwd=timeframeworkdir, lab=["DIGI","SMALLDIGI"], cpu='1')
683-
t['cmd'] = ('','ln -nfs ../bkg_Hits' + str(det) + '.root . ;')[doembedding]
683+
t['cmd'] = ('','ln -nfs ../bkg_HitsFT0.root . ; ln -nfs ../bkg_HitsFV0.root . ;')[doembedding]
684684
t['cmd'] += '${O2_ROOT}/bin/o2-sim-digitizer-workflow ' + getDPL_global_options() + ' -n ' + str(args.ns) + simsoption + ' --onlyDet FT0,FV0,CTP --interactionRate ' + str(INTRATE) + ' --incontext ' + str(CONTEXTFILE) + ' --disable-write-ini' + putConfigValuesNew()
685685
workflow['stages'].append(t)
686686
det_to_digitask["FT0"]=t

0 commit comments

Comments
 (0)