Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Moore
Manage
Activity
Members
Labels
Plan
Issues
337
Issue boards
Milestones
Iterations
Requirements
Jira
Code
Merge requests
139
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
LHCb
Moore
Merge requests
!2107
Adding qmtest of hlt1_hlt2_comparison
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Adding qmtest of hlt1_hlt2_comparison
xueting_hlt1_hlt2_compare_qmt
into
master
Overview
20
Commits
4
Pipelines
5
Changes
2
Merged
Xueting Yang
requested to merge
xueting_hlt1_hlt2_compare_qmt
into
master
1 year ago
Overview
20
Commits
4
Pipelines
5
Changes
2
Expand
Adding a new qmtest to compare hlt1 and hlt2 tracks based on
Rec!2843 (merged)
👍
0
👎
0
Merge request reports
Compare
master
version 3
4a11393b
1 year ago
version 2
bd209bf7
1 year ago
version 1
826e5364
1 year ago
master (base)
and
latest version
latest version
3ad9bdd5
4 commits,
1 year ago
version 3
4a11393b
3 commits,
1 year ago
version 2
bd209bf7
2 commits,
1 year ago
version 1
826e5364
1 commit,
1 year ago
2 files
+
41
−
6
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
Hlt/RecoConf/options/hlt1_hlt2_comparison.py
+
6
−
6
Options
@@ -14,7 +14,7 @@ from Moore.config import Reconstruction
from
RecoConf.hlt1_tracking
import
all_velo_track_types
,
make_all_pvs
from
RecoConf.event_filters
import
require_gec
from
RecoConf.hlt1_allen
import
make_allen_forward_tracks
from
RecoConf.hlt2_
tracking
import
make_hlt2_tracks
from
RecoConf.hlt2_
global_reco
import
reconstruction
from
RecoConf.mc_checking
import
checker_trigger_objects
from
AllenConf.hlt1_reconstruction
import
hlt1_reconstruction
@@ -33,12 +33,12 @@ def reco():
pvs
=
make_all_pvs
()[
"
v1
"
]
hlt2_
tracks
=
make_hlt2_t
racks
(
light_reco
=
False
,
fast_reco
=
True
,
use_pr_kf
=
True
)
tracks
=
reconstruction
()[
"
T
racks
"
]
Velotracks
=
reconstruction
()[
"
VeloTracks
"
]
checker
=
checker_trigger_objects
(
allen_forward_tracks
[
"
v1
"
],
hlt2_tracks
[
"
Best
"
][
"
v1
"
],
allen_pvs
,
pvs
,
allen_v
elo
_
tracks
[
"
v1
"
],
hlt2_tracks
[
"
Velo
"
][
"
v1
"
]
)
checker
=
checker_trigger_objects
(
allen_forward_tracks
[
"
v1
"
],
tracks
,
allen_pvs
,
pvs
,
allen_velo_tracks
[
"
v1
"
]
,
V
elotracks
)
return
Reconstruction
(
'
hlt1
'
,
checker
,
[
require_gec
()])
Loading