Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
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
Davide Di Croce
athena
Commits
fa5d7b63
Commit
fa5d7b63
authored
1 year ago
by
Andrii Verbytskyi
Committed by
Walter Lampl
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
Drop special condition for Herwig++ particle status codes
Drop special condition for Herwig++ particle status codes
parent
699d3bda
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
PhysicsAnalysis/TauID/TauAnalysisTools/Root/BuildTruthTaus.cxx
+2
-2
2 additions, 2 deletions
...csAnalysis/TauID/TauAnalysisTools/Root/BuildTruthTaus.cxx
with
2 additions
and
2 deletions
PhysicsAnalysis/TauID/TauAnalysisTools/Root/BuildTruthTaus.cxx
+
2
−
2
View file @
fa5d7b63
...
...
@@ -376,9 +376,9 @@ StatusCode BuildTruthTaus::examineTruthTauDecay (const xAOD::TruthParticle& xTru
int
iPdgId
=
xTruthDaughter
->
pdgId
();
// look at decay of unstable particles
if
(
xTruthDaughter
->
status
()
==
2
or
xTruthDaughter
->
status
()
==
11
or
xTruthDaughter
->
status
()
==
HepMC
::
SPECIALSTATUS
)
// 11 for HERWIG++
if
(
xTruthDaughter
->
status
()
==
2
||
xTruthDaughter
->
status
()
==
HepMC
::
SPECIALSTATUS
)
{
if
(
iAbsPdgId
!=
111
and
iAbsPdgId
!=
311
and
iAbsPdgId
!=
310
and
iAbsPdgId
!=
130
)
if
(
iAbsPdgId
!=
111
&&
iAbsPdgId
!=
311
&&
iAbsPdgId
!=
310
&&
iAbsPdgId
!=
130
)
{
examineTruthTauDecay
(
*
xTruthDaughter
,
truthInfo
).
ignore
();
continue
;
...
...
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