Skip to content

Commit

Permalink
Merge pull request #1824 from acarvalh/master
Browse files Browse the repository at this point in the history
fix 4V decays
  • Loading branch information
qliphy authored Jul 12, 2018
2 parents f04f2cc + 6c0335b commit 5b3cc77
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
'ResonanceDecayFilter:filter = on',
'ResonanceDecayFilter:exclusive = on', #off: require at least the specified number of daughters, on: require exactly the specified number of daughters
'ResonanceDecayFilter:mothers = 25', #list of mothers not specified -> count all particles in hard process+resonance decays (better to avoid specifying mothers when including leptons from the lhe in counting, since intermediate resonances are not gauranteed to appear in general
'ResonanceDecayFilter:wzAsEquivalent = on',
'ResonanceDecayFilter:daughters = 15,15,15,15',
),
parameterSets = cms.vstring('pythia8CommonSettings',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
'ResonanceDecayFilter:filter = on',
'ResonanceDecayFilter:exclusive = on', #off: require at least the specified number of daughters, on: require exactly the specified number of daughters
'ResonanceDecayFilter:mothers = 25', #list of mothers not specified -> count all particles in hard process+resonance decays (better to avoid specifying mothers when including leptons from the lhe in counting, since intermediate resonances are not gauranteed to appear in general
'ResonanceDecayFilter:wzAsEquivalent = on',
'ResonanceDecayFilter:daughters = 15,15,15,15',
),
parameterSets = cms.vstring('pythia8CommonSettings',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
import FWCore.ParameterSet.Config as cms

## Warning: it needs backport to this PR https://github.com/cms-sw/cmssw/pull/21132/files#diff-e6956e697ae15d477aa15e3af530f192
## (valid from CMSSW_10X+)

from Configuration.Generator.Pythia8CommonSettings_cfi import *
from Configuration.Generator.MCTunes2017.PythiaCP5Settings_cfi import *

Expand All @@ -17,15 +20,13 @@
'24:mMin = 0.05',
'25:m0 = 125.0',
'25:onMode = off',
'25:onIfMatch = 15 -15',
'25:onIfMatch = 24 -24',
'25:onIfMatch = 23 23',
'ResonanceDecayFilter:filter = on',
'ResonanceDecayFilter:exclusive = on', #off: require at least the specified number of daughters, on: require exactly the specified number of daughters
'ResonanceDecayFilter:eMuAsEquivalent = off', #on: treat electrons and muons as equivalent
'ResonanceDecayFilter:eMuTauAsEquivalent = on', #on: treat electrons, muons , and taus as equivalent
'ResonanceDecayFilter:mothers = 25', #list of mothers not specified -> count all particles in hard process+resonance decays (better to avoid specifying mothers when including leptons from the lhe in counting, since intermediate resonances are not gauranteed to appear in general
'ResonanceDecayFilter:wzAsEquivalent = on',
'ResonanceDecayFilter:daughters = 23,23,23,23,1,1,1,1',
'ResonanceDecayFilter:daughters = 23,23,23,23',
),
parameterSets = cms.vstring('pythia8CommonSettings',
'pythia8CP5Settings',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
from Configuration.Generator.MCTunes2017.PythiaCP5Settings_cfi import *
from Configuration.Generator.Pythia8PowhegEmissionVetoSettings_cfi import *

## Warning: it needs backport to this PR https://github.com/cms-sw/cmssw/pull/21132/files#diff-e6956e697ae15d477aa15e3af530f192
## (valid from CMSSW_10X+)

generator = cms.EDFilter("Pythia8HadronizerFilter",
maxEventsToPrint = cms.untracked.int32(1),
pythiaPylistVerbosity = cms.untracked.int32(1),
Expand All @@ -19,15 +22,13 @@
'24:mMin = 0.05',
'25:m0 = 125.0',
'25:onMode = off',
'25:onIfMatch = 15 -15',
'25:onIfMatch = 24 -24',
'25:onIfMatch = 23 23',
'ResonanceDecayFilter:filter = on',
'ResonanceDecayFilter:exclusive = on', #off: require at least the specified number of daughters, on: require exactly the specified number of daughters
'ResonanceDecayFilter:eMuAsEquivalent = off', #on: treat electrons and muons as equivalent
'ResonanceDecayFilter:eMuTauAsEquivalent = on', #on: treat electrons, muons , and taus as equivalent
'ResonanceDecayFilter:mothers = 25', #list of mothers not specified -> count all particles in hard process+resonance decays (better to avoid specifying mothers when including leptons from the lhe in counting, since intermediate resonances are not gauranteed to appear in general
'ResonanceDecayFilter:wzAsEquivalent = on',
'ResonanceDecayFilter:daughters = 23,23,23,23,1,1,1,1',
'ResonanceDecayFilter:daughters = 23,23,23,23',
),
parameterSets = cms.vstring('pythia8CommonSettings',
'pythia8CP5Settings',
Expand Down

0 comments on commit 5b3cc77

Please sign in to comment.