CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MinBiasEvents_cfi.py
Go to the documentation of this file.
2 
3 source = cms.Source("EmptySource")
4 
6 generator = cms.EDFilter("Pythia6GeneratorFilter",
7  comEnergy = cms.double(14000),
8  pythiaHepMCVerbosity = cms.untracked.bool(False),
9  maxEventsToPrint = cms.untracked.int32(0),
10  pythiaPylistVerbosity = cms.untracked.int32(0),
11  PythiaParameters = cms.PSet(
12  # Default (mostly empty - to keep PYTHIA default) card file
13  # Name of the set is "pythiaDefault"
14  pythiaDefaultBlock,
15  # User cards - name is "myParameters"
16  # Pythia's random generator initialization
17  myParameters = cms.vstring(),
18  # This is a vector of ParameterSet names to be read, in this order
19  # The first two are in the include files below
20  # The last one are simply my additional parameters
21  parameterSets = cms.vstring('pythiaDefault',
22  'pythiaMinBias',
23  'myParameters'),
24  pythiaMinBias = cms.vstring('MSEL=0 ! User defined processes',
25  'MSUB(11)=1 ! Min bias process',
26  'MSUB(12)=1 ! Min bias process',
27  'MSUB(13)=1 ! Min bias process',
28  'MSUB(28)=1 ! Min bias process',
29  'MSUB(53)=1 ! Min bias process',
30  'MSUB(68)=1 ! Min bias process',
31  'MSUB(92)=1 ! Min bias process, single diffractive',
32  'MSUB(93)=1 ! Min bias process, single diffractive',
33  'MSUB(94)=1 ! Min bias process, double diffractive',
34  'MSUB(95)=1 ! Min bias process',
35  'MSTJ(11)=3 ! Choice of the fragmentation function',
36  'MSTJ(22)=2 ! Decay those unstable particles',
37  'PARJ(71)=10 . ! for which ctau 10 mm',
38  'MSTP(2)=1 ! which order running alphaS',
39  'MSTP(33)=0 ! no K factors in hard cross sections',
40  'MSTP(51)=7 ! structure function chosen',
41  'MSTP(81)=1 ! multiple parton interactions 1 is Pythia default',
42  'MSTP(82)=4 ! Defines the multi-parton model',
43  'MSTU(21)=1 ! Check on possible errors during program execution',
44  'PARP(82)=1.9409 ! pt cutoff for multiparton interactions',
45  'PARP(89)=1960. ! sqrts for which PARP82 is set',
46  'PARP(83)=0.5 ! Multiple interactions: matter distrbn parameter',
47  'PARP(84)=0.4 ! Multiple interactions: matter distribution parameter',
48  'PARP(90)=0.16 ! Multiple interactions: rescaling power',
49  'PARP(67)=2.5 ! amount of initial-state radiation',
50  'PARP(85)=1.0 ! gluon prod. mechanism in MI',
51  'PARP(86)=1.0 ! gluon prod. mechanism in MI',
52  'PARP(62)=1.25 ! ',
53  'PARP(64)=0.2 ! ',
54  'MSTP(91)=1 !',
55  'PARP(91)=2.1 ! kt distribution',
56  'PARP(93)=15.0 ! ')
57  )
58 )
59 
60 ProductionFilterSequence = cms.Sequence(generator)