Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EtaBToJpsiJpsi gen fragment at 14 TeV for release validation #33386

Merged
merged 5 commits into from Apr 30, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
@@ -0,0 +1,76 @@
# For BPH trigger study only
vjmastra marked this conversation as resolved.
Show resolved Hide resolved
import FWCore.ParameterSet.Config as cms
from Configuration.Generator.Pythia8CommonSettings_cfi import *
from Configuration.Generator.MCTunes2017.PythiaCP5Settings_cfi import *
from GeneratorInterface.EvtGenInterface.EvtGenSetting_cff import *

generator = cms.EDFilter("Pythia8GeneratorFilter",
maxEventsToPrint = cms.untracked.int32(1),
pythiaPylistVerbosity = cms.untracked.int32(1),
filterEfficiency = cms.untracked.double(0.4045),
pythiaHepMCVerbosity = cms.untracked.bool(False),
comEnergy = cms.double(14000.),
PythiaParameters = cms.PSet(
pythia8CommonSettingsBlock,
pythia8CP5SettingsBlock,
processParameters = cms.vstring(
'Higgs:useBSM = on',
'HiggsBSM:gg2H2 = on',
'HiggsH2:coup2d = 10.0',
'HiggsH2:coup2u = 10.0',
'HiggsH2:coup2Z = 0.0',
'HiggsH2:coup2W = 0.0',
'HiggsA3:coup2H2Z = 0.0',
'HiggsH2:coup2A3A3 = 0.0',
'HiggsH2:coup2H1H1 = 0.0',
'443:onMode = off',
'443:onIfMatch 13 -13',
############# Fix to mass of etaB (9.4 GeV) #############
'35:mMin = 0',

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what is the purpose of min and max if you set 0 width ?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I left the properties as in the previous version of the fragment

The definition of the mass range should have no effect as width is set to 0

'35:mMax = 50.0',
'35:m0 = 9.4',
'35:mWidth = 0.00',
'35:addChannel 1 1.00 100 443 443',
'35:onMode = off',
'35:onIfMatch 443 443' #Jpsi Jpsi decay
),
# This is a vector of ParameterSet names to be read, in this order
parameterSets = cms.vstring(
'pythia8CommonSettings',
'pythia8CP5Settings',
'processParameters'
)
)
)

generator.PythiaParameters.processParameters.extend(EvtGenExtraParticles)

etafilter = cms.EDFilter("PythiaFilter",

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why is this called etafilter?

Copy link
Contributor Author

@vjmastra vjmastra Apr 13, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I did as in previous version of the fragment available in CMSSW (

)

The BSM Higgs (pdgid=35) with mass forced to the same as etaB is used instead of an etaB.
The filter requires its presence.

MaxEta = cms.untracked.double(9999.0),
MinEta = cms.untracked.double(-9999.0),
ParticleID = cms.untracked.int32(35)
)

etatojpsipairfilter = cms.EDFilter("PythiaDauVFilter",
MotherID = cms.untracked.int32(0),
verbose = cms.untracked.int32(0),
ParticleID = cms.untracked.int32(35),
MaxEta = cms.untracked.vdouble(2.6, 2.6),
MinEta = cms.untracked.vdouble(-2.6, -2.6),
DaughterIDs = cms.untracked.vint32(443, 443),
MinPt = cms.untracked.vdouble(0., 0.),
NumberDaughters = cms.untracked.int32(2)
)

jpsifilter = cms.EDFilter("PythiaDauVFilter",
MotherID = cms.untracked.int32(35),
verbose = cms.untracked.int32(0),
ParticleID = cms.untracked.int32(443),
MaxEta = cms.untracked.vdouble(2.5, 2.5),
MinEta = cms.untracked.vdouble(-2.5, -2.5),
DaughterIDs = cms.untracked.vint32(13, -13),
MinPt = cms.untracked.vdouble(1.8, 1.8),
NumberDaughters = cms.untracked.int32(2)
)

ProductionFilterSequence = cms.Sequence(generator*etafilter*etatojpsipairfilter*jpsifilter)
Expand Up @@ -1448,4 +1448,5 @@ def __init__(self, howMuch, dataset):
('QCD_Pt_1800_2400_14TeV_TuneCP5_cfi', UpgradeFragment(Kby(9,50), 'QCD_Pt_1800_2400_14')),
('DisplacedSUSY_stopToBottom_M_800_500mm_TuneCP5_14TeV_pythia8_cff', UpgradeFragment(Kby(9,50),'DisplacedSUSY_14TeV')),
('GluGluTo2Jets_M_300_2000_14TeV_Exhume_cff',UpgradeFragment(Kby(9,100),'GluGluTo2Jets_14TeV')),
('EtaBToJpsiJpsi_forSTEAM_14TeV_TuneCP5_cfi', UpgradeFragment(Kby(9,50),'EtaBToJpsiJpsi_14')),
])