Warning, /detector_benchmarks/benchmarks/nhcal_sampling_fraction/config.yml is written in an unsupported language. File is not indexed.
0001 sim:nhcal_sampling_fraction:
0002 extends: .det_benchmark
0003 stage: simulate
0004 parallel:
0005 matrix:
0006 - ENERGY: ["0.5", "0.7","1.0", "2.0", "5.0", "10.0"]
0007 PARTICLE: ["pi-", "neutron", "e-"]
0008 script:
0009 - snakemake $SNAKEMAKE_FLAGS --cores $MAX_CORES_PER_JOB sim_output/nhcal_sampling_fraction/${PARTICLE}/Ekin${ENERGY}GeV/sim.edm4hep.root
0010
0011 bench:nhcal_sampling_fraction:
0012 extends: .det_benchmark
0013 stage: benchmarks
0014 needs:
0015 - "sim:nhcal_sampling_fraction"
0016 script:
0017 - snakemake $SNAKEMAKE_FLAGS --cores 1 results/nhcal_sampling_fraction/hist_sampf_vs_Ehit.pdf
0018
0019 collect_results:nhcal_sampling_fraction:
0020 extends: .det_benchmark
0021 stage: collect
0022 needs:
0023 - "bench:nhcal_sampling_fraction"
0024 script:
0025 - ls -lrht
0026 - mv results{,_save}/
0027 - snakemake $SNAKEMAKE_FLAGS --cores 1 --delete-all-output results/nhcal_sampling_fraction/hist_sampf_vs_Ehit.pdf
0028 - mv results{_save,}/
0029