Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
reconstruction_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
reconstruction_benchmarks
Merge requests
!136
Replaced JUGGLER_DETECTOR_PATH with DETECTOR_PATH.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Replaced JUGGLER_DETECTOR_PATH with DETECTOR_PATH.
detector_path
into
master
Overview
0
Commits
1
Pipelines
0
Changes
14
Merged
Whitney Armstrong
requested to merge
detector_path
into
master
3 years ago
Overview
0
Commits
1
Pipelines
0
Changes
14
Expand
Not sure why JUGGLER_DETECTOR_PATH was introduced but only JUGGLER_INSTALL_PREFIX and JUGGLER_DETECTOR should be used.
JUGGLER_DETECTOR could probably have a different name but it is historical
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
a744f845
1 commit,
3 years ago
14 files
+
21
−
25
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
14
Search (e.g. *.vue) (Ctrl+P)
benchmarks/clustering/options/full_cal_reco.py
+
1
−
1
Options
@@ -10,7 +10,7 @@ from Configurables import ApplicationMgr, EICDataSvc, PodioInput, PodioOutput, G
from
GaudiKernel.SystemOfUnits
import
MeV
,
GeV
,
mm
,
cm
,
mrad
detector_name
=
str
(
os
.
environ
.
get
(
"
JUGGLER_DETECTOR
"
,
"
athena
"
))
detector_path
=
str
(
os
.
environ
.
get
(
"
JUGGLER_
DETECTOR_PATH
"
,
"
.
"
))
detector_path
=
str
(
os
.
environ
.
get
(
"
DETECTOR_PATH
"
,
"
.
"
))
compact_path
=
os
.
path
.
join
(
detector_path
,
detector_name
)
# get sampling fractions from system environment variable, 1.0 by default
Loading