CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
mix_E14TeV_L10E33_BX2808_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # this is the configuration to model pileup for final scheme
4 from SimGeneral.MixingModule.mixObjects_cfi import theMixObjects
7 
8 mix = cms.EDProducer("MixingModule",
9  digitizers = cms.PSet(theDigitizers),
10  LabelPlayback = cms.string(''),
11  maxBunch = cms.int32(3),
12  minBunch = cms.int32(-5), ## in terms of 25 ns
13 
14  bunchspace = cms.int32(25), ## ns
15  mixProdStep1 = cms.bool(False),
16  mixProdStep2 = cms.bool(False),
17 
18  playback = cms.untracked.bool(False),
19  useCurrentProcessOnly = cms.bool(False),
20 
21  input = cms.SecSource("EmbeddedRootSource",
22  nbPileupEvents = cms.PSet(
23  sigmaInel = cms.double(80.0), #The Xsec is in mb
24  Lumi = cms.double(10.0) # The lumi is in E33 cm-2s-1
25  ),
26  type = cms.string('poisson'),
27  sequential = cms.untracked.bool(False),
28  fileNames = FileNames
29  ),
30  mixObjects = cms.PSet(theMixObjects)
31 )
32 
33