diff --git a/Snakefile b/Snakefile index 9b230cf9bd2302df459a5cb696c55fca5a084bbb..d645066a69052c7d36350c45d865c4c1ff718ea3 100644 --- a/Snakefile +++ b/Snakefile @@ -60,7 +60,7 @@ def get_remote_path(path): if use_s3: return f"s3https://eics3.sdcc.bnl.gov:9000/eictest/{path}" elif use_xrootd: - return f"root://dtn-eic.jlab.org//work/eic2/{path}" + return f"root://dtn-eic.jlab.org//volatile/eic/{path}" else: raise runtime_exception('Unexpected value for config["remote_provider"]: {config["remote_provider"]}') @@ -74,7 +74,7 @@ rule fetch_epic: cache: True retries: 3 shell: """ -xrdcp --debug 2 root://dtn-eic.jlab.org//work/eic2/{output.filepath} {output.filepath} +xrdcp --debug 2 root://dtn-eic.jlab.org//volatile/eic/{output.filepath} {output.filepath} """ if use_xrootd else """ mc cp S3/eictest/{output.filepath} {output.filepath} """ if use_s3 else f""" diff --git a/benchmarks/backgrounds/Snakefile b/benchmarks/backgrounds/Snakefile index 7322193804c0e7562c49421682d50b7e3c5b9085..b0e85a6d3af691371dbce5a64d369a3c4913e743 100644 --- a/benchmarks/backgrounds/Snakefile +++ b/benchmarks/backgrounds/Snakefile @@ -59,10 +59,10 @@ dask worker tcp://$DASK_SCHEDULER --nworkers {threads} --nthreads 1 2>{log.worke WORKER_PID=$! env \ MATPLOTLIBRC={input.matplotlibrc} \ -ELECTRON_BEAM_GAS_GEN=root://dtn-eic.jlab.org//work/eic2/EPIC/EVGEN/BACKGROUNDS/BEAMGAS/electron/GETaLM1.0.0-1.0/10GeV/GETaLM1.0.0-1.0_ElectronBeamGas_10GeV_foam_emin10keV_run001.hepmc3.tree.root \ +ELECTRON_BEAM_GAS_GEN=root://dtn-eic.jlab.org//volatile/eic/EPIC/EVGEN/BACKGROUNDS/BEAMGAS/electron/GETaLM1.0.0-1.0/10GeV/GETaLM1.0.0-1.0_ElectronBeamGas_10GeV_foam_emin10keV_run001.hepmc3.tree.root \ ELECTRON_BEAM_GAS_SIM=$(realpath {input.electron_beam_gas_sim}) \ PHYSICS_PROCESS_SIM=$(realpath {input.physics_signal_sim}) \ -PROTON_BEAM_GAS_GEN=root://dtn-eic.jlab.org//work/eic2/EPIC/EVGEN/BACKGROUNDS/BEAMGAS/proton/pythia8.306-1.0/100GeV/pythia8.306-1.0_ProtonBeamGas_100GeV_run001.hepmc3.tree.root \ +PROTON_BEAM_GAS_GEN=root://dtn-eic.jlab.org//volatile/eic/EPIC/EVGEN/BACKGROUNDS/BEAMGAS/proton/pythia8.306-1.0/100GeV/pythia8.306-1.0_ProtonBeamGas_100GeV_run001.hepmc3.tree.root \ PROTON_BEAM_GAS_SIM=$(realpath {input.proton_beam_gas_sim}) \ OUTPUT_DIR={output} \ python {input.script} diff --git a/benchmarks/backwards_ecal/Snakefile b/benchmarks/backwards_ecal/Snakefile index e81671b038a529117ed515e95f90bd1a018a089e..f51a8407e7a56fe18de6e0cfb28cb1464e0c41d0 100644 --- a/benchmarks/backwards_ecal/Snakefile +++ b/benchmarks/backwards_ecal/Snakefile @@ -84,7 +84,7 @@ if config.get("stream_from_xrootd", True) not in [False, "", "0", "false"]: params: search_path=lambda wildcards: f"EPIC/RECO/{wildcards.CAMPAIGN}/epic_craterlake/SINGLE/{wildcards.PARTICLE}/{wildcards.ENERGY}/{wildcards.PHASE_SPACE}/", shell: """ - xrdfs root://dtn-eic.jlab.org/ ls /work/eic2/{params.search_path} \ + xrdfs root://dtn-eic.jlab.org/ ls /volatile/eic/{params.search_path} \ | awk '{{ print "root://dtn-eic.jlab.org/"$1; }}' \ | sort \ > {output} @@ -100,8 +100,8 @@ else: params: search_path=lambda wildcards: f"EPIC/RECO/{wildcards.CAMPAIGN}/epic_craterlake/SINGLE/{wildcards.PARTICLE}/{wildcards.ENERGY}/{wildcards.PHASE_SPACE}/", shell: """ - xrdfs root://dtn-eic.jlab.org/ ls /work/eic2/{params.search_path} \ - | sed -e 's#^/work/eic2/##' \ + xrdfs root://dtn-eic.jlab.org/ ls /volatile/eic/{params.search_path} \ + | sed -e 's#^/volatile/eic/##' \ | sort \ > {output} if [ ! -s {output} ]; then diff --git a/benchmarks/tracking_performances_dis/Snakefile b/benchmarks/tracking_performances_dis/Snakefile index 414a7c86f96b8b0331b258fc32ee58fb5cc73b0b..7b8d74e18559449b6134906f2f4ee35748012343 100644 --- a/benchmarks/tracking_performances_dis/Snakefile +++ b/benchmarks/tracking_performances_dis/Snakefile @@ -36,7 +36,7 @@ ddsim \ -v WARNING \ --numberOfEvents {params.N_EVENTS} \ --compactFile $DETECTOR_PATH/{wildcards.DETECTOR_CONFIG}.xml \ - --inputFiles root://dtn-eic.jlab.org//work/eic2/EPIC/EVGEN/DIS/NC/{wildcards.EBEAM}x{wildcards.PBEAM}/minQ2={wildcards.MINQ2}/pythia8NCDIS_{wildcards.EBEAM}x{wildcards.PBEAM}_minQ2={wildcards.MINQ2}_beamEffects_xAngle=-0.025_hiDiv_vtxfix_{wildcards.INDEX}.hepmc3.tree.root \ + --inputFiles root://dtn-eic.jlab.org//volatile/eic/EPIC/EVGEN/DIS/NC/{wildcards.EBEAM}x{wildcards.PBEAM}/minQ2={wildcards.MINQ2}/pythia8NCDIS_{wildcards.EBEAM}x{wildcards.PBEAM}_minQ2={wildcards.MINQ2}_beamEffects_xAngle=-0.025_hiDiv_vtxfix_{wildcards.INDEX}.hepmc3.tree.root \ --outputFile {output} """