Skip to content
Snippets Groups Projects
Commit 900f9319 authored by Peter Onyisi's avatar Peter Onyisi
Browse files

Fix file update

parent 22c6f084
No related branches found
No related tags found
No related merge requests found
......@@ -23,8 +23,9 @@ def copyPlot(infname, outfname):
for objname in ['z_lumi']:
obj = fin.Get(objname)
if obj:
d = fout.Get('run_%d/GLOBAL/DQTGlobalWZFinder')
d.WriteTOjbect(obj)
d = fout.Get('run_%d/GLOBAL/DQTGlobalWZFinder' % run)
if d:
d.WriteTObject(obj)
fin.Close(); fout.Close()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment