Skip to content

Commit

Permalink
Update Snakefile
Browse files Browse the repository at this point in the history
  • Loading branch information
khushi-singla-21 authored Oct 15, 2024
1 parent 51f3b65 commit fdcee2e
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions benchmarks/dis/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,20 @@ root -l -b -q '{input.script}+("{input.config}")'
"""


rule dis_analysis_vertexing:
input:
script="benchmarks/dis/analysis/vertexing.cxx",
script_compiled=ROOT_BUILD_DIR_PREFIX + "benchmarks/dis/analysis/vertexing_cxx.so",
data="reco/{DETECTOR_CONFIG}/pythia8NCDIS_{EBEAM}x{PBEAM}_minQ2={MINQ2}_beamEffects_xAngle=-0.025_hiDiv_1.edm4eic.root",
config="results/{DETECTOR_CONFIG}/dis/{EBEAM}on{PBEAM}/minQ2={MINQ2}/config.json",
output:
results_path=directory("results/{DETECTOR_CONFIG}/dis/{EBEAM}on{PBEAM}/minQ2={MINQ2}/vertexing"),
shell: """
mkdir {output.results_path}
root -l -b -q '{input.script}+("{input.config}")'
"""


rule dis_analysis_jets:
input:
script="benchmarks/dis/analysis/jets.cxx",
Expand Down

0 comments on commit fdcee2e

Please sign in to comment.