From 45d83752f89dd59ad93c4eed264fc9b5caaf22ee Mon Sep 17 00:00:00 2001 From: Dmitry Kalinkin Date: Sun, 28 Jul 2024 00:01:00 -0400 Subject: [PATCH] ecal_gaps: use DETECTOR_CONFIG from the wildcard in eicrecon (#38) --- benchmarks/ecal_gaps/Snakefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/benchmarks/ecal_gaps/Snakefile b/benchmarks/ecal_gaps/Snakefile index 7046eb60..91ffa7c2 100644 --- a/benchmarks/ecal_gaps/Snakefile +++ b/benchmarks/ecal_gaps/Snakefile @@ -41,7 +41,8 @@ rule ecal_gaps_recon: wildcard_constraints: INDEX="\d{4}", shell: """ -eicrecon {input} -Ppodio:output_file={output} \ +env DETECTOR_CONFIG={wildcards.DETECTOR_CONFIG} \ + eicrecon {input} -Ppodio:output_file={output} \ -Ppodio:output_include_collections=EcalEndcapNRecHits,EcalBarrelScFiRecHits,EcalBarrelImagingRecHits,EcalEndcapPRecHits,MCParticles """