Skip to content

Commit

Permalink
Merge pull request #31562 from smuzaffar/cleanup-cmsLHEtoEOSManager
Browse files Browse the repository at this point in the history
cleanup: avoid duplicate EOS server names
  • Loading branch information
cmsbuild committed Sep 24, 2020
2 parents 9bad3b1 + faf0167 commit 3717533
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions GeneratorInterface/LHEInterface/scripts/cmsLHEtoEOSManager.py
Expand Up @@ -11,10 +11,10 @@
import re

defaultEOSRootPath = '/eos/cms/store/lhe'
defaultEOSLoadPath = 'root://eoscms/'
defaultEOSlistCommand = 'xrdfs root://eoscms.cern.ch ls '
defaultEOSmkdirCommand = 'xrdfs root://eoscms.cern.ch mkdir '
defaultEOSfeCommand = 'xrdfs root://eoscms.cern.ch stat -q IsReadable '
defaultEOSLoadPath = 'root://eoscms.cern.ch/'
defaultEOSlistCommand = 'xrdfs '+defaultEOSLoadPath+' ls '
defaultEOSmkdirCommand = 'xrdfs '+defaultEOSLoadPath+' mkdir '
defaultEOSfeCommand = 'xrdfs '+defaultEOSLoadPath+' stat -q IsReadable '
defaultEOScpCommand = 'xrdcp -np '

def findXrdDir(theDirRecord):
Expand Down

0 comments on commit 3717533

Please sign in to comment.