Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:03:36

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # Disclaimer :
0004 #
0005 # This set of Pythia configuration cards has been copied 
0006 # and pasted from 
0007 #   RecoTracker/RoadSearchCloudMaker/test/sim_pythia.cfg
0008 # prepared by Oliver Gutsche (FNAL)
0009 #
0010 # the only change is MSTP(128)=2 - this option takes decay 
0011 # products out of doc section; decay products point at parents
0012 # in the main section (Julia Yarba, FNAL).
0013 generator = cms.EDFilter("Pythia6GeneratorFilter",
0014     # to printout HepMC::GenEvent record (HepMC::GenEvent::print())
0015     pythiaHepMCVerbosity = cms.untracked.bool(False),
0016     maxEventsToPrint = cms.untracked.int32(0),
0017     # to printout pythia event record (call pylist)
0018     pythiaPylistVerbosity = cms.untracked.int32(0),
0019     comEnergy = cms.double(10000.0),
0020     PythiaParameters = cms.PSet(
0021         pythiaHZZmumumumu = cms.vstring('PMAS(25,1)=190.0        !mass of Higgs', 
0022             'MSEL=0                  !(D=1) to select between full user control (0, then use MSUB) and some preprogrammed alternative: QCD hight pT processes (1, then ISUB=11, 12, 13, 28, 53, 68), QCD low pT processes (2, then ISUB=11, 12, 13, 28, 53, 68, 91, 92, 94, 95)', 
0023             'MSTJ(11)=3              !Choice of the fragmentation function', 
0024             'MSTJ(41)=1              !Switch off Pythia QED bremsshtrahlung', 
0025             'MSTP(51)=7              !structure function chosen', 
0026             'MSTP(61)=0              ! no initial-state showers', 
0027             'MSTP(71)=0              ! no final-state showers', 
0028             'MSTP(81)=0              ! no multiple interactions', 
0029             'MSTP(111)=0             ! no hadronization', 
0030             'MSTU(21)=1              !Check on possible errors during program execution', 
0031             'MSUB(102)=1             !ggH', 
0032             'MSUB(123)=1             !ZZ fusion to H', 
0033             'MSUB(124)=1             !WW fusion to H', 
0034             'PARP(82)=1.9            !pt cutoff for multiparton interactions', 
0035             'PARP(83)=0.5            !Multiple interactions: matter distrbn parameter Registered by Chris.Seez@cern.ch', 
0036             'PARP(84)=0.4            !Multiple interactions: matter distribution parameter Registered by Chris.Seez@cern.ch', 
0037             'PARP(90)=0.16           !Multiple interactions: rescaling power Registered by Chris.Seez@cern.ch', 
0038             'CKIN(45)=5.             !high mass cut on m2 in 2 to 2 process Registered by Chris.Seez@cern.ch', 
0039             'CKIN(46)=150.           !high mass cut on secondary resonance m1 in 2->1->2 process Registered by Alexandre.Nikitenko@cern.ch', 
0040             'CKIN(47)=5.             !low mass cut on secondary resonance m2 in 2->1->2 process Registered by Alexandre.Nikitenko@cern.ch', 
0041             'CKIN(48)=150.           !high mass cut on secondary resonance m2 in 2->1->2 process Registered by Alexandre.Nikitenko@cern.ch', 
0042             'MDME(174,1)=0           !Z decay into d dbar', 
0043             'MDME(175,1)=0           !Z decay into u ubar', 
0044             'MDME(176,1)=0           !Z decay into s sbar', 
0045             'MDME(177,1)=0           !Z decay into c cbar', 
0046             'MDME(178,1)=0           !Z decay into b bbar', 
0047             'MDME(179,1)=0           !Z decay into t tbar', 
0048             'MDME(182,1)=0           !Z decay into e- e+', 
0049             'MDME(183,1)=0           !Z decay into nu_e nu_ebar', 
0050             'MDME(184,1)=1           !Z decay into mu- mu+', 
0051             'MDME(185,1)=0           !Z decay into nu_mu nu_mubar', 
0052             'MDME(186,1)=0           !Z decay into tau- tau+', 
0053             'MDME(187,1)=0           !Z decay into nu_tau nu_taubar', 
0054             'MDME(210,1)=0           !Higgs decay into dd', 
0055             'MDME(211,1)=0           !Higgs decay into uu', 
0056             'MDME(212,1)=0           !Higgs decay into ss', 
0057             'MDME(213,1)=0           !Higgs decay into cc', 
0058             'MDME(214,1)=0           !Higgs decay into bb', 
0059             'MDME(215,1)=0           !Higgs decay into tt', 
0060             'MDME(216,1)=0           !Higgs decay into', 
0061             'MDME(217,1)=0           !Higgs decay into Higgs decay', 
0062             'MDME(218,1)=0           !Higgs decay into e nu e', 
0063             'MDME(219,1)=0           !Higgs decay into mu nu mu', 
0064             'MDME(220,1)=0           !Higgs decay into tau nu tau', 
0065             'MDME(221,1)=0           !Higgs decay into Higgs decay', 
0066             'MDME(222,1)=0           !Higgs decay into g g', 
0067             'MDME(223,1)=0           !Higgs decay into gam gam', 
0068             'MDME(224,1)=0           !Higgs decay into gam Z', 
0069             'MDME(225,1)=1           !Higgs decay into Z Z', 
0070             'MDME(226,1)=0           !Higgs decay into W W', 
0071             'MSTP(128)=2             !dec.prods out of doc section, point at parents in the main section'),
0072         parameterSets = cms.vstring('pythiaHZZmumumumu')
0073     )
0074 )