CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
mixCosmics_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 # this is a minimum configuration of the Mixing module,
4 # to run it in the zero-pileup mode
5 #
6 from SimGeneral.MixingModule.mixObjects_cfi import theMixObjects
9 
10 mix = cms.EDProducer("MixingModule",
11  digitizers = cms.PSet(theDigitizers),
12  LabelPlayback = cms.string(''),
13  maxBunch = cms.int32(3),
14  minBunch = cms.int32(-5), ## in terms of 25 ns
15 
16  bunchspace = cms.int32(25),
17  mixProdStep1 = cms.bool(False),
18  mixProdStep2 = cms.bool(False),
19 
20  playback = cms.untracked.bool(False),
21  useCurrentProcessOnly = cms.bool(False),
22  mixObjects = cms.PSet(theMixObjects)
23 )
24 
25 
26