Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Analysis
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
Analysis
Commits
ab9e4026
Commit
ab9e4026
authored
3 years ago
by
amathad
Browse files
Options
Downloads
Patches
Plain Diff
RFix build warnings on platform x86_64-centos7-clang8-opt
parent
f4fd0c49
No related branches found
No related tags found
1 merge request
!767
proof-of-concept for a new tupling algorithm
Pipeline
#2368516
failed
3 years ago
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Phys/FunTuple/src/FunTuple.cpp
+4
-1
4 additions, 1 deletion
Phys/FunTuple/src/FunTuple.cpp
with
4 additions
and
1 deletion
Phys/FunTuple/src/FunTuple.cpp
+
4
−
1
View file @
ab9e4026
...
...
@@ -66,7 +66,10 @@ protected:
StatusCode
booktuple
(
const
Tuples
::
Tuple
&
m_ntuple
,
const
std
::
string
&
colname
,
const
T2
&
val
)
const
;
StatusCode
checks
();
StatusCode
setParticleTupleProps
();
void
FindAndBookTuple
(
const
unsigned
int
&
i
,
const
T
&
particles
,
const
Tuples
::
Tuple
&
ntuple
)
const
{}
void
FindAndBookTuple
(
const
unsigned
int
&
i
,
const
T
&
particles
,
const
Tuples
::
Tuple
&
ntuple
)
const
{
//variables used in explicit template specialisation, so suppress unused variable compiler warning here
(
void
)
i
;
(
void
)
particles
;
(
void
)
ntuple
;
}
//(Will be removed): The following overloaded function (makeMCTwoBodyDecay) are only used when m_makeCustomData is set
// to true (see m_makeCustomData property description for more info)
void
makeMCTwoBodyDecay
(
LHCb
::
MCParticle
&
p
,
LHCb
::
MCParticle
&
p1
,
LHCb
::
MCParticle
&
p2
,
const
int
&
parentid
)
const
;
...
...
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