Skip to content

Commit

Permalink
message
Browse files Browse the repository at this point in the history
  • Loading branch information
veprbl committed Jan 9, 2024
1 parent 279da89 commit b38e38f
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ get_data:
include:
- local: 'benchmarks/tracking_detectors/config.yml'
- local: 'benchmarks/barrel_ecal/config.yml'
- local: 'benchmarks/backwards_ecal/config.yml'
- local: 'benchmarks/barrel_hcal/config.yml'
- local: 'benchmarks/zdc/config.yml'
- local: 'benchmarks/material_maps/config.yml'
Expand Down
21 changes: 21 additions & 0 deletions benchmarks/backwards_ecal/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
sim:ecal_backwards_electron:
extends: .det_benchmark
stage: simulate
script:
- echo "I will be simulating some electron events here!"
- echo "0.511 MeV" >> $LOCAL_DATA_PATH/electron_mass

sim:ecal_backwards_photon:
extends: .det_benchmark
stage: simulate
script:
- echo "I will be simulating some photon events here!"

bench:ecal_backwards_resolution:
extends: .det_benchmark
stage: benchmarks
needs:
- ["sim:ecal_backwards_electron", "sim:ecal_backwards_photon"]
script:
- echo "I will be analyzing events here!"
- echo "Our intelligence reports that the electron mass is $(cat $LOCAL_DATA_PATH/electron_mass)"

0 comments on commit b38e38f

Please sign in to comment.