Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
Rec
Manage
Activity
Members
Labels
Plan
Issues
291
Issue boards
Milestones
Iterations
Requirements
Jira
Code
Merge requests
115
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
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
Rec
Merge requests
!1398
add faster tools to get coords and hits from muon raw
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
add faster tools to get coords and hits from muon raw
rvazquez-FastMuonDecoding
into
master
Overview
111
Commits
29
Pipelines
28
Changes
20
Merged
Ricardo Vazquez Gomez
requested to merge
rvazquez-FastMuonDecoding
into
master
5 years ago
Overview
15
Commits
29
Pipelines
28
Changes
20
Expand
Add tools for faster Muon decoding. Goes in parallel with
LHCb!1721 (merged)
Edited
5 years ago
by
Marco Cattaneo
👍
0
👎
0
Merge request reports
Compare
master
version 27
246f45bc
5 years ago
version 26
fe7e16d5
5 years ago
version 25
a46938a4
5 years ago
version 24
f3d1b951
5 years ago
version 23
c340186c
5 years ago
version 22
99420280
5 years ago
version 21
def99926
5 years ago
version 20
5d41b414
5 years ago
version 19
67af4fd8
5 years ago
version 18
4537364f
5 years ago
version 17
2ac1a772
5 years ago
version 16
8d28ba43
5 years ago
version 15
5d31808d
5 years ago
version 14
d86c6915
5 years ago
version 13
a1a9648e
5 years ago
version 12
959853b8
5 years ago
version 11
b2d1ea6b
5 years ago
version 10
b42de0c2
5 years ago
version 9
cfe73c25
5 years ago
version 8
b53acc7c
5 years ago
version 7
6610fbd8
5 years ago
version 6
7ede7aba
5 years ago
version 5
74a1c6a6
5 years ago
version 4
63dae2c3
5 years ago
version 3
8abb9cc1
5 years ago
version 2
c785e656
5 years ago
version 1
a6c7327b
5 years ago
master (base)
and
latest version
latest version
717990bc
29 commits,
5 years ago
version 27
246f45bc
28 commits,
5 years ago
version 26
fe7e16d5
27 commits,
5 years ago
version 25
a46938a4
26 commits,
5 years ago
version 24
f3d1b951
25 commits,
5 years ago
version 23
c340186c
24 commits,
5 years ago
version 22
99420280
23 commits,
5 years ago
version 21
def99926
22 commits,
5 years ago
version 20
5d41b414
21 commits,
5 years ago
version 19
67af4fd8
20 commits,
5 years ago
version 18
4537364f
19 commits,
5 years ago
version 17
2ac1a772
18 commits,
5 years ago
version 16
8d28ba43
17 commits,
5 years ago
version 15
5d31808d
16 commits,
5 years ago
version 14
d86c6915
13 commits,
5 years ago
version 13
a1a9648e
13 commits,
5 years ago
version 12
959853b8
10 commits,
5 years ago
version 11
b2d1ea6b
9 commits,
5 years ago
version 10
b42de0c2
8 commits,
5 years ago
version 9
cfe73c25
7 commits,
5 years ago
version 8
b53acc7c
6 commits,
5 years ago
version 7
6610fbd8
5 commits,
5 years ago
version 6
7ede7aba
4 commits,
5 years ago
version 5
74a1c6a6
3 commits,
5 years ago
version 4
63dae2c3
2 commits,
5 years ago
version 3
8abb9cc1
3 commits,
5 years ago
version 2
c785e656
2 commits,
5 years ago
version 1
a6c7327b
1 commit,
5 years ago
20 files
+
1445
−
51
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
20
Search (e.g. *.vue) (Ctrl+P)
Muon/MuonID/MuonID/IMuonMatchTool.h
+
1
−
1
Options
@@ -38,7 +38,7 @@ struct IMuonMatchTool : extend_interfaces<IAlgTool> {
enum
MuonMatchType
{
NoMatch
=
0
,
Uncrossed
=
1
,
Good
=
2
};
virtual
StatusCode
run
(
const
LHCb
::
Track
*
track
,
std
::
vector
<
TrackMuMatch
>*
bestMatches
,
virtual
StatusCode
run
(
const
LHCb
::
Track
*
,
std
::
vector
<
TrackMuMatch
>*
bestMatches
,
std
::
vector
<
TrackMuMatch
>*
spareMatches
=
nullptr
)
=
0
;
virtual
CommonConstMuonHits
getListofCommonMuonHits
(
int
station
=
-
1
,
bool
onlybest
=
true
)
const
=
0
;
virtual
std
::
vector
<
LHCb
::
MuonTileID
>
getListofMuonTiles
(
int
station
=
-
1
,
bool
onlybest
=
true
)
const
=
0
;
Loading