Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
prayagyadav committed Jan 4, 2024
2 parents 2bd4c21 + 064744b commit 0afb0d3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
Binary file modified Debug/condor_issue/__pycache__/Snip.cpython-310.pyc
Binary file not shown.
Binary file modified Debug/condor_issue/__pycache__/condor.cpython-310.pyc
Binary file not shown.
7 changes: 5 additions & 2 deletions Debug/condor_issue/astepahead.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ def buildFileset(dict , redirector):
"fnal": "root://cmsxrootd.fnal.gov//",
"infn": "root://xrootd-cms.infn.it//",
"wisc": "root://pubxrootd.hep.wisc.edu//",
"hdfs": "/hdfs"
"hdfs": "/hdfs",
"commonfs": "/commonfs"

}

Expand All @@ -83,6 +84,8 @@ def buildFileset(dict , redirector):
redirector_string = redirectors["wisc"]
elif (redirector=="hdfs") | (redirector==4):
redirector_string = redirectors["hdfs"]
elif (redirector=="commonfs") | (redirector==5):
redirector_string = redirectors["commonfs"]

temp = dict
output = {}
Expand Down Expand Up @@ -117,7 +120,7 @@ def getDataset(keymap, load=True, dict = None, files=None, begin=0, end=0, mode
]


runnerfileset = buildFileset(fileset_dict[keymap],"fnal")
runnerfileset = buildFileset(fileset_dict[keymap],"commonfs")
flat_list={}
flat_list[keymap] = []

Expand Down

0 comments on commit 0afb0d3

Please sign in to comment.