Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review 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
atlas
athena
Merge requests
!76426
Fixes for new versions with invalid segments (MM and Pad)
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fixes for new versions with invalid segments (MM and Pad)
ekajomov/athena-fork-fix:stgc_tp_l1a_invalidsegments
into
24.0
Overview
20
Commits
4
Pipelines
4
Changes
4
Merged
Enrique Kajomovitz Must
requested to merge
ekajomov/athena-fork-fix:stgc_tp_l1a_invalidsegments
into
24.0
2 months ago
Overview
17
Commits
4
Pipelines
4
Changes
4
Expand
Skipping invalid segments arriving from the STGC AND MM TP
@pscholer
@estel
0
0
Merge request reports
Compare
24.0
version 3
986ca38e
2 months ago
version 2
91475563
2 months ago
version 1
9d3b699c
2 months ago
24.0 (base)
and
latest version
latest version
3866c5d8
4 commits,
2 months ago
version 3
986ca38e
3 commits,
2 months ago
version 2
91475563
2 commits,
2 months ago
version 1
9d3b699c
1 commit,
2 months ago
4 files
+
25
−
9
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
MuonSpectrometer/MuonCnv/MuonNSWCommonDecode/MuonNSWCommonDecode/NSWSTGTPDecodeBitmaps.h
+
7
−
4
Options
@@ -72,12 +72,13 @@ namespace Muon
constexpr
std
::
size_t
size_v1
=
96
;
constexpr
std
::
size_t
size_v2
=
96
;
constexpr
std
::
size_t
size_v3
=
128
;
constexpr
int
pad_stream_invalid_band_id
=
0xFF
;
};
namespace
STGTPMMData
{
constexpr
std
::
size_t
num_mm
=
8
;
constexpr
int
mm_stream_header
=
0xC0CA
;
constexpr
int
size_output_mm_valids
=
8
;
constexpr
int
size_output_mm_monitor
=
1
;
constexpr
int
size_output_mm_spare
=
2
;
constexpr
int
size_output_mm_lowRes
=
1
;
@@ -87,11 +88,12 @@ namespace Muon
constexpr
int
size_output_mm_rIndex
=
8
;
constexpr
int
size_bcid
=
12
;
constexpr
int
size_v3_padding
=
52
;
constexpr
int
size_v3_padding
=
44
;
// now we have the valid bits
constexpr
std
::
size_t
size_v1
=
0
;
constexpr
std
::
size_t
size_v2
=
0
;
constexpr
std
::
size_t
size_v3
=
256
;
constexpr
int
mm_stream_invalid_dTheta
=
16
;
};
@@ -118,8 +120,9 @@ namespace Muon
constexpr
std
::
size_t
size_v1
=
256
;
constexpr
std
::
size_t
size_v2
=
256
;
constexpr
std
::
size_t
size_v3
=
256
;
constexpr
std
::
size_t
size_valid_segment_v3
=
8
;
constexpr
std
::
size_t
size_valid_segment_v3
=
8
;
constexpr
int
merge_stream_invalid_dTheta
=
16
;
enum
class
MergedSegmentProperty
{
Monitor
=
fill_bitmask
<
uint32_t
>
(
0
,
size_output_segment_monitor
),
Spare
=
fill_bitmask
<
uint32_t
>
(
max_bit
(
Monitor
)
+
1
,
size_output_segment_spare
),
Loading