CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
WpM_13TeV_cfi.py
Go to the documentation of this file.
1 ## Wprime to muon, Z2* tune, 50x production in winter 2012
2 
3 
4 import FWCore.ParameterSet.Config as cms
5 
6 source = cms.Source("EmptySource")
7 
9 generator = cms.EDFilter("Pythia6GeneratorFilter",
10  pythiaHepMCVerbosity = cms.untracked.bool(False),
11  maxEventsToPrint = cms.untracked.int32(0),
12  pythiaPylistVerbosity = cms.untracked.int32(1),
13  filterEfficiency = cms.untracked.double(1.),
14  crossSection = cms.untracked.double(0.02123),
15  comEnergy = cms.double(13000.0),
16  PythiaParameters = cms.PSet(
17  pythiaUESettingsBlock,
18  processParameters = cms.vstring('MSEL = 0 !User defined processes',
19  'MSUB(142) = 1 !Wprime production',
20  'PMAS(34,1) = 2000.!mass of Wprime',
21  'MDME(311,1) = 0 !W\' decay into dbar u',
22  'MDME(312,1) = 0 !W\' decay into dbar c',
23  'MDME(313,1) = 0 !W\' decay into dbar t',
24  'MDME(315,1) = 0 !W\' decay into sbar u',
25  'MDME(316,1) = 0 !W\' decay into sbar c',
26  'MDME(317,1) = 0 !W\' decay into sbar t',
27  'MDME(319,1) = 0 !W\' decay into bbar u',
28  'MDME(320,1) = 0 !W\' decay into bbar c',
29  'MDME(321,1) = 0 !W\' decay into bbar t',
30  'MDME(327,1) = 0 !W\' decay into e+ nu_e',
31  'MDME(328,1) = 1 !W\' decay into mu+ nu_mu',
32  'MDME(329,1) = 0 !W\' decay into tau+ nu_tau'),
33  # This is a vector of ParameterSet names to be read, in this order
34  parameterSets = cms.vstring('pythiaUESettings',
35  'processParameters')
36  )
37 )
38 
39 
40 
41 
42 ProductionFilterSequence = cms.Sequence(generator)