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
!253
Use JUGGLER_DETECTOR_CONFIG for xml file
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Use JUGGLER_DETECTOR_CONFIG for xml file
juggler-detector-config
into
master
Overview
0
Commits
1
Pipelines
0
Changes
26
Merged
Wouter Deconinck
requested to merge
juggler-detector-config
into
master
2 years ago
Overview
0
Commits
1
Pipelines
0
Changes
26
Expand
This allows more flexibility than a single xml file per detector repository
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
08b2637d
1 commit,
2 years ago
26 files
+
35
−
35
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
26
Search (e.g. *.vue) (Ctrl+P)
benchmarks/clustering/options/full_cal_reco.py
+
2
−
2
Options
@@ -9,8 +9,8 @@ import ROOT
from
Configurables
import
ApplicationMgr
,
EICDataSvc
,
PodioInput
,
PodioOutput
,
GeoSvc
from
GaudiKernel.SystemOfUnits
import
MeV
,
GeV
,
mm
,
cm
,
mrad
detector_name
=
str
(
os
.
environ
.
get
(
"
JUGGLER_DETECTOR
"
,
"
athena
"
))
detector_version
=
str
(
os
.
environ
.
get
(
"
JUGGLER_DETECTOR
"
,
"
master
"
))
detector_name
=
str
(
os
.
environ
.
get
(
"
JUGGLER_DETECTOR
_CONFIG
"
,
"
athena
"
))
detector_version
=
str
(
os
.
environ
.
get
(
"
JUGGLER_DETECTOR
_VERSION
"
,
"
master
"
))
detector_path
=
str
(
os
.
environ
.
get
(
"
DETECTOR_PATH
"
,
"
.
"
))
compact_path
=
os
.
path
.
join
(
detector_path
,
detector_name
)
Loading