Skip to content

Commit

Permalink
Merge pull request #11336 from deguio/fixEvD_76
Browse files Browse the repository at this point in the history
adapt to the new merger logic
  • Loading branch information
cmsbuild committed Sep 18, 2015
2 parents 5d6fb10 + 70c384a commit 373a06e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Expand Up @@ -44,11 +44,11 @@

m = re.search(r"\((\w+)\)", str(source.runNumber))
runno = str(m.group(1))
outDir= '/fff/BU0/output/EvD/run'+runno
outDir= '/fff/BU0/output/EvD/run'+runno+'/streamEvDOutput2'

#create output directory
try:
os.mkdir(outDir)
os.makedirs(outDir)
except:
pass

Expand Down
4 changes: 2 additions & 2 deletions DQM/Integration/python/clients/visualization-live_cfg.py
Expand Up @@ -44,11 +44,11 @@

m = re.search(r"\((\w+)\)", str(source.runNumber))
runno = str(m.group(1))
outDir= '/fff/BU0/output/EvD/run'+runno
outDir= '/fff/BU0/output/EvD/run'+runno+'/streamEvDOutput'

#create output directory
try:
os.mkdir(outDir)
os.makedirs(outDir)
except:
pass

Expand Down

0 comments on commit 373a06e

Please sign in to comment.