Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
LHCb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Jira
Code
Merge requests
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
LHCb
Commits
8d1e7f40
Commit
8d1e7f40
authored
2 years ago
by
Gerhard Raven
Committed by
Christopher Rob Jones
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
increase version number of PackedTrack to reflect change in the definition of LHCbID
parent
c3064823
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!3810
increase version number of PackedTrack to reflect change in the definition of LHCbID
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Event/EventPacker/include/Event/PackedTrack.h
+3
-3
3 additions, 3 deletions
Event/EventPacker/include/Event/PackedTrack.h
Event/EventPacker/src/lib/PackedTrack.cpp
+0
-2
0 additions, 2 deletions
Event/EventPacker/src/lib/PackedTrack.cpp
with
3 additions
and
5 deletions
Event/EventPacker/include/Event/PackedTrack.h
+
3
−
3
View file @
8d1e7f40
...
...
@@ -166,7 +166,7 @@ namespace LHCb {
const
std
::
vector
<
std
::
pair
<
std
::
int32_t
,
std
::
int32_t
>>&
extras
()
const
{
return
m_extra
;
}
/// Default Packing Version
static
char
defaultPackingVersion
()
{
return
5
;
}
static
char
defaultPackingVersion
()
{
return
6
;
}
/// Set the packing version
void
setPackingVersion
(
const
char
ver
)
{
m_packingVersion
=
ver
;
}
...
...
@@ -187,7 +187,7 @@ namespace LHCb {
template
<
typename
T
>
void
load
(
T
&
buf
)
{
setVersion
(
buf
.
template
load
<
uint8_t
>()
);
if
(
version
()
<
4
||
version
()
>
5
)
{
if
(
version
()
<
4
||
version
()
>
PackedTracks
::
defaultPackingVersion
()
)
{
throw
std
::
runtime_error
(
"PackedTracks packing version is not supported: "
+
std
::
to_string
(
version
()
)
);
}
buf
.
load
(
m_vect
,
version
()
);
...
...
@@ -265,7 +265,7 @@ namespace LHCb {
/// Check if the given packing version is supported
bool
isSupportedVer
(
const
char
ver
)
const
{
const
bool
OK
=
(
0
<=
ver
&&
ver
<=
5
);
const
bool
OK
=
(
5
<=
ver
&&
ver
<=
PackedTracks
::
defaultPackingVersion
()
);
if
(
!
OK
)
{
throw
GaudiException
(
fmt
::
format
(
"Unknown packed data version {}"
,
(
int
)
ver
),
"TrackPacker"
,
StatusCode
::
FAILURE
);
...
...
This diff is collapsed.
Click to expand it.
Event/EventPacker/src/lib/PackedTrack.cpp
+
0
−
2
View file @
8d1e7f40
...
...
@@ -16,7 +16,6 @@ using namespace LHCb;
void
TrackPacker
::
pack
(
const
Data
&
track
,
PackedData
&
ptrack
,
PackedDataVector
&
ptracks
)
const
{
// check version
ptracks
.
setVersion
(
5
);
const
auto
ver
=
ptracks
.
version
();
if
(
!
isSupportedVer
(
ver
)
)
return
;
...
...
@@ -51,7 +50,6 @@ void TrackPacker::pack( const Data& track, PackedData& ptrack, PackedDataVector&
void
TrackPacker
::
pack
(
const
DataVector
&
tracks
,
PackedDataVector
&
ptracks
)
const
{
// check version
ptracks
.
setVersion
(
5
);
const
auto
ver
=
ptracks
.
version
();
if
(
!
isSupportedVer
(
ver
)
)
return
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment