Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
common_bench
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
common_bench
Merge requests
!45
Resolve "Add JUGGLER_DETECTOR_CONFIG"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Add JUGGLER_DETECTOR_CONFIG"
6-add-juggler_detector_config
into
master
Overview
0
Commits
3
Pipelines
0
Changes
3
Merged
Wouter Deconinck
requested to merge
6-add-juggler_detector_config
into
master
2 years ago
Overview
0
Commits
3
Pipelines
0
Changes
3
Expand
Closes
#6 (closed)
Edited
2 years ago
by
Wouter Deconinck
0
0
Merge request reports
Compare
master
version 3
fbb124d5
2 years ago
version 2
e9d198ee
2 years ago
version 1
8a8a506a
2 years ago
master (base)
and
latest version
latest version
21f47256
3 commits,
2 years ago
version 3
fbb124d5
3 commits,
2 years ago
version 2
e9d198ee
2 commits,
2 years ago
version 1
8a8a506a
1 commit,
2 years ago
3 files
+
10
−
13
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
bin/env.sh
+
8
−
2
Options
@@ -8,13 +8,14 @@
## - BEAMLINE_CONFIG: compact detector files for the interaciton point beamline
## - BEAMLINE_CONFIG_VERSION: compact detector files for the interaciton point beamline
## - JUGGLER_DETECTOR: detector package to be used for the benchmark
## - JUGGLER_DETECTOR_VERISON: detector package to be used for the benchmark
## - JUGGLER_DETECTOR_CONFIG: detector package config to be used for the benchmark
## - JUGGLER_DETECTOR_VERSION: detector package to be used for the benchmark
## - JUGGLER_N_EVENTS: events processed by simulation/reconstruction
## - JUGGLER_INSTALL_PREFIX: location where Juggler (digi/recon) is installed
## - JUGGLER_N_THREADS: Number of threads/processes to spawn in parallel
## - JUGGLER_RNG_SEED: Random seed for the RNG
##
## It also defines the following additional variables for internal usage
## It also defines the following additional variables for internal
ly
usage
## - LOCAL_PREFIX: prefix for packages installed during the benchmark
## - LOCAL_DATA_PATH: local storage for pipeline jobs
## - DETECTOR_PREFIX: prefix for the detector definitions
@@ -46,6 +47,10 @@ if [ ! -n "${JUGGLER_DETECTOR}" ] ; then
export
JUGGLER_DETECTOR
=
"athena"
fi
if
[
!
-n
"
${
JUGGLER_DETECTOR_CONFIG
}
"
]
;
then
export
JUGGLER_DETECTOR_CONFIG
=
"athena"
fi
if
[
!
-n
"
${
JUGGLER_DETECTOR_VERSION
}
"
]
;
then
export
JUGGLER_DETECTOR_VERSION
=
"master"
fi
@@ -118,6 +123,7 @@ export ROOT_BUILD_DIR=$LOCAL_PREFIX/root_build
export
ROOT_INCLUDE_PATH
=
${
LOCAL_PREFIX
}
/include:
${
ROOT_INCLUDE_PATH
}
echo
"JUGGLER_DETECTOR:
${
JUGGLER_DETECTOR
}
"
echo
"JUGGLER_DETECTOR_CONFIG:
${
JUGGLER_DETECTOR_CONFIG
}
"
echo
"JUGGLER_DETECTOR_VERSION:
${
JUGGLER_DETECTOR_VERSION
}
"
echo
"JUGGLER_N_EVENTS:
${
JUGGLER_N_EVENTS
}
"
echo
"JUGGLER_N_THREADS:
${
JUGGLER_N_THREADS
}
"
Loading