Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
detector_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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EIC
benchmarks
detector_benchmarks
Merge requests
!12
Resolve "Pion CI Workflow for EM Barrel"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Resolve "Pion CI Workflow for EM Barrel"
8-pion-ci-workflow-for-em-barrel
into
master
Overview
1
Commits
5
Pipelines
0
Changes
2
Merged
Resolve "Pion CI Workflow for EM Barrel"
Jihee Kim
requested to merge
8-pion-ci-workflow-for-em-barrel
into
master
Apr 4, 2021
Overview
1
Commits
5
Pipelines
0
Changes
2
Closes
#8 (closed)
Edited
Apr 5, 2021
by
Jihee Kim
0
0
Merge request reports
Compare
master
version 4
c677c652
Apr 5, 2021
version 3
6cee82c1
Apr 5, 2021
version 2
c5b5e043
Apr 5, 2021
version 1
032123e6
Apr 5, 2021
master (base)
and
version 2
latest version
844d5b24
5 commits,
Apr 5, 2021
version 4
c677c652
4 commits,
Apr 5, 2021
version 3
6cee82c1
3 commits,
Apr 5, 2021
version 2
c5b5e043
2 commits,
Apr 5, 2021
version 1
032123e6
1 commit,
Apr 5, 2021
2 files
+
86
−
93
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
calorimeters/calorimeters_config.yml
+
84
−
1
View file @ c5b5e043
Edit in single-file editor
Open in Web IDE
Show full file
#####################
# Simulations
# - Generate datasets
# - Run Geant4
# - Run Juggler
#####################
sim_emcal_barrel_electrons
:
image
:
eicweb.phy.anl.gov:4567/eic/juggler/juggler:$JUGGLER_TAG
stage
:
simulate
tags
:
-
s
odium
-
s
ilicon
artifacts
:
expire_in
:
20 weeks
paths
:
@@ -12,8 +19,46 @@ sim_emcal_barrel_electrons:
-
bash calorimeters/run_emcal_barrel_electrons.sh
allow_failure
:
true
crystal_emcal_simulation
:
stage
:
simulate
needs
:
-
[
"
get_data"
]
tags
:
-
silicon
script
:
-
cp NPDet/src/detectors/calorimeters/compact/elements.xml ./.
-
cp NPDet/src/detectors/calorimeters/compact/materials.xml ./.
-
bash calorimeters/run_simulation_crystal.sh
crystal_pion_simulation
:
stage
:
simulate
needs
:
-
[
"
get_data"
]
tags
:
-
silicon
script
:
-
cd topside && ls -l
-
npsim --runType batch --numberOfEvents 100 --compactFile topside.xml --inputFiles ../data/emcal_electrons.hepmc --outputFile ../sim_output/output_emcal_electrons.root
#zdc_simulation:
#stage: simulate
#needs:
#- ["get_data"]
#tags:
#- silicon
#script:
#- cp NPDet/src/detectors/calorimeters/compact/elements.xml ./.
#- cp NPDet/src/detectors/calorimeters/compact/materials.xml ./.
#- bash calorimeters/run_simulation_zdc.sh
###################
# Benchmarks
###################
ben_emcal_barrel_electrons
:
stage
:
benchmarks
tags
:
-
silicon
needs
:
-
[
"
sim_emcal_barrel_electrons"
]
script
:
@@ -21,6 +66,17 @@ ben_emcal_barrel_electrons:
-
root -b -q calorimeters/scripts/emcal_barrel_electrons_analysis.cxx+
allow_failure
:
true
crystal_benchmark
:
stage
:
benchmarks
tags
:
-
silicon
needs
:
-
[
"
crystal_emcal_simulation"
]
script
:
-
ls -lrth sim_output
-
root -b -q calorimeters/simple_checking_crystal.cxx+
allow_failure
:
true
#cal_test_3_zdc_neutrons_reader
:
#stage: benchmarks
#tags:
@@ -32,3 +88,30 @@ ben_emcal_barrel_electrons:
# - results/
#allow_failure: true
#zdc_benchmark:
#stage: benchmarks
#tags:
#- silicon
#needs:
#- ["zdc_simulation"]
#dependencies:
#- zdc_simulation
#script:
#- ls -lrth sim_output
#- root -b -q calorimeters/simple_checking.cxx+
#allow_failure: true
#zdc_benchmark_info_histogram:
#stage: benchmarks
#needs:
#- ["zdc_simulation"]
#tags:
#- silicon
#dependencies:
#- zdc_simulation
#script:
#- cp NPDet/src/detectors/calorimeters/compact/elements.xml calorimeters/
#- cp NPDet/src/detectors/calorimeters/compact/materials.xml calorimeters/
#- root -b -q calorimeters/simple_info_plot_histograms.cxx+
#allow_failure: true
Loading