Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add benchmarks/ecal_backwards #9

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ include:
- local: 'benchmarks/timing/config.yml'
- local: 'benchmarks/b0_tracker/config.yml'
- local: 'benchmarks/others/config.yml'
- local: 'benchmarks/backwards_ecal/config.yml'

deploy_results:
stage: deploy
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)"