Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from Configuration.Generator.PythiaUESettings_cfi import *
0004 from GeneratorInterface.ExternalDecays.TauolaSettings_cff import *
0005 
0006 generator = cms.EDFilter("Pythia6GeneratorFilter",
0007     pythiaHepMCVerbosity = cms.untracked.bool(False),
0008     maxEventsToPrint = cms.untracked.int32(0),
0009     pythiaPylistVerbosity = cms.untracked.int32(0),
0010     filterEfficiency = cms.untracked.double(1.0),
0011     comEnergy = cms.double(10000.0),
0012     ExternalDecays = cms.PSet(
0013         Tauola = cms.untracked.PSet(
0014             TauolaPolar,
0015             TauolaDefaultInputCards
0016         ),
0017         parameterSets = cms.vstring('Tauola')
0018     ),
0019     PythiaParameters = cms.PSet(
0020         pythiaUESettingsBlock,
0021         processParameters = cms.vstring('PMAS(25,1)=200.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             'MSUB(102)=1             !ggH', 
0024             'MSUB(123)=1             !ZZ fusion to H', 
0025             'MSUB(124)=1             !WW fusion to H', 
0026             'CKIN(45)=5.             !high mass cut on m2 in 2 to 2 process Registered by Chris.Seez@cern.ch', 
0027             'CKIN(46)=150.           !high mass cut on secondary resonance m1 in 2->1->2 process Registered by Alexandre.Nikitenko@cern.ch', 
0028             'CKIN(47)=5.             !low mass cut on secondary resonance m2 in 2->1->2 process Registered by Alexandre.Nikitenko@cern.ch', 
0029             'CKIN(48)=150.           !high mass cut on secondary resonance m2 in 2->1->2 process Registered by Alexandre.Nikitenko@cern.ch', 
0030             'MDME(174,1)=0           !Z decay into d dbar', 
0031             'MDME(175,1)=0           !Z decay into u ubar', 
0032             'MDME(176,1)=0           !Z decay into s sbar', 
0033             'MDME(177,1)=0           !Z decay into c cbar', 
0034             'MDME(178,1)=0           !Z decay into b bbar', 
0035             'MDME(179,1)=0           !Z decay into t tbar', 
0036             'MDME(182,1)=1           !Z decay into e- e+', 
0037             'MDME(183,1)=0           !Z decay into nu_e nu_ebar', 
0038             'MDME(184,1)=1           !Z decay into mu- mu+', 
0039             'MDME(185,1)=0           !Z decay into nu_mu nu_mubar', 
0040             'MDME(186,1)=1           !Z decay into tau- tau+', 
0041             'MDME(187,1)=0           !Z decay into nu_tau nu_taubar', 
0042             'MDME(210,1)=0           !Higgs decay into dd', 
0043             'MDME(211,1)=0           !Higgs decay into uu', 
0044             'MDME(212,1)=0           !Higgs decay into ss', 
0045             'MDME(213,1)=0           !Higgs decay into cc', 
0046             'MDME(214,1)=0           !Higgs decay into bb', 
0047             'MDME(215,1)=0           !Higgs decay into tt', 
0048             'MDME(216,1)=0           !Higgs decay into', 
0049             'MDME(217,1)=0           !Higgs decay into Higgs decay', 
0050             'MDME(218,1)=0           !Higgs decay into e nu e', 
0051             'MDME(219,1)=0           !Higgs decay into mu nu mu', 
0052             'MDME(220,1)=0           !Higgs decay into tau nu tau', 
0053             'MDME(221,1)=0           !Higgs decay into Higgs decay', 
0054             'MDME(222,1)=0           !Higgs decay into g g', 
0055             'MDME(223,1)=0           !Higgs decay into gam gam', 
0056             'MDME(224,1)=0           !Higgs decay into gam Z', 
0057             'MDME(225,1)=1           !Higgs decay into Z Z', 
0058             'MDME(226,1)=0           !Higgs decay into W W'),
0059         # This is a vector of ParameterSet names to be read, in this order
0060         parameterSets = cms.vstring('pythiaUESettings', 
0061             'processParameters')
0062     )
0063 )