Skip to content
This repository has been archived by the owner on Dec 19, 2024. It is now read-only.

Commit

Permalink
Remove listing because xrootd doesn't support wildcards (#17)
Browse files Browse the repository at this point in the history
### Briefly, what does this PR introduce?
Remove listing because xrootd doesn't support wildcards

### What kind of change does this PR introduce?
- [ ] Bug fix (issue #__)
- [ ] New feature (issue #__)
- [ ] Documentation update
- [ ] Other: __

### Please check if this PR fulfills the following:
- [ ] Tests for the changes have been added
- [ ] Documentation has been added / updated
- [ ] Changes have been communicated to collaborators

### Does this PR introduce breaking changes? What changes might users
need to make to their code?

### Does this PR change default behavior?
  • Loading branch information
rahmans1 authored May 20, 2024
1 parent d69ff31 commit 2fff819
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions scripts/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,6 @@ mkdir -p ${RECO_TEMP}
if [ "${COPYFULL:-false}" == "true" ] ; then
xrdfs ${XRDWURL} mkdir -p ${XRDWBASE}/${FULL_DIR}
xrdcp --force --recursive ${FULL_TEMP}/${TASKNAME}.edm4hep.root ${XRDWURL}/${XRDWBASE}/${FULL_DIR}
xrdfs ${XRDWURL} ls -l ${XRDWBASE}/${FULL_DIR}/${TASKNAME}.edm4hep.root
fi

# Run eicrecon reconstruction
Expand All @@ -180,12 +179,10 @@ ls -al ${LOG_TEMP}/${TASKNAME}.*
if [ "${COPYRECO:-false}" == "true" ] ; then
xrdfs ${XRDWURL} mkdir -p ${XRDWBASE}/${RECO_DIR}
xrdcp --force --recursive ${RECO_TEMP}/${TASKNAME}*.edm4eic.root ${XRDWURL}/${XRDWBASE}/${RECO_DIR}
xrdfs ${XRDWURL} ls -l ${XRDWBASE}/${RECO_DIR}/${TASKNAME}*.edm4eic.root
fi
if [ "${COPYLOG:-false}" == "true" ] ; then
xrdfs ${XRDWURL} mkdir -p ${XRDWBASE}/${LOG_DIR}
xrdcp --force --recursive ${LOG_TEMP}/${TASKNAME}.* ${XRDWURL}/${XRDWBASE}/${LOG_DIR}
xrdfs ${XRDWURL} ls -l ${XRDWBASE}/${LOG_DIR}/${TASKNAME}.*
fi

# closeout
Expand Down

0 comments on commit 2fff819

Please sign in to comment.