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
!263
fix: rework of track reconstruction for new EPIC tracking layout
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
fix: rework of track reconstruction for new EPIC tracking layout
rework-new-epic-tracking-layout
into
master
Overview
0
Commits
8
Pipelines
0
Changes
15
Merged
Wouter Deconinck
requested to merge
rework-new-epic-tracking-layout
into
master
2 years ago
Overview
0
Commits
8
Pipelines
0
Changes
15
Expand
0
0
Merge request reports
Compare
master
version 3
9c335cfe
2 years ago
version 2
53e64d82
2 years ago
version 1
0503fc8f
2 years ago
master (base)
and
latest version
latest version
7f6e5a16
8 commits,
2 years ago
version 3
9c335cfe
7 commits,
2 years ago
version 2
53e64d82
6 commits,
2 years ago
version 1
0503fc8f
4 commits,
2 years ago
15 files
+
600
−
691
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
15
Search (e.g. *.vue) (Ctrl+P)
benchmarks/clustering/options/full_cal_reco.py
+
3
−
7
Options
@@ -9,19 +9,15 @@ 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
(
"
DETECTOR
"
,
"
athena
"
))
detector_name
=
str
(
os
.
environ
.
get
(
"
DETECTOR
"
,
"
epic
"
))
detector_config
=
str
(
os
.
environ
.
get
(
"
DETECTOR_CONFIG
"
,
detector_name
))
detector_version
=
str
(
os
.
environ
.
get
(
"
DETECTOR_VERSION
"
,
"
ma
ster
"
))
detector_version
=
str
(
os
.
environ
.
get
(
"
DETECTOR_VERSION
"
,
"
ma
in
"
))
detector_path
=
str
(
os
.
environ
.
get
(
"
DETECTOR_PATH
"
,
"
.
"
))
compact_path
=
os
.
path
.
join
(
detector_path
,
detector_config
)
# Detector features that affect reconstruction
has_ecal_barrel_scfi
=
False
if
'
athena
'
in
detector_name
:
has_ecal_barrel_scfi
=
True
if
'
ecce
'
in
detector_name
and
'
imaging
'
in
detector_config
:
has_ecal_barrel_scfi
=
True
if
'
epic
'
in
detector_name
and
'
imaging
'
in
detector_config
:
has_ecal_barrel_scfi
=
True
@@ -266,7 +262,7 @@ else:
algs
.
append
(
cb_ecal_clreco
)
# Central Barrel Ecal SciFi
if
'
athena
'
in
detector_name
:
if
has_ecal_barrel_scfi
:
scfi_barrel_daq
=
dict
(
dynamicRangeADC
=
50.
*
MeV
,
capacityADC
=
32768
,
Loading