CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
mixInitialLumPU_cfi.py
Go to the documentation of this file.
1 # The following comments couldn't be translated into the new config version:
2 
3 # E33 cm-2s-1
4 # mb
5 import FWCore.ParameterSet.Config as cms
6 
7 # configuration to model pileup for initial physics phase
8 from SimGeneral.MixingModule.mixObjects_cfi import theMixObjects
11 
12 mix = cms.EDProducer("MixingModule",
13  digitizers = cms.PSet(theDigitizers),
14  LabelPlayback = cms.string(''),
15  maxBunch = cms.int32(3),
16  minBunch = cms.int32(-5), ## in terms of 25 nsec
17 
18  bunchspace = cms.int32(75), ##ns
19  mixProdStep1 = cms.bool(False),
20  mixProdStep2 = cms.bool(False),
21 
22  playback = cms.untracked.bool(False),
23  useCurrentProcessOnly = cms.bool(False),
24 
25  input = cms.SecSource("EmbeddedRootSource",
26  nbPileupEvents = cms.PSet(
27  sigmaInel = cms.double(80.0),
28  Lumi = cms.double(0.5)
29  ),
30  type = cms.string('poisson'),
31  sequential = cms.untracked.bool(False),
32  fileNames = FileNames
33  ),
34  mixObjects = cms.PSet(theMixObjects)
35 )
36 
37