Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
physics_benchmarks
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EIC
benchmarks
physics_benchmarks
Commits
e245ba64
Commit
e245ba64
authored
7 months ago
by
Dmitry Kalinkin
Browse files
Options
Downloads
Patches
Plain Diff
lambda/Snakefile: adjust output paths, don't upload edm4hep files to artifacts
parent
7df12ae2
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
benchmarks/lambda/Snakefile
+7
-7
7 additions, 7 deletions
benchmarks/lambda/Snakefile
benchmarks/lambda/analysis/lambda_plots.py
+1
-1
1 addition, 1 deletion
benchmarks/lambda/analysis/lambda_plots.py
benchmarks/lambda/config.yml
+10
-4
10 additions, 4 deletions
benchmarks/lambda/config.yml
with
18 additions
and
12 deletions
benchmarks/lambda/Snakefile
+
7
−
7
View file @
e245ba64
...
...
@@ -4,7 +4,7 @@ rule lambda_generate:
params:
NEVENTS_GEN=100000,
output:
GEN_FILE="
results
/lambda/lambda_decay_{P}GeV.hepmc"
GEN_FILE="
sim_output
/lambda/lambda_decay_{P}GeV.hepmc"
shell:
"""
mkdir -p results/lambda
...
...
@@ -13,11 +13,11 @@ root -l -b -q '{input.script}({params.NEVENTS_GEN},0,"{output.GEN_FILE}",{wildca
rule lambda_simulate:
input:
GEN_FILE="
results
/lambda/lambda_decay_{P}GeV.hepmc"
GEN_FILE="
sim_output
/lambda/lambda_decay_{P}GeV.hepmc"
params:
PHYSICS_LIST="FTFP_BERT"
output:
SIM_FILE="
results
/lambda/{DETECTOR_CONFIG}_sim_lambda_dec_{P}GeV.edm4hep.root"
SIM_FILE="
sim_output
/lambda/{DETECTOR_CONFIG}_sim_lambda_dec_{P}GeV.edm4hep.root"
shell:
"""
if [[ {wildcards.P} -gt 225 ]]; then
...
...
@@ -36,9 +36,9 @@ npsim \
rule lambda_recon:
input:
SIM_FILE="
results
/lambda/{DETECTOR_CONFIG}_sim_lambda_dec_{P}GeV.edm4hep.root"
SIM_FILE="
sim_output
/lambda/{DETECTOR_CONFIG}_sim_lambda_dec_{P}GeV.edm4hep.root"
output:
REC_FILE="
results
/lambda/{DETECTOR_CONFIG}_rec_lambda_dec_{P}GeV.edm4hep.root"
REC_FILE="
sim_output
/lambda/{DETECTOR_CONFIG}_rec_lambda_dec_{P}GeV.edm4hep.root"
shell:
"""
if [[ {wildcards.P} -gt 225 ]]; then
...
...
@@ -51,12 +51,12 @@ eicrecon {input.SIM_FILE} -Ppodio:output_file={output.REC_FILE} -Pdd4hep:xml_fil
rule lambda_analysis:
input:
expand("
results
/lambda/{DETECTOR_CONFIG}_rec_lambda_dec_{P}GeV.edm4hep.root",
expand("
sim_output
/lambda/{DETECTOR_CONFIG}_rec_lambda_dec_{P}GeV.edm4hep.root",
P=[100, 125, 150,175, 200, 225, 250, 275],
DETECTOR_CONFIG=["{DETECTOR_CONFIG}"]),
script="benchmarks/lambda/analysis/lambda_plots.py",
output:
results_dir=directory("results/
lambda/results_
{DETECTOR_CONFIG}
_
lambda
_dec
"),
results_dir=directory("results/{DETECTOR_CONFIG}
/
lambda"),
shell:
"""
mkdir -p {output.results_dir}
...
...
This diff is collapsed.
Click to expand it.
benchmarks/lambda/analysis/lambda_plots.py
+
1
−
1
View file @
e245ba64
...
...
@@ -18,7 +18,7 @@ import uproot as ur
arrays_sim
=
{}
momenta
=
100
,
125
,
150
,
175
,
200
,
225
,
250
,
275
for
p
in
momenta
:
filename
=
f
'
results
/lambda/epic_zdc_sipm_on_tile_only_rec_lambda_dec_
{
p
}
GeV.edm4hep.root
'
filename
=
f
'
sim_output
/lambda/epic_zdc_sipm_on_tile_only_rec_lambda_dec_
{
p
}
GeV.edm4hep.root
'
print
(
"
opening file
"
,
filename
)
events
=
ur
.
open
(
filename
+
'
:events
'
)
arrays_sim
[
p
]
=
events
.
arrays
()[:
-
1
]
#remove last event, which for some reason is blank
...
...
This diff is collapsed.
Click to expand it.
benchmarks/lambda/config.yml
+
10
−
4
View file @
e245ba64
lambda:simulate
:
stage
:
simulate
extends
:
.phy_benchmark
...
...
@@ -15,14 +14,21 @@ lambda:simulate:
-
P
:
275
timeout
:
6 hours
script
:
-
snakemake --cores 1
results
/lambda/epic_zdc_sipm_on_tile_only_rec_lambda_dec_${P}GeV.edm4hep.root
-
snakemake --cores 1
sim_output
/lambda/epic_zdc_sipm_on_tile_only_rec_lambda_dec_${P}GeV.edm4hep.root
retry
:
max
:
2
when
:
-
runner_system_failure
lambda:analyze
:
stage
:
analyze
extends
:
.phy_benchmark
needs
:
[
"
lambda:simulate"
]
script
:
-
snakemake --cores 1 results/epic_zdc_sipm_on_tile_only/lambda
lambda:results
:
stage
:
collect
needs
:
[
"
lambda:
simulat
e"
]
needs
:
[
"
lambda:
analyz
e"
]
script
:
-
python benchmarks/lambda/analysis/lambda_plots.py results/lambda/results_epic_zdc_sipm_on_tile_only_lambda_dec
-
ls -al
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment