Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
physics_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
physics_benchmarks
Merge requests
!116
Use proper material map for canyonlands
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Use proper material map for canyonlands
sly2j-master-patch-76066
into
master
Overview
0
Commits
3
Pipelines
0
Changes
1
Merged
Use proper material map for canyonlands
Sylvester Joosten
requested to merge
sly2j-master-patch-76066
into
master
Oct 28, 2021
Overview
0
Commits
3
Pipelines
0
Changes
1
0
0
Merge request reports
Compare
master
version 2
9879f6e6
Oct 28, 2021
version 1
d4a2bc38
Oct 28, 2021
master (base)
and
latest version
latest version
21f69646
3 commits,
Oct 28, 2021
version 2
9879f6e6
2 commits,
Oct 28, 2021
version 1
d4a2bc38
1 commit,
Oct 28, 2021
1 file
+
5
−
1
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
options/reconstruction.py
+
5
−
1
View file @ 21f69646
Edit in single-file editor
Open in Web IDE
Show full file
@@ -52,13 +52,17 @@ services = []
@@ -52,13 +52,17 @@ services = []
services
.
append
(
AuditorSvc
(
"
AuditorSvc
"
,
Auditors
=
[
'
ChronoAuditor
'
,
'
MemStatAuditor
'
]))
services
.
append
(
AuditorSvc
(
"
AuditorSvc
"
,
Auditors
=
[
'
ChronoAuditor
'
,
'
MemStatAuditor
'
]))
# geometry service
# geometry service
## only have material maps for acadia right now
## only have material maps for acadia right now
## note: old version of material map is called material-maps.XXX, new version is materials-map.XXX
## these names are somewhat inconsistent, and should probably all be renamed to 'material-map.XXX'
## FIXME
if
detector_version
==
'
acadia
'
:
if
detector_version
==
'
acadia
'
:
services
.
append
(
GeoSvc
(
"
GeoSvc
"
,
detectors
=
[
"
{}/{}.xml
"
.
format
(
detector_path
,
detector_name
)],
services
.
append
(
GeoSvc
(
"
GeoSvc
"
,
detectors
=
[
"
{}/{}.xml
"
.
format
(
detector_path
,
detector_name
)],
materials
=
"
config/material-maps.json
"
,
materials
=
"
config/material-maps.json
"
,
OutputLevel
=
WARNING
))
OutputLevel
=
WARNING
))
else
:
else
:
services
.
append
(
GeoSvc
(
"
GeoSvc
"
,
detectors
=
[
"
{}/{}.xml
"
.
format
(
detector_path
,
detector_name
)],
services
.
append
(
GeoSvc
(
"
GeoSvc
"
,
detectors
=
[
"
{}/{}.xml
"
.
format
(
detector_path
,
detector_name
)],
#
materials="c
onfig
/material-map
s.json
",
materials
=
"
c
alibrations
/material
s
-map
.cbor
"
,
OutputLevel
=
WARNING
))
OutputLevel
=
WARNING
))
# data service
# data service
services
.
append
(
EICDataSvc
(
"
EventDataSvc
"
,
inputs
=
input_sims
,
OutputLevel
=
WARNING
))
services
.
append
(
EICDataSvc
(
"
EventDataSvc
"
,
inputs
=
input_sims
,
OutputLevel
=
WARNING
))
Loading